Compare commits

..

3 Commits

Author SHA1 Message Date
8c41b75807 feat: Added openebs patch 2025-12-05 04:19:04 +01:00
f6c715f5f5 chore: Added pre-commit hooks 2025-12-04 03:54:36 +01:00
37d510a0bd fix: Increase VM memory
Not all pods could be scheduled due to the limited amount of RAM
available in the VM.
2025-12-04 03:54:36 +01:00
5 changed files with 2 additions and 28 deletions

View File

@@ -30,9 +30,6 @@ patches:
- !patch tailscale
- !patch cilium
- !patch spegel
- !patch longhorn
- !patch longhorn-user-volume
- !patch limit-ephemeral
patchesControlPlane:
- !patch allow-control-plane-workloads
- !patch sops

View File

@@ -1,5 +0,0 @@
apiVersion: v1alpha1
kind: VolumeConfig
name: EPHEMERAL
provisioning:
maxSize: 8GB

View File

@@ -1,8 +0,0 @@
apiVersion: v1alpha1
kind: UserVolumeConfig
name: longhorn
provisioning:
diskSelector:
match: system_disk
grow: true
maxSize: 2000GB

View File

@@ -1,10 +0,0 @@
machine:
kubelet:
extraMounts:
- destination: /var/lib/longhorn
type: bind
source: /var/lib/longhorn
options:
- bind
- rshared
- rw

View File

@@ -3,9 +3,9 @@ set -euo pipefail
ROOT=$(git rev-parse --show-toplevel)
VM_NAME="talos-vm"
VCPUS="6"
VCPUS="2"
RAM_MB="16384"
DISK_GB="20"
DISK_GB="10"
NETWORK=talos
CONNECTION="qemu:///system"