feat(zusam,sheetable): add zusam,sheetable (#3337)
* feat(zusam): add zusam * update values * feat(sheetable): add sheetable * fix zusam and move to incubator * fix key ref * http ports * add some variables
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
{{/* Define the secrets */}}
|
||||
{{- define "sheetable.secrets" -}}
|
||||
---
|
||||
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
type: Opaque
|
||||
metadata:
|
||||
name: sheetable-secrets
|
||||
{{- $sheetableprevious := lookup "v1" "Secret" .Release.Namespace "sheetable-secrets" }}
|
||||
{{- $api_secret := "" }}
|
||||
data:
|
||||
{{- if $sheetableprevious}}
|
||||
API_SECRET: {{ index $sheetableprevious.data "API_SECRET" }}
|
||||
{{- else }}
|
||||
{{- $api_secret := randAlphaNum 32 }}
|
||||
API_SECRET: {{ $api_secret | b64enc }}
|
||||
{{- end }}
|
||||
|
||||
{{- end -}}
|
||||
@@ -0,0 +1,7 @@
|
||||
{{- include "tc.common.loader.init" . }}
|
||||
|
||||
{{/* Render secrets for sheetable */}}
|
||||
{{- include "sheetable.secrets" . }}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.common.loader.apply" . }}
|
||||
Reference in New Issue
Block a user