mirror of
https://github.com/netbirdio/helms.git
synced 2026-05-22 17:13:06 -07:00
Bump kubernetes-operator chart version to 0.1.10 (#2)
This commit is contained in:
@@ -2,5 +2,5 @@ apiVersion: v2
|
||||
name: kubernetes-operator
|
||||
description: NetBird Kubernetes Operator
|
||||
type: application
|
||||
version: 0.1.9
|
||||
version: 0.1.10
|
||||
appVersion: "0.1.3"
|
||||
|
||||
@@ -78,13 +78,17 @@ spec:
|
||||
successThreshold: {{ .Values.operator.livenessProbe.successThreshold }}
|
||||
timeoutSeconds: {{ .Values.operator.livenessProbe.timeoutSeconds }}
|
||||
{{- if or .Values.netbirdAPI.key .Values.netbirdAPI.keyFromSecret }}
|
||||
envFrom:
|
||||
- secretRef:
|
||||
{{- if .Values.netbirdAPI.keyFromSecret }}
|
||||
name: {{.Values.netbirdAPI.keyFromSecret}}
|
||||
{{- else }}
|
||||
name: {{ include "kubernetes-operator.fullname" . }}
|
||||
{{- end }}
|
||||
env:
|
||||
- name: NB_API_KEY
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
{{- if .Values.netbirdAPI.keyFromSecret }}
|
||||
name: {{ .Values.netbirdAPI.keyFromSecret.name }}
|
||||
key: {{ .Values.netbirdAPI.keyFromSecret.key }}
|
||||
{{- else }}
|
||||
name: {{ include "kubernetes-operator.fullname" . }}
|
||||
key: NB_API_KEY
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
readinessProbe:
|
||||
failureThreshold: 3
|
||||
|
||||
@@ -70,7 +70,7 @@ operator:
|
||||
name: ""
|
||||
|
||||
# This is for setting Kubernetes Annotations to a Pod.
|
||||
# For more information checkout: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
|
||||
# For more information checkout: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
|
||||
podAnnotations: {}
|
||||
# This is for setting Kubernetes Labels to a Pod.
|
||||
# For more information checkout: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
|
||||
@@ -190,4 +190,6 @@ cluster:
|
||||
netbirdAPI: {}
|
||||
# NetBird Service Account Token
|
||||
# key: "nbp_m0LM9ZZvDUzFO0pY50iChDOTxJgKFM3DIqmZ"
|
||||
# keyFromSecret: "Secret name with NB_API_KEY=Service Account Token"
|
||||
#keyFromSecret:
|
||||
# name: "Secret name"
|
||||
# key: "NB_API_KEY"
|
||||
Reference in New Issue
Block a user