Skip to content

Commit e6799b1

Browse files
committed
staging v2.26.0-ck8s3
1 parent 3949583 commit e6799b1

File tree

3 files changed

+28
-13
lines changed

3 files changed

+28
-13
lines changed

changelog/2.26.0.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,18 @@ Released 2025-01-14
5252
### Other(s)
5353

5454
- [#406](https://github.com/elastisys/compliantkubernetes-kubespray/pull/406) - other: Update kubespray fork for v2.26.0-ck8s2 [@Ajarmar](https://github.com/Ajarmar)
55+
56+
## v2.26.0-ck8s3
57+
58+
Released 2025-02-06
59+
60+
## Changes by kind
61+
62+
### Other(s)
63+
64+
- [#409](https://github.com/elastisys/compliantkubernetes-kubespray/pull/409) - documentation: docs: Added guide to migrate to Ubuntu 24.04
65+
66+
### Kubespray changes
67+
68+
- [e981da2](https://github.com/elastisys/kubespray/commit/e981da2b6595d4e7e73ef4d9e493f3c968df93a8) - reverted changes of commit e99226a
69+
- [a9a5ee3](https://github.com/elastisys/kubespray/commit/a9a5ee3c33b30d0356ca5b17e3df4dfae3227de7) - fix issue with floating-ip

migration/ubuntu/20.04-to-24.04-openstack.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -67,25 +67,25 @@ These steps will cause disruptions in the cluster.
6767

6868
```bash
6969
pushd "${CK8S_KUBESPRAY_REPOSITORY_PATH}"
70-
ck8s-kubespray apply <sc|wc> --limit=etcd,kube_control_plane -b -e=ignore_assert_errors=true --skip-tags=multus
70+
./bin/ck8s-kubespray apply <sc|wc> --limit=etcd,kube_control_plane -b -e=ignore_assert_errors=true --skip-tags=multus
7171
popd
7272
```
7373

7474
- Update control plane proxy using Kubespray:
7575

7676
```bash
7777
pushd "${CK8S_KUBESPRAY_REPOSITORY_PATH}"
78-
ck8s-kubespray apply <sc|wc> --tags=nginx -b
78+
./bin/ck8s-kubespray apply <sc|wc> --tags=nginx -b
7979
popd
8080
```
8181

8282
- Update the NetworkPolicies:
8383

8484
```bash
8585
pushd "${CK8S_APPS_REPOSITORY_PATH}"
86-
ck8s update-ips <sc|wc> apply
86+
./bin/ck8s update-ips <sc|wc> apply
8787

88-
ck8s ops helmfile <sc|wc> -l app=netpol -i apply
88+
./bin/ck8s ops helmfile <sc|wc> -l policy=netpol -i apply
8989
popd
9090
```
9191

@@ -125,15 +125,15 @@ These steps will cause disruptions in the cluster.
125125

126126
```bash
127127
pushd "${CK8S_KUBESPRAY_REPOSITORY_PATH}"
128-
ck8s-kubespray apply <sc|wc> --tags=master,nginx -b -e=ignore_assert_errors=true
128+
./bin/ck8s-kubespray apply <sc|wc> --tags=master,nginx -b -e=ignore_assert_errors=true
129129
popd
130130
```
131131

132132
- Remove old control plane nodes using Kubespray:
133133

134134
```bash
135135
pushd "${CK8S_KUBESPRAY_REPOSITORY_PATH}"
136-
ck8s-kubespray remove-node <sc|wc> <old-control-plane-nodes,...>
136+
./bin/ck8s-kubespray remove-node <sc|wc> <old-control-plane-nodes,...>
137137
popd
138138
```
139139

@@ -197,17 +197,17 @@ These steps will cause disruptions in the cluster.
197197

198198
```bash
199199
pushd "${CK8S_KUBESPRAY_REPOSITORY_PATH}"
200-
ck8s-kubespray apply <sc|wc> --tags=master,nginx -b
200+
./bin/ck8s-kubespray apply <sc|wc> --tags=master,nginx -b
201201
popd
202202
```
203203

204204
- Update the NetworkPolicies:
205205

206206
```bash
207207
pushd "${CK8S_APPS_REPOSITORY_PATH}"
208-
ck8s update-ips <sc|wc> apply
208+
./bin/ck8s update-ips <sc|wc> apply
209209

210-
ck8s ops helmfile <sc|wc> -l app=netpol -i apply
210+
./bin/ck8s ops helmfile <sc|wc> -l policy=netpol -i apply
211211
popd
212212
```
213213

@@ -221,8 +221,8 @@ These steps will cause disruptions in the cluster.
221221

222222
```bash
223223
pushd "${CK8S_KUBESPRAY_REPOSITORY_PATH}"
224-
ck8s-kubespray run-playbook <sc|wc> facts.yml
225-
ck8s-kubespray run-playbook <sc|wc> scale.yml -b --limit=<new-node1>,<new-node2>,...
224+
./bin/ck8s-kubespray run-playbook <sc|wc> facts.yml
225+
./bin/ck8s-kubespray run-playbook <sc|wc> scale.yml -b --limit=<new-node1>,<new-node2>,...
226226
popd
227227
```
228228

@@ -244,7 +244,7 @@ These steps will cause disruptions in the cluster.
244244

245245
```bash
246246
pushd "${CK8S_KUBESPRAY_REPOSITORY_PATH}"
247-
ck8s-kubespray remove-node <sc|wc> <old-node1>,<old-node2>,...
247+
./bin/ck8s-kubespray remove-node <sc|wc> <old-node1>,<old-node2>,...
248248
popd
249249
```
250250

0 commit comments

Comments
 (0)