17 lines
272 B
YAML
17 lines
272 B
YAML
# https://kubernetes.io/docs/concepts/services-networking/service/
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: douwsky-proxy
|
|
spec:
|
|
selector:
|
|
app: douwsky-proxy
|
|
type: clusterIP
|
|
ports:
|
|
- name: douwsky-proxy
|
|
protocol:
|
|
port: 80
|
|
targetPort: 80
|
|
---
|
|
|