Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[multiple charts] Set default container to driver #409

Merged
merged 5 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions charts/csi-isilon/templates/controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,8 @@ spec:
maxUnavailable: 1
template:
metadata:
annotations:
kubectl.kubernetes.io/default-container: "driver"
labels:
app: {{ .Release.Name }}-controller
spec:
Expand Down
2 changes: 2 additions & 0 deletions charts/csi-isilon/templates/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ spec:
app: {{ .Release.Name }}-node
template:
metadata:
annotations:
kubectl.kubernetes.io/default-container: "driver"
labels:
app: {{ .Release.Name }}-node
{{- if .Values.podmon.enabled }}
Expand Down
2 changes: 2 additions & 0 deletions charts/csi-powermax/templates/controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,8 @@ spec:
name: {{ .Release.Name }}-controller
template:
metadata:
annotations:
kubectl.kubernetes.io/default-container: "driver"
labels:
name: {{ .Release.Name }}-controller
spec:
Expand Down
2 changes: 2 additions & 0 deletions charts/csi-powermax/templates/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ spec:
app: {{ .Release.Name }}-node
template:
metadata:
annotations:
kubectl.kubernetes.io/default-container: "driver"
labels:
app: {{ .Release.Name }}-node
spec:
Expand Down
2 changes: 2 additions & 0 deletions charts/csi-unity/templates/controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,8 @@ spec:
app: {{ .Release.Name }}-controller
template:
metadata:
annotations:
kubectl.kubernetes.io/default-container: "driver"
labels:
app: {{ .Release.Name }}-controller
spec:
Expand Down
2 changes: 2 additions & 0 deletions charts/csi-unity/templates/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ spec:
app: {{ .Release.Name }}-node
template:
metadata:
annotations:
kubectl.kubernetes.io/default-container: "driver"
labels:
app: {{ .Release.Name }}-node
{{- if .Values.podmon.enabled }}
Expand Down
Loading