24 lines
454 B
YAML
24 lines
454 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: guacd
|
||
|
spec:
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: guacd
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: guacd
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: guacd
|
||
|
image: guacamole/guacd
|
||
|
resources:
|
||
|
limits:
|
||
|
cpu: 200m
|
||
|
memory: '512Mi'
|
||
|
ports:
|
||
|
- protocol: TCP
|
||
|
name: guacd
|
||
|
containerPort: 4822
|