25 lines
454 B
YAML
25 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: 100m
|
|
memory: "32Mi"
|
|
ports:
|
|
- protocol: TCP
|
|
name: guacd
|
|
containerPort: 4822
|