Skip to content

Commit 2bedf55

Browse files
committed
Fix typo
1 parent d7506ef commit 2bedf55

14 files changed

+14
-14
lines changed

osm-seed/templates/db/db-backup-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
ttlSecondsAfterFinished: 300
2020
template:
2121
spec:
22-
{{- if $job.serviceAccount.enable }}
22+
{{- if $job.serviceAccount.enabled }}
2323
serviceAccountName: {{ $job.serviceAccount.name }}
2424
{{- end }}
2525
containers:

osm-seed/templates/jobs/changeset-replication-job-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
labels:
1919
app: {{ template "osm-seed.name" . }}
2020
spec:
21-
{{- if .Values.changesetReplicationJob.serviceAccount.enable }}
21+
{{- if .Values.changesetReplicationJob.serviceAccount.enabled }}
2222
serviceAccountName: {{ .Values.changesetReplicationJob.serviceAccount.name }}
2323
{{- end }}
2424
containers:

osm-seed/templates/jobs/full-history-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
ttlSecondsAfterFinished: 300
2020
template:
2121
spec:
22-
{{- if .Values.fullHistory.serviceAccount.enable }}
22+
{{- if .Values.fullHistory.serviceAccount.enabled }}
2323
serviceAccountName: {{ .Values.fullHistory.serviceAccount.name }}
2424
{{- end }}
2525
containers:

osm-seed/templates/jobs/osm-simple-metrics-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
ttlSecondsAfterFinished: 300
2020
template:
2121
spec:
22-
{{- if .Values.osmSimpleMetrics.serviceAccount.enable }}
22+
{{- if .Values.osmSimpleMetrics.serviceAccount.enabled }}
2323
serviceAccountName: {{ .Values.osmSimpleMetrics.serviceAccount.name }}
2424
{{- end }}
2525
containers:

osm-seed/templates/jobs/planet-dump-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
ttlSecondsAfterFinished: 300
2020
template:
2121
spec:
22-
{{- if .Values.planetDump.serviceAccount.enable }}
22+
{{- if .Values.planetDump.serviceAccount.enabled }}
2323
serviceAccountName: {{ .Values.planetDump.serviceAccount.name }}
2424
{{- end }}
2525
containers:

osm-seed/templates/jobs/populate-apidb-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
spec:
1212
template:
1313
spec:
14-
{{- if .Values.populateApidb.serviceAccount.enable }}
14+
{{- if .Values.populateApidb.serviceAccount.enabled }}
1515
serviceAccountName: {{ .Values.populateApidb.serviceAccount.name }}
1616
{{- end }}
1717
containers:

osm-seed/templates/jobs/replication-job-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
labels:
1919
app: {{ template "osm-seed.name" . }}
2020
spec:
21-
{{- if .Values.replicationJob.serviceAccount.enable }}
21+
{{- if .Values.replicationJob.serviceAccount.enabled }}
2222
serviceAccountName: {{ .Values.replicationJob.serviceAccount.name }}
2323
{{- end }}
2424
priorityClassName: {{ .Release.Name }}-{{ .Values.replicationJob.priorityClass | default "high-priority" }}

osm-seed/templates/jobs/replication-monitoring-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
ttlSecondsAfterFinished: 60
2020
template:
2121
spec:
22-
{{- if .Values.monitoringReplication.serviceAccount.enable }}
22+
{{- if .Values.monitoringReplication.serviceAccount.enabled }}
2323
serviceAccountName: {{ .Values.monitoringReplication.serviceAccount.name }}
2424
{{- end }}
2525
containers:

osm-seed/templates/taginfo/taginfo-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spec:
2222
release: {{ .Release.Name }}
2323
run: {{ .Release.Name }}-taginfo-web
2424
spec:
25-
{{- if .Values.taginfo.serviceAccount.enable }}
25+
{{- if .Values.taginfo.serviceAccount.enabled }}
2626
serviceAccountName: {{ .Values.taginfo.serviceAccount.name }}
2727
{{- end }}
2828
priorityClassName: {{ .Release.Name }}-{{ .Values.taginfo.priorityClass | default "medium-priority" }}

osm-seed/templates/tiler-imposm/tiler-imposm-statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
labels:
2020
app: {{ .Release.Name }}-tiler-imposm-sts
2121
spec:
22-
{{- if .Values.tilerImposm.serviceAccount.enable }}
22+
{{- if .Values.tilerImposm.serviceAccount.enabled }}
2323
serviceAccountName: {{ .Values.tilerImposm.serviceAccount.name }}
2424
{{- end }}
2525
priorityClassName: {{ .Release.Name }}-{{ .Values.tilerImposm.priorityClass | default "medium-priority" }}

0 commit comments

Comments
 (0)