Skip to content

Commit

Permalink
fix: Rename webhook container to manager (#932)
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.
  • Loading branch information
jimmidyson committed Oct 1, 2024
1 parent a039691 commit 327aead
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 327aead

Please sign in to comment.