Add service account name in connection pooler (#2352)

This commit is contained in:
Thinking Chen 2023-09-04 22:26:21 +08:00 committed by GitHub
parent eb0d55ea49
commit 781d17b85c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -406,6 +406,7 @@ func (c *Cluster) generateConnectionPoolerPodTemplate(role PostgresRole) (
Tolerations: tolerationsSpec,
Volumes: poolerVolumes,
SecurityContext: &securityContext,
ServiceAccountName: c.OpConfig.PodServiceAccountName,
},
}

View File

@ -1000,6 +1000,7 @@ func TestPoolerTLS(t *testing.T) {
ConnectionPoolerDefaultMemoryRequest: "100Mi",
ConnectionPoolerDefaultMemoryLimit: "100Mi",
},
PodServiceAccountName: "postgres-pod",
},
}, client, pg, logger, eventRecorder)
@ -1028,6 +1029,8 @@ func TestPoolerTLS(t *testing.T) {
fsGroup := int64(103)
assert.Equal(t, &fsGroup, deploy.Spec.Template.Spec.SecurityContext.FSGroup, "has a default FSGroup assigned")
assert.Equal(t, "postgres-pod", deploy.Spec.Template.Spec.ServiceAccountName, "need to add a service account name")
volume := v1.Volume{
Name: "my-secret",
VolumeSource: v1.VolumeSource{