Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.

Commit 14745db

Browse files
committed
Use Ubuntu 22.04 for testing and default deployments
Signed-off-by: Chris Privitere <[email protected]>
1 parent 90a7b88 commit 14745db

11 files changed

+16
-16
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If you do not change the generated `yaml` files, it will use defaults. You can l
3636

3737
* `CPEM_VERSION` (defaults to `v3.5.0`)
3838
* `KUBE_VIP_VERSION` (defaults to `v0.5.0`)
39-
* `NODE_OS` (defaults to `ubuntu_18_04`)
39+
* `NODE_OS` (defaults to `ubuntu_22_04`)
4040
* `POD_CIDR` (defaults to `192.168.0.0/16`)
4141
* `SERVICE_CIDR` (defaults to `172.26.0.0/16`)
4242

@@ -55,7 +55,7 @@ spec:
5555
spec:
5656
billingCycle: hourly
5757
machineType: c3.small.x86
58-
os: ubuntu_18_04
58+
os: ubuntu_22_04
5959
sshKeys:
6060
- ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDvMgVEubPLztrvVKgNPnRe9sZSjAqaYj9nmCkgr4PdK username@computer
6161
tags: []

docs/concepts/machine.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ kind: PacketMachine
1111
metadata:
1212
name: "qa-controlplane-0"
1313
spec:
14-
os: "ubuntu_18_04"
14+
os: "ubuntu_22_04"
1515
billingCycle: hourly
1616
machineType: "c3.small.x86"
1717
sshKeys:

templates/cluster-template-crs-cni.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ spec:
238238
spec:
239239
billingCycle: hourly
240240
machineType: ${CONTROLPLANE_NODE_TYPE}
241-
os: ${NODE_OS:=ubuntu_18_04}
241+
os: ${NODE_OS:=ubuntu_22_04}
242242
sshKeys:
243243
- ${SSH_KEY}
244244
tags: []
@@ -252,7 +252,7 @@ spec:
252252
spec:
253253
billingCycle: hourly
254254
machineType: ${WORKER_NODE_TYPE}
255-
os: ${NODE_OS:=ubuntu_18_04}
255+
os: ${NODE_OS:=ubuntu_22_04}
256256
sshKeys:
257257
- ${SSH_KEY}
258258
tags: []

templates/cluster-template-kube-vip-crs-cni.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ spec:
257257
spec:
258258
billingCycle: hourly
259259
machineType: ${CONTROLPLANE_NODE_TYPE}
260-
os: ${NODE_OS:=ubuntu_18_04}
260+
os: ${NODE_OS:=ubuntu_22_04}
261261
sshKeys:
262262
- ${SSH_KEY}
263263
tags: []
@@ -271,7 +271,7 @@ spec:
271271
spec:
272272
billingCycle: hourly
273273
machineType: ${WORKER_NODE_TYPE}
274-
os: ${NODE_OS:=ubuntu_18_04}
274+
os: ${NODE_OS:=ubuntu_22_04}
275275
sshKeys:
276276
- ${SSH_KEY}
277277
tags: []

templates/cluster-template-kube-vip.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ spec:
236236
spec:
237237
billingCycle: hourly
238238
machineType: ${CONTROLPLANE_NODE_TYPE}
239-
os: ${NODE_OS:=ubuntu_18_04}
239+
os: ${NODE_OS:=ubuntu_22_04}
240240
sshKeys:
241241
- ${SSH_KEY}
242242
tags: []
@@ -250,7 +250,7 @@ spec:
250250
spec:
251251
billingCycle: hourly
252252
machineType: ${WORKER_NODE_TYPE}
253-
os: ${NODE_OS:=ubuntu_18_04}
253+
os: ${NODE_OS:=ubuntu_22_04}
254254
sshKeys:
255255
- ${SSH_KEY}
256256
tags: []

templates/cluster-template.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ metadata:
102102
spec:
103103
template:
104104
spec:
105-
os: "${NODE_OS:=ubuntu_18_04}"
105+
os: "${NODE_OS:=ubuntu_22_04}"
106106
billingCycle: hourly
107107
machineType: "${CONTROLPLANE_NODE_TYPE}"
108108
sshKeys:
@@ -178,7 +178,7 @@ metadata:
178178
spec:
179179
template:
180180
spec:
181-
os: "${NODE_OS:=ubuntu_18_04}"
181+
os: "${NODE_OS:=ubuntu_22_04}"
182182
billingCycle: hourly
183183
machineType: "${WORKER_NODE_TYPE}"
184184
sshKeys:

test/e2e/config/packet-ci-actions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ variables:
158158
COREDNS_VERSION_UPGRADE_TO: "v1.8.6"
159159

160160
# Infra provider specific variables
161-
NODE_OS: "ubuntu_18_04"
161+
NODE_OS: "ubuntu_22_04"
162162
POD_CIDR: "192.168.0.0/16"
163163
SERVICE_CIDR: "172.26.0.0/16"
164164

test/e2e/config/packet-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ variables:
165165
COREDNS_VERSION_UPGRADE_TO: "v1.8.6"
166166

167167
# Infra provider specific variables
168-
NODE_OS: "ubuntu_18_04"
168+
NODE_OS: "ubuntu_22_04"
169169
POD_CIDR: "192.168.0.0/16"
170170
SERVICE_CIDR: "172.26.0.0/16"
171171

test/e2e/data/v1alpha3/bases/cluster-with-kcp-cpem.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ metadata:
4343
spec:
4444
template:
4545
spec:
46-
OS: "${NODE_OS:=ubuntu_18_04}"
46+
OS: "${NODE_OS:=ubuntu_22_04}"
4747
billingCycle: hourly
4848
machineType: "${CONTROLPLANE_NODE_TYPE}"
4949
sshKeys:

test/e2e/data/v1alpha3/bases/cluster-with-kcp-packet-ccm.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ metadata:
4343
spec:
4444
template:
4545
spec:
46-
OS: "${NODE_OS:=ubuntu_18_04}"
46+
OS: "${NODE_OS:=ubuntu_22_04}"
4747
billingCycle: hourly
4848
machineType: "${CONTROLPLANE_NODE_TYPE}"
4949
sshKeys:

0 commit comments

Comments
 (0)