mirror of
https://github.com/dockur/windows.git
synced 2025-10-28 19:55:49 +00:00
Update kubernetes.yml
Updates default machine specs, to following and adds /dev/net/tun, ensuring the connection tunnels: - RAM: 8GB - CPU Cores: 8 - Disk size: 512GB - Windows Edition: Windows 11 Enterprise
This commit is contained in:
parent
7654b8511b
commit
3eda68ed74
1 changed files with 11 additions and 4 deletions
|
|
@ -7,7 +7,7 @@ spec:
|
|||
- ReadWriteOnce
|
||||
resources:
|
||||
requests:
|
||||
storage: 64Gi
|
||||
storage: 512Gi
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Pod
|
||||
|
|
@ -30,17 +30,21 @@ spec:
|
|||
securityContext:
|
||||
privileged: true
|
||||
env:
|
||||
- name: VERSION
|
||||
value: "win11e"
|
||||
- name: RAM_SIZE
|
||||
value: 4G
|
||||
value: 8G
|
||||
- name: CPU_CORES
|
||||
value: "2"
|
||||
value: "8"
|
||||
- name: DISK_SIZE
|
||||
value: "64G"
|
||||
value: "512G"
|
||||
volumeMounts:
|
||||
- mountPath: /storage
|
||||
name: storage
|
||||
- mountPath: /dev/kvm
|
||||
name: dev-kvm
|
||||
- mountPath: /dev/net/tun
|
||||
name: dev-net-tun
|
||||
volumes:
|
||||
- name: storage
|
||||
persistentVolumeClaim:
|
||||
|
|
@ -48,6 +52,9 @@ spec:
|
|||
- name: dev-kvm
|
||||
hostPath:
|
||||
path: /dev/kvm
|
||||
- name: dev-net-tun
|
||||
hostPath:
|
||||
path: /dev/net/tun
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue