update
This commit is contained in:
parent
3c101f1403
commit
d2eb37a915
@ -16,7 +16,7 @@ spec:
|
||||
image: guacamole/guacamole
|
||||
resources:
|
||||
limits:
|
||||
cpu: '1'
|
||||
cpu: '200m'
|
||||
memory: '1024Mi'
|
||||
env:
|
||||
- name: GUACD_HOSTNAME
|
||||
|
@ -16,8 +16,8 @@ spec:
|
||||
image: guacamole/guacd
|
||||
resources:
|
||||
limits:
|
||||
cpu: 200m
|
||||
memory: '512Mi'
|
||||
cpu: 100m
|
||||
memory: "32Mi"
|
||||
ports:
|
||||
- protocol: TCP
|
||||
name: guacd
|
||||
|
@ -3,6 +3,9 @@ apiVersion: apps/v1
|
||||
metadata:
|
||||
name: qemu-
|
||||
spec:
|
||||
replicas: 1
|
||||
strategy:
|
||||
type: Recreate
|
||||
selector:
|
||||
matchLabels:
|
||||
app: qemu-
|
||||
@ -14,26 +17,49 @@ 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'
|
||||
value: "-enable-kvm"
|
||||
ports:
|
||||
- containerPort: 5900
|
||||
name: vnc
|
||||
volumeMounts:
|
||||
- mountPath: /tmp
|
||||
name: pipe
|
||||
resources:
|
||||
requests:
|
||||
memory: 192Mi
|
||||
cpu: 100m
|
||||
smarter-devices/kvm: 1
|
||||
smarter-devices/kvm: "1"
|
||||
limits:
|
||||
memory: 1Gi
|
||||
cpu: '1'
|
||||
smarter-devices/kvm: 1
|
||||
memory: 256Mi
|
||||
cpu: "1"
|
||||
smarter-devices/kvm: "1"
|
||||
readinessProbe:
|
||||
tcpSocket:
|
||||
port: vnc
|
||||
@ -47,18 +73,3 @@ spec:
|
||||
periodSeconds: 10
|
||||
successThreshold: 1
|
||||
failureThreshold: 3
|
||||
lifecycle:
|
||||
postStart:
|
||||
exec:
|
||||
command:
|
||||
- sleep
|
||||
- '1'
|
||||
- name: audioserver
|
||||
image: tonychee7000/pulseaudio
|
||||
resources:
|
||||
limits:
|
||||
cpu: 200m
|
||||
memory: 128Mi
|
||||
ports:
|
||||
- name: audio
|
||||
containerPort: 4713
|
@ -3,6 +3,7 @@
|
||||
nameSuffix: happylinux
|
||||
commonLabels:
|
||||
app: qemu-happylinux
|
||||
namespace: vintage-os
|
||||
resources:
|
||||
- ../base
|
||||
images:
|
||||
|
Loading…
Reference in New Issue
Block a user