Skip to content

Commit 1e4f364

Browse files
authored
Add PartitionID to inherited_labels (#553)
1 parent 2ebb60c commit 1e4f364

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/operatormanager/operatormanager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ func (m *OperatorManager) editConfigMap(cm *corev1.ConfigMap, namespace string,
410410
// set the reference to our custom pod environment secret
411411
cm.Data["pod_environment_secret"] = PodEnvSecretName
412412
// set the list of inherited labels that will be passed on to the pods
413-
s := []string{pg.TenantLabelName, pg.ProjectIDLabelName, pg.UIDLabelName, pg.NameLabelName}
413+
s := []string{pg.TenantLabelName, pg.ProjectIDLabelName, pg.UIDLabelName, pg.NameLabelName, pg.PartitionIDLabelName}
414414
// TODO maybe use a precompiled string here
415415
cm.Data["inherited_labels"] = strings.Join(s, ",")
416416

0 commit comments

Comments
 (0)