mirror of
https://github.com/dockur/windows.git
synced 2025-10-29 12:15:50 +00:00
feat: Add persistent volume
This commit is contained in:
parent
4379d93f3b
commit
d5827a6412
1 changed files with 35 additions and 7 deletions
|
|
@ -1,17 +1,32 @@
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
name: windows-pvc
|
||||||
|
spec:
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteOnce
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 64Gi
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
kind: Pod
|
kind: Pod
|
||||||
metadata:
|
metadata:
|
||||||
name: windows-pod
|
name: windows
|
||||||
labels:
|
labels:
|
||||||
name: windows-pod
|
name: windows
|
||||||
spec:
|
spec:
|
||||||
|
terminationGracePeriodSeconds: 120 # the Kubernetes default is 30 seconds and it may be not enough
|
||||||
containers:
|
containers:
|
||||||
- name: windows
|
- name: windows
|
||||||
image: dockurr/windows
|
image: dockurr/windows
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8006
|
- containerPort: 8006
|
||||||
|
protocol: TCP
|
||||||
- containerPort: 3389
|
- containerPort: 3389
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
|
- containerPort: 3389
|
||||||
|
protocol: UDP
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
devices.kubevirt.io/kvm: 1
|
devices.kubevirt.io/kvm: 1
|
||||||
|
|
@ -19,19 +34,27 @@ spec:
|
||||||
privileged: true
|
privileged: true
|
||||||
env:
|
env:
|
||||||
- name: RAM_SIZE
|
- name: RAM_SIZE
|
||||||
value: 16G
|
value: 4G
|
||||||
- name: CPU_CORES
|
- name: CPU_CORES
|
||||||
value: "8"
|
value: "2"
|
||||||
|
- name: DISK_SIZE
|
||||||
|
value: "64G"
|
||||||
|
volumeMounts:
|
||||||
|
- mountPath: /storage
|
||||||
|
name: storage
|
||||||
|
volumes:
|
||||||
|
- name: storage
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: windows-pvc
|
||||||
---
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: Service
|
kind: Service
|
||||||
metadata:
|
metadata:
|
||||||
name: windows-service
|
name: windows
|
||||||
spec:
|
spec:
|
||||||
type: NodePort
|
type: NodePort
|
||||||
selector:
|
selector:
|
||||||
name: windows-pod
|
name: windows
|
||||||
ports:
|
ports:
|
||||||
- name: tcp-8006
|
- name: tcp-8006
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
|
|
@ -43,3 +66,8 @@ spec:
|
||||||
port: 3389
|
port: 3389
|
||||||
targetPort: 3389
|
targetPort: 3389
|
||||||
nodePort: 43389
|
nodePort: 43389
|
||||||
|
- name: udp-3389
|
||||||
|
protocol: UDP
|
||||||
|
port: 3389
|
||||||
|
targetPort: 3389
|
||||||
|
nodePort: 43388
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue