generated from ContainerCraft/devcontainer
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update k8s support to 1.32 + Cilium L2 Announcement rfe
- Loading branch information
usrbinkat
committed
Jan 6, 2025
1 parent
fc977ea
commit efa0513
Showing
11 changed files
with
1,087 additions
and
215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ runtime: | |
name: python | ||
options: | ||
virtualenv: venv | ||
toolchain: poetry | ||
config: | ||
pulumi:tags: | ||
value: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
kind: Cluster | ||
name: optiplexprime | ||
talos: | ||
version: v1.7.6 | ||
version: v1.9.1 | ||
kubernetes: | ||
version: v1.30.4 | ||
version: v1.32.0 | ||
--- | ||
kind: ControlPlane | ||
machines: | ||
- 4c4c4544-0036-3110-8047-c2c04f394e32 | ||
- 4c4c4544-0035-5210-804b-c2c04f394e32 | ||
- 4c4c4544-0056-3210-804c-b5c04f525032 | ||
patches: | ||
- file: docs/metal/optiplexprime/patch.yaml | ||
machines: | ||
- 4c4c4544-0036-3110-8047-c2c04f394e32 | ||
# - 4c4c4544-0035-5210-804b-c2c04f394e32 | ||
# - 4c4c4544-0056-3210-804c-b5c04f525032 | ||
--- | ||
kind: Machine | ||
name: 4c4c4544-0036-3110-8047-c2c04f394e32 | ||
install: | ||
disk: /dev/nvme1n1 | ||
patches: | ||
- file: docs/metal/optiplexprime/machine.yaml | ||
--- | ||
kind: Machine | ||
name: 4c4c4544-0035-5210-804b-c2c04f394e32 | ||
install: | ||
disk: /dev/nvme1n1 | ||
patches: | ||
- file: docs/metal/optiplexprime/machine.yaml | ||
--- | ||
kind: Machine | ||
name: 4c4c4544-0056-3210-804c-b5c04f525032 | ||
install: | ||
disk: /dev/nvme1n1 | ||
disk: /dev/nvme0n1 | ||
patches: | ||
- file: docs/metal/optiplexprime/machine.yaml | ||
#--- | ||
#kind: Machine | ||
#name: 4c4c4544-0035-5210-804b-c2c04f394e32 | ||
#install: | ||
# disk: /dev/nvme1n1 | ||
#patches: | ||
# - file: docs/metal/optiplexprime/machine.yaml | ||
#--- | ||
#kind: Machine | ||
#name: 4c4c4544-0056-3210-804c-b5c04f525032 | ||
#install: | ||
# disk: /dev/nvme1n1 | ||
#patches: | ||
# - file: docs/metal/optiplexprime/machine.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,45 @@ | ||
machine: | ||
features: | ||
# Enable KubePrism k8s api proxy listening on each worker/cp node at `localhost:7455` | ||
kubePrism: | ||
enabled: true | ||
port: 7445 | ||
network: | ||
hostname: op1 | ||
interfaces: | ||
- interface: br0 | ||
dhcp: true | ||
bridge: | ||
interfaces: | ||
- enp3s0 | ||
- enp0s31f6 | ||
disks: | ||
- device: /dev/sda | ||
partitions: | ||
- mountpoint: /var/mnt/hostpath-provisioner | ||
- mountpoint: /var/mnt/hostpath-provisioner/ssd | ||
kubelet: | ||
extraMounts: | ||
- destination: /etc/cni/net.d | ||
type: bind | ||
source: /etc/cni/net.d | ||
options: | ||
- bind | ||
- rshared | ||
- rw | ||
- destination: /opt/cni/bin | ||
type: bind | ||
source: /opt/cni/bin | ||
options: | ||
- bind | ||
- rshared | ||
- rw | ||
extraArgs: | ||
# Rotate server certificates automatically | ||
# https://kubernetes.io/docs/tasks/tls/certificate-rotation/ | ||
# Approve the CSR requests for the kubelet to rotate the certificates | ||
# https://kubernetes.io/docs/tasks/tls/certificate-rotation/#approving-the-csr-requests | ||
# Example Command: | ||
# kubectl get csr | grep Pending | awk '{print $1}' | xargs kubectl certificate approve | ||
# Example Command for All Namespaces: | ||
# kubectl get csr --no-headers | awk '/Pending/ {print $1}' | xargs -I {} kubectl certificate approve {} | ||
rotate-server-certificates: "false" | ||
# extraMounts: | ||
# - destination: /etc/cni/net.d | ||
# type: bind | ||
# source: /etc/cni/net.d | ||
# options: | ||
# - bind | ||
# - rshared | ||
# - rw | ||
# - destination: /opt/cni/bin | ||
# type: bind | ||
# source: /opt/cni/bin | ||
# options: | ||
# - bind | ||
# - rshared | ||
# - rw |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.