File tree 4 files changed +12
-3
lines changed
4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Deploy Kubernetes in Kubernetes using Helm
26
26
27
27
``` bash
28
28
helm repo add kvaps https://kvaps.github.io/charts
29
- helm install foo kvaps/kubernetes --version 0.13.4 \
29
+ helm install foo kvaps/kubernetes --version 0.13.5 \
30
30
--namespace foo \
31
31
--create-namespace \
32
32
--set persistence.storageClassName=local-path
Original file line number Diff line number Diff line change 1
1
name : kubernetes
2
2
description : Production-Grade Container Scheduling and Management
3
- version : 0.13.4
3
+ version : 0.13.5
4
4
appVersion : 1.22.4
5
5
icon : https://upload.wikimedia.org/wikipedia/commons/thumb/3/39/Kubernetes_logo_without_workmark.svg/723px-Kubernetes_logo_without_workmark.svg.png
6
6
keywords :
Original file line number Diff line number Diff line change 1
1
{{- $fullName := include "kubernetes.fullname" . -}}
2
+
3
+ {{- if .Values.konnectivityAgent.daemonSet -}}
4
+ apiVersion : apps/v1
5
+ kind : DaemonSet
6
+ {{- else -}}
2
7
apiVersion : apps/v1
3
8
kind : Deployment
9
+ {{- end }}
4
10
metadata :
5
11
labels :
6
12
addonmanager.kubernetes.io/mode : Reconcile
@@ -15,7 +21,9 @@ metadata:
15
21
namespace : kube-system
16
22
name : konnectivity-agent
17
23
spec :
24
+ {{- if not .Values.konnectivityAgent.daemonSet }}
18
25
replicas : {{ .Values.konnectivityAgent.replicaCount }}
26
+ {{- end }}
19
27
selector :
20
28
matchLabels :
21
29
k8s-app : konnectivity-agent
Original file line number Diff line number Diff line change @@ -237,7 +237,7 @@ admin:
237
237
enabled : true
238
238
image :
239
239
repository : ghcr.io/kvaps/kubernetes-tools
240
- tag : v0.13.4
240
+ tag : v0.13.5
241
241
pullPolicy : IfNotPresent
242
242
pullSecrets : []
243
243
replicaCount : 1
@@ -350,6 +350,7 @@ konnectivityAgent:
350
350
tag : v0.0.24
351
351
pullPolicy : IfNotPresent
352
352
pullSecrets : []
353
+ daemonSet : false
353
354
replicaCount : 2
354
355
hostNetwork : true
355
356
You can’t perform that action at this time.
0 commit comments