Closed owais closed 1 month ago
The following spec will not add any labels to pods (bug)
apiVersion: "druid.apache.org/v1alpha1" kind: "Druid" metadata: name: tiny-cluster spec: nodes: brokers: podLabels: label_a: yes
But the following will add both label_a and label_b (as expected)
apiVersion: "druid.apache.org/v1alpha1" kind: "Druid" metadata: name: tiny-cluster spec: podLabels: label_a: yes nodes: brokers: podLabels: label_b: yes
thanks for taking this a notice.
The following spec will not add any labels to pods (bug)
But the following will add both label_a and label_b (as expected)