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

[xray] Fix volumeMounts formatting for panoramic #1896

Merged
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion stable/xray/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ helm upgrade --install xray --set xray.joinKey=<YOUR_PREVIOUSLY_RETIREVED_JOIN_K
To apply the chart with recommended sizing configurations :
For small configurations :
```bash
helm upgrade --install xray jfrog/xray -f sizing/xray-sizing-small.yaml --namespace xray --create-namespace
helm upgrade --install xray jfrog/xray -f sizing/xray-small.yaml --namespace xray --create-namespace
```

## Uninstalling Xray
Expand Down
4 changes: 2 additions & 2 deletions stable/xray/templates/xray-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1038,8 +1038,8 @@ spec:
{{- tpl .Values.common.extraEnvVars . | nindent 8 }}
{{- end }}
volumeMounts:
- name: data-volume
mountPath: "{{ .Values.xray.persistence.mountPath }}"
- name: data-volume
mountPath: "{{ .Values.xray.persistence.mountPath }}"
{{- if or .Values.common.customVolumeMounts .Values.global.customVolumeMounts }}
{{ tpl (include "xray.customVolumeMounts" .) . | indent 8 }}
{{- end }}
Expand Down
Loading