Skip to content

Commit

Permalink
trow: fix invalid volumemounts
Browse files Browse the repository at this point in the history
  • Loading branch information
awoimbee committed May 24, 2023
1 parent 7d2baa3 commit 9bd58cb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/trow/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ name: trow
description: Helm chart for Trow registry

type: application
version: 0.4.2
version: 0.4.3
appVersion: 0.4.0
11 changes: 11 additions & 0 deletions charts/trow/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,17 @@ spec:
runAsUser: 333333
runAsGroup: 333333
fsGroup: 333333
volumes:
{{- if (not (empty .Values.trow.proxyConfig.config)) }}
- name: trow-proxy-cfg
secret:
secretName: {{ include "trow.fullname" . }}-proxy-cfg
{{- end }}
{{- if (not (empty .Values.trow.validation.config)) }}
- name: trow-validation-cfg
configMap:
name: {{ include "trow.fullname" . }}-validation-cfg
{{- end }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
2 changes: 0 additions & 2 deletions charts/trow/templates/webhooks/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@ spec:
- name: webhook
containerPort: 8443
volumeMounts:
- name: data-vol
mountPath: /data
- name: webhook-cert-translated
mountPath: /etc/trow/webhook-cert
readOnly: true
Expand Down

0 comments on commit 9bd58cb

Please sign in to comment.