Skip to content

Commit a6672c3

Browse files
committed
bump versions
1 parent 3285e86 commit a6672c3

13 files changed

+35
-13
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Deploy Kubernetes in Kubernetes using Helm
2626

2727
```bash
2828
helm repo add kvaps https://kvaps.github.io/charts
29-
helm install foo kvaps/kubernetes --version 0.12.0 \
29+
helm install foo kvaps/kubernetes --version 0.13.0 \
3030
--namespace foo \
3131
--create-namespace \
3232
--set persistence.storageClassName=local-path

build/tools/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM docker.io/library/alpine:3.12
22

33
RUN apk add --no-cache openssl
4-
ARG VERSION=v1.21.3
4+
ARG VERSION=v1.22.0
55
RUN 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

deploy/helm/kubernetes/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: kubernetes
22
description: Production-Grade Container Scheduling and Management
3-
version: 0.12.0
4-
appVersion: 1.21.3
3+
version: 0.13.0
4+
appVersion: 1.22.0
55
icon: https://upload.wikimedia.org/wikipedia/commons/thumb/3/39/Kubernetes_logo_without_workmark.svg/723px-Kubernetes_logo_without_workmark.svg.png
66
keywords:
77
- kubernetes

deploy/helm/kubernetes/manifests/konnectivity-agent-deployment.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ spec:
4040
{{- toYaml . | nindent 8 }}
4141
{{- end }}
4242
hostNetwork: {{ .Values.konnectivityAgent.hostNetwork }}
43+
securityContext:
44+
seccompProfile:
45+
type: RuntimeDefault
4346
priorityClassName: system-cluster-critical
4447
tolerations:
4548
- key: "CriticalAddonsOnly"

deploy/helm/kubernetes/scripts/configure-cluster.sh

-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ export KUBECONFIG=/etc/kubernetes/admin.conf
2121
# upload configuration
2222
# TODO: https://github.com/kvaps/kubernetes-in-kubernetes/issues/6
2323
kubeadm init phase upload-config kubeadm --config /config/kubeadmcfg.yaml
24-
kubectl patch configmap -n kube-system kubeadm-config \
25-
-p '{"data":{"ClusterStatus":"apiEndpoints: {}\napiVersion: kubeadm.k8s.io/v1beta2\nkind: ClusterStatus"}}'
2624

2725
# upload configuration
2826
# TODO: https://github.com/kvaps/kubernetes-in-kubernetes/issues/5

deploy/helm/kubernetes/templates/admin-deployment.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,9 @@ spec:
113113
{{- with .Values.admin.sidecars }}
114114
{{- toYaml . | nindent 6 }}
115115
{{- end }}
116+
securityContext:
117+
seccompProfile:
118+
type: RuntimeDefault
116119
volumes:
117120
- configMap:
118121
name: "{{ $fullName }}-admin-conf"

deploy/helm/kubernetes/templates/apiserver-deployment.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,9 @@ spec:
164164
{{- with .Values.apiServer.sidecars }}
165165
{{- toYaml . | nindent 6 }}
166166
{{- end }}
167+
securityContext:
168+
seccompProfile:
169+
type: RuntimeDefault
167170
volumes:
168171
- configMap:
169172
name: "{{ $fullName }}-apiserver-config"

deploy/helm/kubernetes/templates/controller-manager-deployment.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,9 @@ spec:
129129
{{- with .Values.controllerManager.sidecars }}
130130
{{- toYaml . | nindent 6 }}
131131
{{- end }}
132+
securityContext:
133+
seccompProfile:
134+
type: RuntimeDefault
132135
volumes:
133136
- configMap:
134137
name: "{{ $fullName }}-controller-manager-conf"

deploy/helm/kubernetes/templates/etcd-backup-cronjob.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,9 @@ spec:
127127
{{- with .Values.etcd.backup.sidecars }}
128128
{{- toYaml . | nindent 10 }}
129129
{{- end }}
130+
securityContext:
131+
seccompProfile:
132+
type: RuntimeDefault
130133
volumes:
131134
- secret:
132135
secretName: {{ $fullName }}-pki-etcd-ca

deploy/helm/kubernetes/templates/etcd-statefulset.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,9 @@ spec:
150150
{{- with .Values.etcd.sidecars }}
151151
{{- toYaml . | nindent 6 }}
152152
{{- end }}
153+
securityContext:
154+
seccompProfile:
155+
type: RuntimeDefault
153156
volumes:
154157
- secret:
155158
secretName: {{ $fullName }}-pki-etcd-ca

deploy/helm/kubernetes/templates/konnectivity-server-deployment.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,8 @@ spec:
7272
{{- with .Values.konnectivityServer.sidecars }}
7373
{{- toYaml . | nindent 6 }}
7474
{{- end }}
75+
securityContext:
76+
seccompProfile:
77+
type: RuntimeDefault
7578
{{ template "kubernetes.konnectivityServer.volumes" . }}
7679
{{- end }}

deploy/helm/kubernetes/templates/scheduler-deployment.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ spec:
114114
{{- with .Values.scheduler.sidecars }}
115115
{{- toYaml . | nindent 6 }}
116116
{{- end }}
117+
securityContext:
118+
seccompProfile:
119+
type: RuntimeDefault
117120
volumes:
118121
- configMap:
119122
name: "{{ $fullName }}-scheduler-conf"

deploy/helm/kubernetes/values.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ etcd:
2525
enabled: true
2626
image:
2727
repository: k8s.gcr.io/etcd
28-
tag: 3.4.13-3
28+
tag: 3.5.0-0
2929
pullPolicy: IfNotPresent
3030
pullSecrets: []
3131
replicaCount: 3
@@ -106,7 +106,7 @@ apiServer:
106106
enabled: true
107107
image:
108108
repository: k8s.gcr.io/kube-apiserver
109-
tag: v1.21.3
109+
tag: v1.22.0
110110
pullPolicy: IfNotPresent
111111
pullSecrets: []
112112
replicaCount: 2
@@ -155,7 +155,7 @@ controllerManager:
155155
enabled: true
156156
image:
157157
repository: k8s.gcr.io/kube-controller-manager
158-
tag: v1.21.3
158+
tag: v1.22.0
159159
pullPolicy: IfNotPresent
160160
pullSecrets: []
161161
replicaCount: 2
@@ -195,7 +195,7 @@ scheduler:
195195
enabled: true
196196
image:
197197
repository: k8s.gcr.io/kube-scheduler
198-
tag: v1.21.3
198+
tag: v1.22.0
199199
pullPolicy: IfNotPresent
200200
pullSecrets: []
201201
replicaCount: 2
@@ -235,7 +235,7 @@ admin:
235235
enabled: true
236236
image:
237237
repository: ghcr.io/kvaps/kubernetes-tools
238-
tag: v0.12.0
238+
tag: v0.13.0
239239
pullPolicy: IfNotPresent
240240
pullSecrets: []
241241
replicaCount: 1
@@ -294,7 +294,7 @@ konnectivityServer:
294294
mode: GRPC
295295
image:
296296
repository: us.gcr.io/k8s-artifacts-prod/kas-network-proxy/proxy-server
297-
tag: v0.0.21
297+
tag: v0.0.22
298298
pullPolicy: IfNotPresent
299299
pullSecrets: []
300300
replicaCount: 2
@@ -345,7 +345,7 @@ konnectivityAgent:
345345
enabled: false
346346
image:
347347
repository: us.gcr.io/k8s-artifacts-prod/kas-network-proxy/proxy-agent
348-
tag: v0.0.21
348+
tag: v0.0.22
349349
pullPolicy: IfNotPresent
350350
pullSecrets: []
351351
replicaCount: 2

0 commit comments

Comments
 (0)