Files
homelab/durpapi/templates/test.yaml
2023-06-24 20:09:45 +00:00

42 lines
511 B
YAML

apiVersion: v1
kind: Service
metadata:
name: "test-service"
spec:
ports:
- name: http
port: 8080
targetPort: 8080
protocol: TCP
selector:
app: test
---
apiVersion: v1
kind: Service
metadata:
name: test
spec:
ports:
- name: http
port: 8080
protocol: TCP
targetPort: 8080
clusterIP: None
type: ClusterIP
---
apiVersion: v1
kind: Endpoints
metadata:
name: test
subsets:
- addresses:
- ip: 192.168.130.2
ports:
- name: http
port: 8080
protocol: TCP