apiVersion: apps/v1 kind: Deployment metadata: name: guacd namespace: auth spec: replicas: 1 selector: matchLabels: app: guacd template: metadata: labels: app: guacd spec: containers: - name: guacd image: guacamole/guacd:1.6.0 ports: - containerPort: 4822 resources: requests: cpu: 100m memory: 128Mi limits: cpu: 500m memory: 512Mi --- apiVersion: v1 kind: Service metadata: name: guacd namespace: auth spec: selector: app: guacd ports: - port: 4822 targetPort: 4822