Skip to content

Commit

Permalink
Make .Values.rabbitmq.auth.existingPasswordSecret required
Browse files Browse the repository at this point in the history
  • Loading branch information
artntek committed Jul 11, 2024
1 parent 64253d4 commit cc0fe39
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion helm/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ spec:
- name: RABBITMQ_PASSWORD
valueFrom:
secretKeyRef:
name: {{ .Values.rabbitmq.auth.existingPasswordSecret }}
name: {{ required "rabbitmq.auth.existingPasswordSecret IS REQUIRED" .Values.rabbitmq.auth.existingPasswordSecret }}
key: rabbitmq-password
optional: false
{{- if .Values.solr.auth.enabled }}
Expand Down
3 changes: 3 additions & 0 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,9 @@ solr:
extraVolumes:
- name: solr-config
configMap:
## @param solr.extraVolumes.configMap.name must be edited to include your release name!
## format: releasename-indexer-configfiles
##
name: d1index-indexer-configfiles
defaultMode: 0777
extraVolumeMounts:
Expand Down

0 comments on commit cc0fe39

Please sign in to comment.