File tree Expand file tree Collapse file tree 5 files changed +11
-9
lines changed Expand file tree Collapse file tree 5 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Deploy Kubernetes in Kubernetes using Helm
2626
2727``` bash
2828helm repo add kvaps https://kvaps.github.io/charts
29- helm install foo kvaps/kubernetes --version 0.13.0 \
29+ helm install foo kvaps/kubernetes --version 0.13.1 \
3030 --namespace foo \
3131 --create-namespace \
3232 --set persistence.storageClassName=local-path
Original file line number Diff line number Diff line change 11FROM docker.io/library/alpine:3.12
22
33RUN apk add --no-cache openssl
4- ARG VERSION=v1.22.0
4+ ARG VERSION=v1.22.2
55RUN wget "https://storage.googleapis.com/kubernetes-release/release/${VERSION}/bin/linux/amd64/kubectl" \
66 -O /usr/local/bin/kubectl \
77 && chmod +x /usr/local/bin/kubectl
Original file line number Diff line number Diff line change 11name : kubernetes
22description : Production-Grade Container Scheduling and Management
3- version : 0.13.0
4- appVersion : 1.22.0
3+ version : 0.13.1
4+ appVersion : 1.22.2
55icon : https://upload.wikimedia.org/wikipedia/commons/thumb/3/39/Kubernetes_logo_without_workmark.svg/723px-Kubernetes_logo_without_workmark.svg.png
66keywords :
77 - kubernetes
Original file line number Diff line number Diff line change 1717 {{- with .Values.networking }}
1818 networking:
1919 dnsDomain: {{ .dnsDomain }}
20- podSubnet: {{ .podSubnet }}
20+ {{- with .podSubnet }}
21+ podSubnet: {{ . }}
22+ {{- end }}
2123 serviceSubnet: {{ .serviceSubnet }}
2224 {{- end }}
2325{{- end }}
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ apiServer:
108108 enabled : true
109109 image :
110110 repository : k8s.gcr.io/kube-apiserver
111- tag : v1.22.0
111+ tag : v1.22.2
112112 pullPolicy : IfNotPresent
113113 pullSecrets : []
114114 replicaCount : 2
@@ -157,7 +157,7 @@ controllerManager:
157157 enabled : true
158158 image :
159159 repository : k8s.gcr.io/kube-controller-manager
160- tag : v1.22.0
160+ tag : v1.22.2
161161 pullPolicy : IfNotPresent
162162 pullSecrets : []
163163 replicaCount : 2
@@ -197,7 +197,7 @@ scheduler:
197197 enabled : true
198198 image :
199199 repository : k8s.gcr.io/kube-scheduler
200- tag : v1.22.0
200+ tag : v1.22.2
201201 pullPolicy : IfNotPresent
202202 pullSecrets : []
203203 replicaCount : 2
@@ -237,7 +237,7 @@ admin:
237237 enabled : true
238238 image :
239239 repository : ghcr.io/kvaps/kubernetes-tools
240- tag : v0.13.0
240+ tag : v0.13.1
241241 pullPolicy : IfNotPresent
242242 pullSecrets : []
243243 replicaCount : 1
You can’t perform that action at this time.
0 commit comments