mirror of
https://github.com/kubeshark/kubeshark.git
synced 2026-02-14 10:00:08 +00:00
* Update labels * Update kubeshark API url * Update other domains * comments --------- Co-authored-by: Alon Girmonsky <1990761+alongir@users.noreply.github.com>
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
kind: Secret
|
|
apiVersion: v1
|
|
metadata:
|
|
name: {{ include "kubeshark.secretName" . }}
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
app.kubeshark.com/app: hub
|
|
{{- include "kubeshark.labels" . | nindent 4 }}
|
|
stringData:
|
|
LICENSE: '{{ .Values.license }}'
|
|
SCRIPTING_ENV: '{{ .Values.scripting.env | toJson }}'
|
|
OIDC_CLIENT_ID: '{{ default "not set" (((.Values.tap).auth).dexOidc).clientId }}'
|
|
OIDC_CLIENT_SECRET: '{{ default "not set" (((.Values.tap).auth).dexOidc).clientSecret }}'
|
|
|
|
---
|
|
|
|
kind: Secret
|
|
apiVersion: v1
|
|
metadata:
|
|
name: kubeshark-saml-x509-crt-secret
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
app.kubeshark.com/app: hub
|
|
{{- include "kubeshark.labels" . | nindent 4 }}
|
|
stringData:
|
|
AUTH_SAML_X509_CRT: |
|
|
{{ .Values.tap.auth.saml.x509crt | nindent 4 }}
|
|
|
|
---
|
|
|
|
kind: Secret
|
|
apiVersion: v1
|
|
metadata:
|
|
name: kubeshark-saml-x509-key-secret
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
app.kubeshark.com/app: hub
|
|
{{- include "kubeshark.labels" . | nindent 4 }}
|
|
stringData:
|
|
AUTH_SAML_X509_KEY: |
|
|
{{ .Values.tap.auth.saml.x509key | nindent 4 }}
|
|
|
|
---
|