helm/vintage-os/base/deployment.yaml
2022-10-20 07:35:45 +00:00

76 lines
1.9 KiB
YAML

kind: Deployment
apiVersion: apps/v1
metadata:
name: qemu-
spec:
replicas: 1
strategy:
type: Recreate
selector:
matchLabels:
app: qemu-
template:
metadata:
labels:
app: qemu-
spec:
imagePullSecrets:
- name: docker-ghcr
containers:
- name: audioserver
image: tonychee7000/pulseaudio
command:
- "/usr/bin/pulseaudio"
- "--system"
- "--disallow-exit"
- "--disallow-module-loading"
- "-n"
- "-L"
- "module-always-sink"
- "-L"
- "module-native-protocol-tcp auth-anonymous=1 auth-cookie-enabled=0"
resources:
limits:
cpu: 50m
memory: 8Mi
ports:
- name: audio
containerPort: 4713
lifecycle:
postStart:
exec:
command:
- /bin/sh
- "-c"
- "while true; do nc -vz localhost:4713 && break; done"
- name: qemu
image: system
env:
- name: ADDITIONAL_ARGS
value: "-enable-kvm"
ports:
- containerPort: 5900
name: vnc
resources:
requests:
memory: 192Mi
cpu: 100m
smarter-devices/kvm: "1"
limits:
memory: 256Mi
cpu: "1"
smarter-devices/kvm: "1"
readinessProbe:
tcpSocket:
port: vnc
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
livenessProbe:
tcpSocket:
port: vnc
initialDelaySeconds: 5
periodSeconds: 10
successThreshold: 1
failureThreshold: 3