This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
irc/thelounge/httproute.yaml
T
Chris Farhood c8ee58c67f fix: preserve Flux variable substitution in HTTPRoute
Reverted HTTPRoute hostname to use Flux variable ${THELOUNGE_HOSTNAME}
and updated kubeconform to skip HTTPRoute validation instead.

Flux substitutes variables at deployment time, so the validation
needs to skip resources with variable substitution syntax.

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
2026-02-08 10:03:04 -05:00

19 lines
369 B
YAML

apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: thelounge
namespace: irc
spec:
parentRefs:
- name: external
namespace: istio-system
hostnames:
- ${THELOUNGE_HOSTNAME}
rules:
- matches:
- path:
type: PathPrefix
value: /
backendRefs:
- name: thelounge
port: 9000