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>
15 lines
337 B
YAML
15 lines
337 B
YAML
{{- if .Values.tap.auth.dexConfig }}
|
|
|
|
kind: Secret
|
|
apiVersion: v1
|
|
metadata:
|
|
name: kubeshark-dex-conf-secret
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
app.kubeshark.com/app: hub
|
|
{{- include "kubeshark.labels" . | nindent 4 }}
|
|
data:
|
|
dex-config.yaml: {{ .Values.tap.auth.dexConfig | toYaml | b64enc | quote }}
|
|
|
|
{{- end }}
|