Bump kubernetes-operator chart version to 0.1.10 (#2)

This commit is contained in:
M. Essam
2025-05-02 19:38:34 +02:00
committed by GitHub
parent d9532264d6
commit 7c947f66a6
3 changed files with 16 additions and 10 deletions
+1 -1
View File
@@ -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
+4 -2
View File
@@ -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"