Add labels

This commit is contained in:
Rafia Sabih 2020-10-05 12:10:02 +02:00
parent a6ffdbae36
commit d2c410d72b
1 changed files with 4 additions and 2 deletions

View File

@ -424,8 +424,10 @@ func (c *Cluster) connectionPoolerLabelsSelector(role PostgresRole) *metav1.Labe
connectionPoolerLabels := labels.Set(map[string]string{})
extraLabels := labels.Set(map[string]string{
"connection-pooler": c.connectionPoolerName(role),
"application": "db-connection-pooler",
"connection-pooler-name": c.connectionPoolerName(role),
"application": "db-connection-pooler",
"role": string(role),
"cluster-name": c.ClusterName,
})
connectionPoolerLabels = labels.Merge(connectionPoolerLabels, c.labelsSet(false))