Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix condition bug introduced in #29 & add introduced parameter to values.yaml #32

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix condition bug introduced in #29
Add introduced parameter to values.yaml
philband committed Feb 7, 2023
commit 0f43e4ccffbadd954a77a67f69952e3886dd3707
4 changes: 2 additions & 2 deletions templates/mq.yaml
Original file line number Diff line number Diff line change
@@ -85,9 +85,9 @@ spec:
name: wait-script
- name: shared-data
persistentVolumeClaim:
{{- if not .Values.mq.existingClaim }}
{{- if .Values.mq.existingClaim }}
claimName: {{ .Values.mq.existingClaim }}
{{- else }}
{{- else }}
claimName: {{ include "netmaker.fullname" . }}-shared-data-pvc
{{- end }}
---
2 changes: 2 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
@@ -44,6 +44,8 @@ mq:
singlenode: false
storageSize: 128Mi
password: 3yyerWGdds43yegGR
# -- existing claim for shared-data PVC
# existingClaim: ""
RWX:
storageClassName: ""