watchparty vbrowser and workers

This commit is contained in:
Sergei Poljanski 2026-04-04 18:21:04 +03:00
commit 65d51cef01
Signed by: asxpi
GPG key ID: 4F8851660FA4121B
7 changed files with 144 additions and 1 deletions

View file

@ -0,0 +1,35 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: vbrowser-gateway
namespace: vbrowser-gateway
spec:
replicas: 1
selector:
matchLabels:
app: vbrowser-gateway
template:
metadata:
labels:
app: vbrowser-gateway
spec:
containers:
- name: nginx
image: nginx:alpine
ports:
- containerPort: 80
name: http
volumeMounts:
- name: config
mountPath: /etc/nginx/nginx.conf
subPath: nginx.conf
resources:
requests:
memory: 32Mi
cpu: 10m
limits:
memory: 64Mi
volumes:
- name: config
configMap:
name: vbrowser-gateway