This is an automated email from the ASF dual-hosted git repository.

sijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-helm-chart.git

commit b5a7f0a2ac998abe1fec5a132553bf05d47fcc62
Author: Chris Bartholomew <c_bartholo...@yahoo.com>
AuthorDate: Tue Oct 15 13:41:53 2019 -0400

    Fixing pod anti-affinity rules in Kubernetes files including the Helm chart 
(#5381)
---
 pulsar/templates/autorecovery-deployment.yaml | 2 +-
 pulsar/templates/bookkeeper-statefulset.yaml  | 2 +-
 pulsar/templates/broker-deployment.yaml       | 2 +-
 pulsar/templates/proxy-deployment.yaml        | 2 +-
 pulsar/templates/zookeeper-statefulset.yaml   | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/pulsar/templates/autorecovery-deployment.yaml 
b/pulsar/templates/autorecovery-deployment.yaml
index f5b2f16..0872693 100644
--- a/pulsar/templates/autorecovery-deployment.yaml
+++ b/pulsar/templates/autorecovery-deployment.yaml
@@ -63,7 +63,7 @@ spec:
               - key: "app"
                 operator: In
                 values:
-                - "{{ template "pulsar.name" . }}-{{ 
.Values.bookkeeper.component }}"
+                - "{{ template "pulsar.name" . }}"
               - key: "release"
                 operator: In
                 values:
diff --git a/pulsar/templates/bookkeeper-statefulset.yaml 
b/pulsar/templates/bookkeeper-statefulset.yaml
index 5d6387a..b48c729 100644
--- a/pulsar/templates/bookkeeper-statefulset.yaml
+++ b/pulsar/templates/bookkeeper-statefulset.yaml
@@ -66,7 +66,7 @@ spec:
               - key: "app"
                 operator: In
                 values:
-                - "{{ template "pulsar.name" . }}-{{ 
.Values.bookkeeper.component }}"
+                - "{{ template "pulsar.name" . }}"
               - key: "release"
                 operator: In
                 values:
diff --git a/pulsar/templates/broker-deployment.yaml 
b/pulsar/templates/broker-deployment.yaml
index b4733df..fee0301 100644
--- a/pulsar/templates/broker-deployment.yaml
+++ b/pulsar/templates/broker-deployment.yaml
@@ -62,7 +62,7 @@ spec:
               - key: "app"
                 operator: In
                 values:
-                - "{{ template "pulsar.name" . }}-{{ .Values.broker.component 
}}"
+                - "{{ template "pulsar.name" . }}"
               - key: "release"
                 operator: In
                 values:
diff --git a/pulsar/templates/proxy-deployment.yaml 
b/pulsar/templates/proxy-deployment.yaml
index 5180985..94c5d76 100644
--- a/pulsar/templates/proxy-deployment.yaml
+++ b/pulsar/templates/proxy-deployment.yaml
@@ -63,7 +63,7 @@ spec:
               - key: "app"
                 operator: In
                 values:
-                - "{{ template "pulsar.name" . }}-{{ .Values.proxy.component 
}}"
+                - "{{ template "pulsar.name" . }}"
               - key: "release"
                 operator: In
                 values:
diff --git a/pulsar/templates/zookeeper-statefulset.yaml 
b/pulsar/templates/zookeeper-statefulset.yaml
index 31bb511..b92fed7 100644
--- a/pulsar/templates/zookeeper-statefulset.yaml
+++ b/pulsar/templates/zookeeper-statefulset.yaml
@@ -66,7 +66,7 @@ spec:
               - key: "app"
                 operator: In
                 values:
-                - "{{ template "pulsar.name" . }}-{{ 
.Values.zookeeper.component }}"
+                - "{{ template "pulsar.name" . }}"
               - key: "release"
                 operator: In
                 values:

Reply via email to