Skip to content

Commit

Permalink
fixup! 🔧(helm) rework chart based on jenny helm chart
Browse files Browse the repository at this point in the history
  • Loading branch information
wilbrdt committed Jun 14, 2024
1 parent 0b62a99 commit 57c1684
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/helm/warren/charts/api/templates/configmap.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: "{{ template "api.fullname" . }}-logging-config"
name: "{{ include "api.fullname" . }}-logging-config"
labels:
{{- include "api.labels" . | nindent 4 }}
data:
Expand Down
2 changes: 1 addition & 1 deletion src/helm/warren/charts/api/templates/cronjobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ spec:
volumes:
- name: logging-config
configMap:
name: "warren-api-logging-config"
name: {{ include "api.fullname" $ }}-logging-config
restartPolicy: Never
{{- end }}
2 changes: 1 addition & 1 deletion src/helm/warren/charts/api/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ spec:
volumes:
- name: logging-config
configMap:
name: "warren-api-logging-config"
name: {{ include "api.fullname" . }}-logging-config
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
2 changes: 1 addition & 1 deletion src/helm/warren/charts/api/templates/jobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ spec:
volumes:
- name: logging-config
configMap:
name: "warren-api-logging-config"
name: {{ include "api.fullname" $ }}-logging-config
restartPolicy: Never
{{- end }}

0 comments on commit 57c1684

Please sign in to comment.