Skip to content

Commit

Permalink
add sidecar.istio.io/inject annotations for alluxio runtime (#2551)
Browse files Browse the repository at this point in the history
Signed-off-by: Wang Ni <[email protected]>
Co-authored-by: Wang Ni <[email protected]>
  • Loading branch information
uniqueni and Wang Ni committed Feb 2, 2023
1 parent b495a74 commit 7520dfd
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
4 changes: 4 additions & 0 deletions charts/alluxio/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,3 +246,7 @@
0.9.11

- Support ownerReferences for AlluxioRuntime resources

0.9.12

- Add `sidecar.istio.io/inject` to components annotation
4 changes: 3 additions & 1 deletion charts/alluxio/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
name: alluxio
apiVersion: v1
description: Open source data orchestration for analytics and machine learning in any cloud.
version: 0.9.11
version: 0.9.12
home: https://www.alluxio.io/
maintainers:
- name: Adit Madan
Expand All @@ -25,3 +25,5 @@ maintainers:
email: [email protected]
- name: Sichen Zhao
email: [email protected]
- name: Ni Wang
email: [email protected]
3 changes: 2 additions & 1 deletion charts/alluxio/templates/fuse/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ spec:
role: alluxio-fuse
template:
metadata:
{{- if .Values.fuse.annotations }}
annotations:
sidecar.istio.io/inject: "false"
{{- if .Values.fuse.annotations }}
{{- range $key, $val := .Values.fuse.annotations }}
{{ $key | quote }}: {{ $val | quote }}
{{- end }}
Expand Down
3 changes: 2 additions & 1 deletion charts/alluxio/templates/master/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@ spec:
replicas: {{ $masterCount }}
template:
metadata:
{{- if .Values.master.annotations }}
annotations:
sidecar.istio.io/inject: "false"
{{- if .Values.master.annotations }}
{{- range $key, $val := .Values.master.annotations }}
{{ $key | quote }}: {{ $val | quote }}
{{- end }}
Expand Down
3 changes: 2 additions & 1 deletion charts/alluxio/templates/worker/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,9 @@ spec:
podManagementPolicy: {{ .Values.worker.podManagementPolicy }}
template:
metadata:
{{- if .Values.worker.annotations }}
annotations:
sidecar.istio.io/inject: "false"
{{- if .Values.worker.annotations }}
{{- range $key, $val := .Values.worker.annotations }}
{{ $key | quote }}: {{ $val | quote }}
{{- end }}
Expand Down

0 comments on commit 7520dfd

Please sign in to comment.