25 lines
643 B
YAML
25 lines
643 B
YAML
# Apply: kubectl apply -f manifests/network/watch-party-ingress.yaml
|
|
# Delete: kubectl delete -f manifests/network/watch-party-ingress.yaml
|
|
# Description: External Endpoints and Service for Watch Party on Mac Mini. No public
|
|
# route — taken off the internet (was Ingress + Let's Encrypt cert at watch-party.nik4nao.com).
|
|
apiVersion: v1
|
|
kind: Endpoints
|
|
metadata:
|
|
name: watch-party-mac-mini
|
|
namespace: default
|
|
subsets:
|
|
- addresses:
|
|
- ip: 192.168.7.96
|
|
ports:
|
|
- port: 3000
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: watch-party-mac-mini
|
|
namespace: default
|
|
spec:
|
|
ports:
|
|
- port: 3000
|
|
targetPort: 3000
|