gitops/plane: fix issuer on ingress

This commit is contained in:
Jan Novak
2026-01-16 13:21:15 +01:00
parent a20ae55b8f
commit b9f99c2950
37 changed files with 1332 additions and 31 deletions

View File

@@ -19,7 +19,7 @@ resource "libvirt_volume" "node_02_disk" {
type = "qcow2"
}
}
capacity = 21474836480
capacity = 53687091200
}
locals {

View File

@@ -19,7 +19,7 @@ resource "libvirt_volume" "node_01_disk" {
type = "qcow2"
}
}
capacity = 21474836480
capacity = 53687091200
}
locals {
@@ -162,7 +162,8 @@ locals {
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
- echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" > /etc/apt/sources.list.d/docker.list
- apt-get update && apt-get install -y containerd.io
- cat > /etc/containerd/config.toml <<'xEOF'
- |
cat > /etc/containerd/config.toml <<'CONTAINERD'
version = 2
[plugins."io.containerd.grpc.v1.cri".containerd.runtimes.runc]
runtime_type = "io.containerd.runc.v2"
@@ -170,7 +171,7 @@ locals {
SystemdCgroup = true
[plugins."io.containerd.grpc.v1.cri".registry]
config_path = "/etc/containerd/certs.d"
xEOF
CONTAINERD
- systemctl restart containerd
# kubeadm/kubelet/kubectl v1.32

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long