Files
homelab/k3s/sample-app-service.yaml
2023-11-20 12:37:35 -08:00

16 lines
250 B
YAML

apiVersion: v1
kind: Service
metadata:
name: sample-app-service
annotations:
metallb.universe.tf/address-pool: first-pool
spec:
ports:
- port: 80
targetPort: 80
protocol: TCP
type: LoadBalancer
selector:
app: nginx