File tree 3 files changed +13
-11
lines changed
3 files changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -17,26 +17,30 @@ kubectl get csr \
17
17
| xargs -r kubectl certificate approve
18
18
19
19
# prometheus crds (required by cilium)
20
- PROMETHEUS_VERSION=" 58 .3.1"
20
+ PROMETHEUS_VERSION=" 62 .3.1"
21
21
kubectl apply -f \
22
22
https://raw.githubusercontent.com/prometheus-community/helm-charts/kube-prometheus-stack-${PROMETHEUS_VERSION} /charts/kube-prometheus-stack/charts/crds/crds/crd-servicemonitors.yaml
23
23
24
24
# cilium
25
- CILIUM_VERSION=1.15.4
25
+ CILIUM_VERSION=1.16.1
26
26
helm repo add cilium https://helm.cilium.io/
27
27
helm repo update
28
28
helm upgrade --install \
29
29
cilium cilium/cilium --version $CILIUM_VERSION \
30
30
-f config/cilium.yaml \
31
- -n kube-system
31
+ -n networking --create-namespace
32
32
33
33
# local path provisioner
34
+ LOCAL_PATH_VERSION=v0.0.28
34
35
git clone https://github.com/rancher/local-path-provisioner.git
36
+ cd local-path-provisioner
37
+ git checkout $LOCAL_PATH_VERSION
35
38
helm upgrade --install \
36
39
local-path-provisioner \
37
- ./local-path-provisioner/deploy/chart/local-path-provisioner \
38
- -f config/local-path-provisioner.yaml \
39
- -n kube-system
40
+ ./deploy/chart/local-path-provisioner \
41
+ -f ../config/local-path-provisioner.yaml \
42
+ -n storage --create-namespace
43
+ cd ..
40
44
rm -rf local-path-provisioner
41
45
42
46
# sealed secrets
Original file line number Diff line number Diff line change 1
- k8sServiceHost : 10.0.0.10
1
+ k8sServiceHost : 10.0.0.20
2
2
k8sServicePort : 6443
3
3
tolerations :
4
4
- effect : NoSchedule
5
5
key : node-role.kubernetes.io/control-plane
6
6
- effect : NoSchedule
7
7
key : node.kubernetes.io/not-ready
8
+ - effect : NoSchedule
9
+ key : node.mmontes.io/storage
8
10
hubble :
9
11
enabled : true
10
12
metrics :
Original file line number Diff line number Diff line change 1
- tolerations :
2
- - effect : NoSchedule
3
- key : node-role.kubernetes.io/control-plane
4
-
5
1
storageClass :
6
2
create : true
7
3
defaultClass : true
You can’t perform that action at this time.
0 commit comments