Skip to content

Commit a88014f

Browse files
authored
fixed typos (#33)
Signed-off-by: Dmitry Shmulevich <dshmulevich@nvidia.com>
1 parent b9bcb09 commit a88014f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

operator/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ WORKDIR /go/src/github.com/NVIDIA/grove/operator
66
COPY . .
77

88
# Reference: https://docs.docker.com/reference/dockerfile/#automatic-platform-args-in-the-global-scope
9-
# Docker auomatically defines global scope build arguments.
9+
# Docker automatically defines global scope build arguments.
1010
ARG TARGETOS
1111
ARG TARGETARCH
1212

operator/charts/templates/_helpers.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ release: "{{ .Release.Name }}"
116116

117117
{{- define "operator.server.secret.labels" -}}
118118
{{- include "common.chart.labels" . }}
119-
{{- range $key, $val := .Values.webhookSeverSecret.labels }}
119+
{{- range $key, $val := .Values.webhookServerSecret.labels }}
120120
{{ $key }}: {{ $val }}
121121
{{- end }}
122122
{{- end -}}

operator/charts/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,6 @@ spec:
7777
{{- if .Values.webhooks.podgangsetValidationWebhook.isEnabled }}
7878
- name: grove-webhook-server-cert
7979
secret:
80-
secretName: {{ required ".Values.webhookSeverSecret.name is required" .Values.webhookSeverSecret.name }}
80+
secretName: {{ required ".Values.webhookServerSecret.name is required" .Values.webhookServerSecret.name }}
8181
defaultMode: 420
8282
{{- end }}

operator/charts/templates/webhook-server-cert-secret.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
apiVersion: v1
33
kind: Secret
44
metadata:
5-
name: {{ required ".Values.webhookSeverSecret.name is required" .Values.webhookSeverSecret.name }}
5+
name: {{ required ".Values.webhookServerSecret.name is required" .Values.webhookServerSecret.name }}
66
namespace: {{ .Release.Namespace }}
77
labels:
88
{{- include "operator.server.secret.labels" . | nindent 4 }}

operator/charts/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ webhooks:
109109
app.kubernetes.io/name: pgs-defaulting-webhook
110110
app.kubernetes.io/part-of: grove
111111

112-
webhookSeverSecret:
112+
webhookServerSecret:
113113
name: grove-webhook-server-cert
114114
labels:
115115
app.kubernetes.io/component: operator-webhook-server-secret

0 commit comments

Comments
 (0)