mirror of
https://github.com/jumpserver/helm-charts.git
synced 2025-08-20 07:53:48 +00:00
PVC is not created existingClaim it exists.
This commit is contained in:
parent
06fd24b836
commit
6f07b7a2ae
@ -1,4 +1,4 @@
|
||||
{{- if .Values.core.enabled }}
|
||||
{{- if and .Values.core.enabled (not .Values.core.persistence.existingClaim)}}
|
||||
{{- with .Values.core }}
|
||||
{{- $fullName := printf "%s-%s" (include "jumpserver.fullname" $) "jms-core-data" }}
|
||||
apiVersion: v1
|
||||
|
@ -1,4 +1,4 @@
|
||||
{{- if .Values.koko.enabled }}
|
||||
{{- if and .Values.koko.enabled (not .Values.koko.persistence.existingClaim)}}
|
||||
{{- with .Values.koko }}
|
||||
{{- $fullName := printf "%s-%s" (include "jumpserver.fullname" $) "jms-koko-data" }}
|
||||
apiVersion: v1
|
||||
|
@ -1,4 +1,4 @@
|
||||
{{- if .Values.lion.enabled }}
|
||||
{{- if and .Values.lion.enabled (not .Values.lion.persistence.existingClaim)}}
|
||||
{{- with .Values.lion }}
|
||||
{{- $fullName := printf "%s-%s" (include "jumpserver.fullname" $) "jms-lion-data" }}
|
||||
apiVersion: v1
|
||||
|
@ -1,4 +1,4 @@
|
||||
{{- if .Values.magnus.enabled }}
|
||||
{{- if and .Values.magnus.enabled (not .Values.magnus.persistence.existingClaim)}}
|
||||
{{- with .Values.magnus }}
|
||||
{{- $fullName := printf "%s-%s" (include "jumpserver.fullname" $) "jms-magnus-data" }}
|
||||
apiVersion: v1
|
||||
|
@ -1,4 +1,4 @@
|
||||
{{- if .Values.xpack.enabled }}
|
||||
{{- if and .Values.xpack.enabled (not .Values.omnidb.persistence.existingClaim)}}
|
||||
{{- with .Values.omnidb }}
|
||||
{{- $fullName := printf "%s-%s" (include "jumpserver.fullname" $) "jms-omnidb-data" }}
|
||||
apiVersion: v1
|
||||
|
@ -1,4 +1,4 @@
|
||||
{{- if .Values.xpack.enabled }}
|
||||
{{- if and .Values.xpack.enabled (not .Values.razor.persistence.existingClaim)}}
|
||||
{{- with .Values.razor }}
|
||||
{{- $fullName := printf "%s-%s" (include "jumpserver.fullname" $) "jms-razor-data" }}
|
||||
apiVersion: v1
|
||||
|
@ -1,4 +1,4 @@
|
||||
{{- if .Values.web.enabled }}
|
||||
{{- if and .Values.web.enabled (not .Values.web.persistence.existingClaim)}}
|
||||
{{- with .Values.web }}
|
||||
{{- $fullName := printf "%s-%s" (include "jumpserver.fullname" $) "jms-web-logs" }}
|
||||
apiVersion: v1
|
||||
|
Loading…
Reference in New Issue
Block a user