devstar-devcontainer-operator/internal/controller/templates/service.yaml

14 lines
266 B
YAML
Raw Normal View History

2024-09-11 04:10:47 +00:00
apiVersion: v1
kind: Service
metadata:
name: {{.ObjectMeta.Name}}-svc
2024-09-11 04:10:47 +00:00
namespace: {{.ObjectMeta.Namespace}}
spec:
selector:
app: {{.ObjectMeta.Name}}
ports:
- name: ssh
port: {{.Spec.Ingress.Port}}
targetPort: ssh-port
2024-09-11 04:10:47 +00:00
protocol: TCP