Explicitly warn on account name mismatch
This commit is contained in:
parent
485ec4b8ea
commit
3d0ab40d64
|
|
@ -131,8 +131,10 @@ func (c *Controller) initPodServiceAccount() {
|
||||||
panic(fmt.Errorf("pod service account definiton in the operator config map defines another type of resource: %v", groupVersionKind.Kind))
|
panic(fmt.Errorf("pod service account definiton in the operator config map defines another type of resource: %v", groupVersionKind.Kind))
|
||||||
default:
|
default:
|
||||||
c.PodServiceAccount = obj.(*v1.ServiceAccount)
|
c.PodServiceAccount = obj.(*v1.ServiceAccount)
|
||||||
// ensure consistent naming of the account
|
if c.PodServiceAccount.Name != c.opConfig.PodServiceAccountName {
|
||||||
c.PodServiceAccount.Name = c.opConfig.PodServiceAccountName
|
c.logger.Warnf("in the operator config map, the pod service account name %v does not match the name %v given in the account definition; using the former for consistency", c.opConfig.PodServiceAccountName, c.PodServiceAccount.Name)
|
||||||
|
c.PodServiceAccount.Name = c.opConfig.PodServiceAccountName
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// actual service accounts are deployed at the time of Postgres/Spilo cluster creation
|
// actual service accounts are deployed at the time of Postgres/Spilo cluster creation
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue