diff --git a/packages/core/installer/images/talos/profiles/initramfs.yaml b/packages/core/installer/images/talos/profiles/initramfs.yaml index 8c251abc7..ddb7cfccb 100644 --- a/packages/core/installer/images/talos/profiles/initramfs.yaml +++ b/packages/core/installer/images/talos/profiles/initramfs.yaml @@ -10,7 +10,7 @@ input: initramfs: path: /usr/install/amd64/initramfs.xz baseInstaller: - imageRef: ghcr.io/siderolabs/installer:v1.9.1 + imageRef: ghcr.io/kvaps/talos/installer:v1.9.1-1-gac655f2d3-dirty systemExtensions: - imageRef: ghcr.io/siderolabs/amd-ucode:20241210 - imageRef: ghcr.io/siderolabs/amdgpu-firmware:20241110 diff --git a/packages/core/installer/images/talos/profiles/installer.yaml b/packages/core/installer/images/talos/profiles/installer.yaml index e834e9747..8e83875c1 100644 --- a/packages/core/installer/images/talos/profiles/installer.yaml +++ b/packages/core/installer/images/talos/profiles/installer.yaml @@ -10,7 +10,7 @@ input: initramfs: path: /usr/install/amd64/initramfs.xz baseInstaller: - imageRef: ghcr.io/siderolabs/installer:v1.9.1 + imageRef: ghcr.io/kvaps/talos/installer:v1.9.1-1-gac655f2d3-dirty systemExtensions: - imageRef: ghcr.io/siderolabs/amd-ucode:20241210 - imageRef: ghcr.io/siderolabs/amdgpu-firmware:20241110 diff --git a/packages/core/installer/images/talos/profiles/iso.yaml b/packages/core/installer/images/talos/profiles/iso.yaml index c614d6e25..7781a5f48 100644 --- a/packages/core/installer/images/talos/profiles/iso.yaml +++ b/packages/core/installer/images/talos/profiles/iso.yaml @@ -10,7 +10,7 @@ input: initramfs: path: /usr/install/amd64/initramfs.xz baseInstaller: - imageRef: ghcr.io/siderolabs/installer:v1.9.1 + imageRef: ghcr.io/kvaps/talos/installer:v1.9.1-1-gac655f2d3-dirty systemExtensions: - imageRef: ghcr.io/siderolabs/amd-ucode:20241210 - imageRef: ghcr.io/siderolabs/amdgpu-firmware:20241110 diff --git a/packages/core/installer/images/talos/profiles/kernel.yaml b/packages/core/installer/images/talos/profiles/kernel.yaml index e032f2549..bf2a2e0d2 100644 --- a/packages/core/installer/images/talos/profiles/kernel.yaml +++ b/packages/core/installer/images/talos/profiles/kernel.yaml @@ -10,7 +10,7 @@ input: initramfs: path: /usr/install/amd64/initramfs.xz baseInstaller: - imageRef: ghcr.io/siderolabs/installer:v1.9.1 + imageRef: ghcr.io/kvaps/talos/installer:v1.9.1-1-gac655f2d3-dirty systemExtensions: - imageRef: ghcr.io/siderolabs/amd-ucode:20241210 - imageRef: ghcr.io/siderolabs/amdgpu-firmware:20241110 diff --git a/packages/core/installer/images/talos/profiles/metal.yaml b/packages/core/installer/images/talos/profiles/metal.yaml index d9f2b83a1..740ac921b 100644 --- a/packages/core/installer/images/talos/profiles/metal.yaml +++ b/packages/core/installer/images/talos/profiles/metal.yaml @@ -10,7 +10,7 @@ input: initramfs: path: /usr/install/amd64/initramfs.xz baseInstaller: - imageRef: ghcr.io/siderolabs/installer:v1.9.1 + imageRef: ghcr.io/kvaps/talos/installer:v1.9.1-1-gac655f2d3-dirty systemExtensions: - imageRef: ghcr.io/siderolabs/amd-ucode:20241210 - imageRef: ghcr.io/siderolabs/amdgpu-firmware:20241110 diff --git a/packages/core/installer/images/talos/profiles/nocloud.yaml b/packages/core/installer/images/talos/profiles/nocloud.yaml index 580d829b2..246964e4a 100644 --- a/packages/core/installer/images/talos/profiles/nocloud.yaml +++ b/packages/core/installer/images/talos/profiles/nocloud.yaml @@ -10,7 +10,7 @@ input: initramfs: path: /usr/install/amd64/initramfs.xz baseInstaller: - imageRef: ghcr.io/siderolabs/installer:v1.9.1 + imageRef: ghcr.io/kvaps/talos/installer:v1.9.1-1-gac655f2d3-dirty systemExtensions: - imageRef: ghcr.io/siderolabs/amd-ucode:20241210 - imageRef: ghcr.io/siderolabs/amdgpu-firmware:20241110 diff --git a/packages/system/kubevirt/templates/disable-selinux-workaround.yaml b/packages/system/kubevirt/templates/disable-selinux-workaround.yaml deleted file mode 100644 index c096dce9f..000000000 --- a/packages/system/kubevirt/templates/disable-selinux-workaround.yaml +++ /dev/null @@ -1,41 +0,0 @@ -# See: -# - https://github.com/siderolabs/talos/issues/10083 ---- -apiVersion: apps/v1 -kind: DaemonSet -metadata: - name: disable-selinux - namespace: cozy-kubevirt - labels: - app: disable-selinux -spec: - selector: - matchLabels: - app: disable-selinux - template: - metadata: - labels: - app: disable-selinux - spec: - containers: - - command: - - sh - - -exc - - test -f /host/sys/fs/selinux/enforce && mount -t tmpfs tmpfs /host/sys/fs/selinux; sleep infinity - image: docker.io/library/alpine - name: mount - securityContext: - privileged: true - volumeMounts: - - mountPath: /host - mountPropagation: Bidirectional - name: host-root - hostIPC: true - hostNetwork: true - hostPID: true - tolerations: - - operator: Exists - volumes: - - hostPath: - path: / - name: host-root