Skip to content

Commit

Permalink
Add annotation to exclude the webhook port from Istio proxying (#728)
Browse files Browse the repository at this point in the history
* Add annotation to exclude the webhook port from Istio proxying

* use branch pulsar-operator-0.17.10 for repo streamnative/charts
  • Loading branch information
jiangpengcheng authored Mar 8, 2024
1 parent 5e4a2c4 commit d1dd41c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .ci/helm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function ci::install_pulsar_charts() {
if [ -d "pulsar-charts" ]; then
rm -rf pulsar-charts
fi
git clone https://github.com/streamnative/charts.git pulsar-charts
git clone --branch pulsar-operator-0.17.10 https://github.com/streamnative/charts.git pulsar-charts
cp ${values} pulsar-charts/charts/pulsar/mini_values.yaml
cd pulsar-charts
./scripts/pulsar/prepare_helm_release.sh -n default -k sn-platform -c
Expand Down
2 changes: 1 addition & 1 deletion .ci/tests/integration-oauth2/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ setup:
command: |
helm repo add streamnative https://charts.streamnative.io
rm -rf pulsar-charts/
git clone https://github.com/streamnative/charts.git pulsar-charts
git clone --branch pulsar-operator-0.17.10 https://github.com/streamnative/charts.git pulsar-charts
cd pulsar-charts/
./scripts/pulsar/prepare_helm_release.sh -n default -k ${PULSAR_RELEASE_NAME} -c
helm repo add grafana https://grafana.github.io/helm-charts
Expand Down
2 changes: 1 addition & 1 deletion .ci/tests/integration-oauth2/e2e_with_downloader.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ setup:
command: |
helm repo add streamnative https://charts.streamnative.io
rm -rf pulsar-charts/
git clone https://github.com/streamnative/charts.git pulsar-charts
git clone --branch pulsar-operator-0.17.10 https://github.com/streamnative/charts.git pulsar-charts
cd pulsar-charts/
./scripts/pulsar/prepare_helm_release.sh -n default -k ${PULSAR_RELEASE_NAME} -c
helm repo add grafana https://grafana.github.io/helm-charts
Expand Down
2 changes: 1 addition & 1 deletion .ci/tests/integration/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ setup:
command: |
helm repo add streamnative https://charts.streamnative.io
rm -rf pulsar-charts/
git clone https://github.com/streamnative/charts.git pulsar-charts
git clone --branch pulsar-operator-0.17.10 https://github.com/streamnative/charts.git pulsar-charts
cd pulsar-charts/
./scripts/pulsar/prepare_helm_release.sh -n default -k ${PULSAR_RELEASE_NAME} -c
helm repo add grafana https://grafana.github.io/helm-charts
Expand Down
2 changes: 1 addition & 1 deletion .ci/tests/integration/e2e_with_tls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ setup:
command: |
helm repo add streamnative https://charts.streamnative.io
rm -rf pulsar-charts/
git clone https://github.com/streamnative/charts.git pulsar-charts
git clone --branch pulsar-operator-0.17.10 https://github.com/streamnative/charts.git pulsar-charts
cd pulsar-charts/
./scripts/pulsar/prepare_helm_release.sh -n default -k ${PULSAR_RELEASE_NAME} -c
helm repo add grafana https://grafana.github.io/helm-charts
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ spec:
prometheus.io/scrape: "true"
prometheus.io/path: "/metrics"
prometheus.io/port: "{{ .Values.controllerManager.metrics.port }}"
traffic.sidecar.istio.io/excludeInboundPorts: '9443'
spec:
{{- if .Values.controllerManager.serviceAccount }}
serviceAccount: {{ .Values.controllerManager.serviceAccount }}
Expand Down

0 comments on commit d1dd41c

Please sign in to comment.