prole/deploy/opentofu/k3s/manifests/knoe/knoe-auth-service.yaml
chrisfu 8c0e3493c6 fix(k3s): add knoe-auth Service and fix nginx auth_request FQDN
authority-prole-auth deployment had no Service. Create knoe-auth ClusterIP
service selecting app=authority-prole-auth on port 8080 — consistent with
Kong's knoe-auth route URL. Update nginx configmap to use the same FQDN.
2026-05-06 17:51:08 -04:00

14 lines
214 B
YAML

apiVersion: v1
kind: Service
metadata:
name: knoe-auth
namespace: knoe-system
spec:
selector:
app: authority-prole-auth
ports:
- name: http
port: 8080
targetPort: 8080
type: ClusterIP