watchparty vbrowser and workers
This commit is contained in:
parent
45782dd711
commit
65d51cef01
7 changed files with 144 additions and 1 deletions
35
apps/vbrowser-gateway/deployment.yaml
Normal file
35
apps/vbrowser-gateway/deployment.yaml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue