File tree Expand file tree Collapse file tree 2 files changed +22
-5
lines changed
Expand file tree Collapse file tree 2 files changed +22
-5
lines changed Original file line number Diff line number Diff line change 22# running debian version. supported values: Debian_11, Debian_12
33debianVersion : " Debian_12"
44# targeted kubernetes version in major.minor
5- kubeVersion : " 1.30 "
5+ kubeVersion : " 1.31 "
66# targeted crio version in major.minor
7- crioVersion : " 1.30 "
7+ crioVersion : " 1.31 "
88# time until a pod is killed
9- drainGracePeriod : 30
9+ drainGracePeriod : 120
1010# time until the drain command times out
11- drainTimeOut : 120s
11+ drainTimeOut : 180s
1212# time to wait in seconds inbetween upgrade operations
13- pauseDelayCordon : 5
13+ pauseDelayCordon : 30
1414pauseDelayUncordon : 30
15+ # override plan Version -> this will skip the fact gathering and first apply of the upgrade
16+ # this can help when the playbook aborted at some point
17+ # eg. overridePlanVersion: 'v1.31.1'
18+ overridePlanVersion : ' '
1519# repo list to remove in /etc/apt/sources.list.d/
1620repoList :
1721 - " repo_vanillastack_cloudical_net.list"
1822 - " devel:kubic:libcontainers:stable:cri-o:1.27.list"
1923 - " devel:kubic:libcontainers:stable:cri-o:1.28.list"
2024 - " devel:kubic:libcontainers:stable:cri-o:1.29.list"
2125 - " devel:kubic:libcontainers:stable:cri-o:1.30.list"
26+ - " devel:kubic:libcontainers:stable:cri-o:1.31.list"
27+ - " devel:kubic:libcontainers:stable:cri-o:1.32.list"
28+ - " devel:kubic:libcontainers:stable:cri-o:1.33.list"
2229 - " devel:kubic:libcontainers:stable.list"
2330 - " kubernetes-stable.list"
2431 - " kubernetes.list"
Original file line number Diff line number Diff line change 1111 - jq
1212 state : present
1313
14+ - name : register override version to dummy host
15+ hosts : localhost
16+ become : false
17+ gather_facts : false
18+ tasks :
19+ - add_host :
20+ name : " K8S_TOKEN_HOLDER"
21+ plan_version : " {{ overridePlanVersion }}"
22+ when : overridePlanVersion | length > 0
23+
1424- name : upgrade first control plane
1525 hosts : control-plane[0]
1626 become : true
You can’t perform that action at this time.
0 commit comments