mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-06-27 08:39:49 +00:00
🦺 Add fallback value for REACT_APP_CLOUD_LICENSE_ENABLED
env
This commit is contained in:
parent
32a098fabc
commit
779e79cefe
@ -56,7 +56,7 @@ spec:
|
|||||||
value: '{{- if or (and .Values.cloudLicenseEnabled (not (empty .Values.license))) (not .Values.internetConnectivity) -}}
|
value: '{{- if or (and .Values.cloudLicenseEnabled (not (empty .Values.license))) (not .Values.internetConnectivity) -}}
|
||||||
"false"
|
"false"
|
||||||
{{- else -}}
|
{{- else -}}
|
||||||
{{ .Values.cloudLicenseEnabled }}
|
{{ .Values.cloudLicenseEnabled | ternary "true" "false" }}
|
||||||
{{- end }}'
|
{{- end }}'
|
||||||
- name: REACT_APP_SUPPORT_CHAT_ENABLED
|
- name: REACT_APP_SUPPORT_CHAT_ENABLED
|
||||||
value: '{{ and .Values.supportChatEnabled .Values.internetConnectivity | ternary "true" "false" }}'
|
value: '{{ and .Values.supportChatEnabled .Values.internetConnectivity | ternary "true" "false" }}'
|
||||||
|
Loading…
Reference in New Issue
Block a user