Skip to content

Commit

Permalink
fix: [release/v0.14.x] Rename webhook container to manager (#933)
Browse files Browse the repository at this point in the history
The clusterctl logic to wait for providers to be ready depends on the
container name being manager (see

https://github.com/kubernetes-sigs/cluster-api/blob/main/cmd/clusterctl/internal/util/objs.go#L181)
otherwise it will not wait for the provider to be ready and hence
potentially
return too early for other client operations.

Backport of #932.
  • Loading branch information
jimmidyson authored Oct 2, 2024
1 parent 59b451f commit cb63955
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
serviceAccountName: {{ template "chart.name" . }}
terminationGracePeriodSeconds: 10
containers:
- name: webhook
- name: manager
image: "{{ .Values.image.repository }}:{{ default $.Chart.AppVersion .Values.image.tag }}"
imagePullPolicy: "{{ .Values.image.pullPolicy }}"
args:
Expand Down

0 comments on commit cb63955

Please sign in to comment.