Skip to content

Instantly share code, notes, and snippets.

@haproxytechblog
Last active March 25, 2026 20:06
Show Gist options
  • Select an option

  • Save haproxytechblog/ae47dbf240ce067e327b4bf0a375addb to your computer and use it in GitHub Desktop.

Select an option

Save haproxytechblog/ae47dbf240ce067e327b4bf0a375addb to your computer and use it in GitHub Desktop.
Announcing HAProxy Unified Gateway 1.0
helm repo add haproxytech https://haproxytech.github.io/helm-charts
helm repo update
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.5.0/experimental-install.yaml
# 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
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
kubectl get pods --namespace haproxy-unified-gateway
NAME READY STATUS RESTARTS AGE
haproxy-unified-gateway-55744dfb75-46ncx 1/1 Running 0 45s
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