26 lines
602 B
YAML
26 lines
602 B
YAML
apiVersion: kubeadm.k8s.io/v1beta3
|
|
kind: InitConfiguration
|
|
localAPIEndpoint:
|
|
advertiseAddress: "10.10.10.1"
|
|
bindPort: 6443
|
|
nodeRegistration:
|
|
name: "violet-hzn-helsinki"
|
|
criSocket: "unix:///var/run/containerd/containerd.sock"
|
|
---
|
|
apiVersion: kubeadm.k8s.io/v1beta3
|
|
kind: ClusterConfiguration
|
|
kubernetesVersion: "1.32.3"
|
|
clusterName: "panic-haus"
|
|
controlPlaneEndpoint: "10.10.10.1:6443"
|
|
imageRepository: "registry.k8s.io"
|
|
apiServer:
|
|
certSANs:
|
|
- "10.10.10.1"
|
|
- "95.217.74.168"
|
|
- "localhost"
|
|
- "127.0.0.1"
|
|
networking:
|
|
podSubnet: "10.244.0.0/16"
|
|
serviceSubnet: "10.96.0.0/12"
|
|
|