-
-
Save haproxytechblog/ae47dbf240ce067e327b4bf0a375addb to your computer and use it in GitHub Desktop.
Announcing HAProxy Unified Gateway 1.0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| helm repo add haproxytech https://haproxytech.github.io/helm-charts | |
| helm repo update |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.5.0/experimental-install.yaml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Controller image settings | |
| image: | |
| tag: "1.0.0" | |
| # Resource limits for the controller pod | |
| resources: | |
| requests: | |
| cpu: "200m" | |
| memory: "256Mi" | |
| limits: | |
| cpu: "1000m" | |
| memory: "512Mi" | |
| # Install and manage CRDs automatically | |
| crds: | |
| install: true | |
| keep: true | |
| # HugConf settings applied at install time | |
| hugconf: | |
| logging: | |
| defaultLevel: Info | |
| # GatewayClass configuration | |
| gatewayClass: | |
| name: haproxy | |
| create: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| helm install haproxy-unified-gateway haproxytech/haproxy-unified-gateway | |
| NAME: haproxy-unified-gateway | |
| LAST DEPLOYED: Fri Mar 06 2026 | |
| NAMESPACE: haproxy-unified-gateway | |
| STATUS: deployed | |
| REVISION: 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| kubectl get pods --namespace haproxy-unified-gateway | |
| NAME READY STATUS RESTARTS AGE | |
| haproxy-unified-gateway-55744dfb75-46ncx 1/1 Running 0 45s |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| helm upgrade haproxy-unified-gateway haproxytech/haproxy-unified-gateway \ | |
| --namespace haproxy-unified-gateway \ | |
| --values values.yaml \ | |
| --version 1.1.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment