Skip to content

For the complete documentation index, see llms.txt. Markdown versions of all docs pages are available by appending .md to any docs URL.

Page as Markdown

    

kgateway

Review Helm values for the kgateway Helm chart.

For more information about using this Helm chart, see the Helm installation guide.

Values

Key Type Description Default
affinityobjectSet affinity rules for pod scheduling, such as ’nodeAffinity:’. This field is deprecated in favor of controller.affinity and will be removed in v3.0.{}
commonLabelsobjectAdditional labels to add to all resources created by the Helm chart.{}
controllerobjectConfigure the kgateway control plane deployment.{"affinity":null,"extraEnv":{},"horizontalPodAutoscaler":{},"image":{"pullPolicy":"","registry":"","repository":"kgateway","tag":""},"logLevel":"info","nodeSelector":null,"podAnnotations":null,"podDisruptionBudget":{},"podSecurityContext":null,"priorityClassName":"","prometheusAnnotations":true,"readinessProbe":{},"replicaCount":1,"resources":null,"securityContext":null,"service":{"allocateLoadBalancerNodePorts":null,"annotations":{},"clusterIP":"","clusterIPs":[],"enabled":true,"externalIPs":[],"externalName":"","externalTrafficPolicy":"","extraLabels":{},"healthCheckNodePort":null,"internalTrafficPolicy":"","ipFamilies":[],"ipFamilyPolicy":"","loadBalancerClass":"","loadBalancerIP":"","loadBalancerSourceRanges":[],"ports":{"grpc":9977,"health":9093,"metrics":9092},"publishNotReadyAddresses":false,"sessionAffinity":"","sessionAffinityConfig":{},"trafficDistribution":"","type":"ClusterIP"},"serviceMonitor":{"annotations":{},"enabled":false,"extraLabels":{}},"startupProbe":{},"strategy":{},"tolerations":null,"topologySpreadConstraints":null,"verticalPodAutoscaler":{},"xds":{"tls":{"enabled":false}}}
controller.affinitystringSet affinity rules for controller pod scheduling.nil
controller.extraEnvobjectAdd extra environment variables to the controller container.{}
controller.horizontalPodAutoscalerobjectSet horizontal pod autoscaler for the controller. Note that this does not affect the data plane. The scaleTargetRef is automatically configured to target the controller deployment. E.g.: horizontalPodAutoscaler: minReplicas: 1 maxReplicas: 5 metrics: - type: Resource resource: name: cpu target: type: Utilization averageUtilization: 80{}
controller.imageobjectConfigure the controller container image.{"pullPolicy":"","registry":"","repository":"kgateway","tag":""}
controller.image.pullPolicystringSet the image pull policy for the controller.""
controller.image.registrystringSet the image registry for the controller.""
controller.image.repositorystringSet the image repository for the controller."kgateway"
controller.image.tagstringSet the image tag for the controller.""
controller.logLevelstringSet the log level for the controller."info"
controller.nodeSelectorstringSet node selector labels for controller pod scheduling.nil
controller.podAnnotationsstringAdd annotations to the controller pods.nil
controller.podDisruptionBudgetobjectSet pod disruption budget for the controller. Note that this does not affect the data plane. E.g.: podDisruptionBudget: minAvailable: 100%{}
controller.podSecurityContextstringSet the pod-level security context for the controller pod.nil
controller.priorityClassNamestringSet the priority class name for the controller pod.""
controller.prometheusAnnotationsboolAdd Prometheus pod annotations (prometheus.io/scrape, prometheus.io/path, prometheus.io/port) to the controller pods so a vanilla Prometheus deployment using pod annotation discovery can scrape the controller metrics endpoint. See also https://kgateway.dev/docs/envoy/latest/observability/otel-stack/. Set to false to omit these annotations.true
controller.readinessProbeobjectConfigure the readiness probe for the controller container. Overrides the default probe when set. E.g.: readinessProbe: httpGet: path: /readyz port: 9093 initialDelaySeconds: 1 periodSeconds: 10 Probe settings are deep merged with the above config. Custom exec, grpc, or tcpSocket handlers replace the default httpGet handler.{}
controller.replicaCountintSet the number of controller pod replicas.1
controller.resourcesstringConfigure resource requests and limits for the controller container.nil
controller.securityContextstringSet the container-level security context for the controller container.nil
controller.serviceobjectController service configuration.{"allocateLoadBalancerNodePorts":null,"annotations":{},"clusterIP":"","clusterIPs":[],"enabled":true,"externalIPs":[],"externalName":"","externalTrafficPolicy":"","extraLabels":{},"healthCheckNodePort":null,"internalTrafficPolicy":"","ipFamilies":[],"ipFamilyPolicy":"","loadBalancerClass":"","loadBalancerIP":"","loadBalancerSourceRanges":[],"ports":{"grpc":9977,"health":9093,"metrics":9092},"publishNotReadyAddresses":false,"sessionAffinity":"","sessionAffinityConfig":{},"trafficDistribution":"","type":"ClusterIP"}
controller.service.allocateLoadBalancerNodePortsstringAllocate load balancer node ports.nil
controller.service.annotationsobjectService annotations.{}
controller.service.clusterIPstringCluster IP address.""
controller.service.clusterIPslistCluster IPs for dual-stack.[]
controller.service.enabledboolCreate the controller Service.true
controller.service.externalIPslistExternal IP addresses.[]
controller.service.externalNamestringExternal name for ExternalName services.""
controller.service.externalTrafficPolicystringExternal traffic policy.""
controller.service.extraLabelsobjectExtra labels for the Service.{}
controller.service.healthCheckNodePortstringHealth check node port.nil
controller.service.internalTrafficPolicystringInternal traffic policy.""
controller.service.ipFamilieslistIP families.[]
controller.service.ipFamilyPolicystringIP family policy.""
controller.service.loadBalancerClassstringLoad balancer class.""
controller.service.loadBalancerIPstringLoad balancer IP address.""
controller.service.loadBalancerSourceRangeslistAllowed source ranges for load balancer.[]
controller.service.portsobjectService ports.{"grpc":9977,"health":9093,"metrics":9092}
controller.service.publishNotReadyAddressesboolPublish not ready addresses.false
controller.service.sessionAffinitystringSession affinity.""
controller.service.sessionAffinityConfigobjectSession affinity configuration.{}
controller.service.trafficDistributionstringTraffic distribution.""
controller.service.typestringService type."ClusterIP"
controller.serviceMonitorobjectthat tells Prometheus how to discover and scrape the controller metrics Service.{"annotations":{},"enabled":false,"extraLabels":{}}
controller.serviceMonitor.annotationsobjectServiceMonitor annotations.{}
controller.serviceMonitor.enabledboolCreate the controller ServiceMonitor when the Prometheus Operator CRDs (monitoring.coreos.com/v1) are installed in the cluster.false
controller.serviceMonitor.extraLabelsobjectExtra labels for the ServiceMonitor.{}
controller.startupProbeobjectConfigure the startup probe for the controller container. Overrides the default probe when set. E.g.: startupProbe: httpGet: path: /readyz port: 9093 initialDelaySeconds: 0 periodSeconds: 1 failureThreshold: 600 Probe settings are deep merged with the above config. Custom exec, grpc, or tcpSocket handlers replace the default httpGet handler.{}
controller.strategyobjectChange the rollout strategy from the Kubernetes default of a RollingUpdate with 25% maxUnavailable, 25% maxSurge. E.g., to recreate pods, minimizing resources for the rollout but causing downtime: strategy: type: Recreate E.g., to roll out as a RollingUpdate but with non-default parameters: strategy: type: RollingUpdate rollingUpdate: maxSurge: 100%{}
controller.tolerationsstringSet tolerations for controller pod scheduling.nil
controller.topologySpreadConstraintsstringSet topology spread constraints for controller pod scheduling.nil
controller.verticalPodAutoscalerobjectSet vertical pod autoscaler for the controller. Note that this does not affect the data plane. The targetRef is automatically configured to target the controller deployment. E.g.: verticalPodAutoscaler: updatePolicy: updateMode: Auto resourcePolicy: containerPolicies: - containerName: “*” minAllowed: cpu: 100m memory: 128Mi{}
controller.xdsobjectConfigure TLS settings for the xDS gRPC servers.{"tls":{"enabled":false}}
controller.xds.tls.enabledboolEnable TLS encryption for xDS communication. When enabled, the xDS server (port 9977) uses TLS. You must create a Secret named ‘kgateway-xds-cert’ in the kgateway installation namespace. The Secret must be of type ‘kubernetes.io/tls’ with ’tls.crt’, ’tls.key’, and ‘ca.crt’ data fields present.false
deploymentAnnotationsobjectAdd annotations to the kgateway deployment.{}
discoveryNamespaceSelectorslistList of namespace selectors (OR’ed): each entry can use ‘matchLabels’ or ‘matchExpressions’ (AND’ed within each entry if used together). Kgateway includes the selected namespaces in config discovery. For more information, see the docs https://kgateway.dev/docs/latest/install/advanced/#namespace-discovery.[]
fullnameOverridestringOverride the full name of resources created by the Helm chart, which is ‘kgateway’. If you set ‘fullnameOverride: “foo”, the full name of the resources that the Helm release creates become ‘foo’, such as the deployment, service, and service account for the kgateway control plane in the kgateway-system namespace.""
gatewayClassParametersRefsobjectMap of GatewayClass names to GatewayParameters references that will be set on the default GatewayClasses managed by kgateway. Each entry must define both the name and namespace of the GatewayParameters resource. The default GatewayClasses managed by kgateway are: - kgateway - kgateway-waypoint Example: gatewayClassParametersRefs: kgateway: name: shared-gwp namespace: kgateway-system{}
imageobjectConfigure the default container image for the components that Helm deploys. You can override these settings for each particular component in that component’s section, such as ‘controller.image’ for the kgateway control plane. If you use your own private registry, make sure to include the imagePullSecrets.{"pullPolicy":"IfNotPresent","registry":"cr.kgateway.dev/kgateway-dev","tag":""}
image.pullPolicystringSet the default image pull policy."IfNotPresent"
image.registrystringSet the default image registry."cr.kgateway.dev/kgateway-dev"
image.tagstringSet the default image tag.""
imagePullSecretslistSet a list of image pull secrets for Kubernetes to use when pulling container images from your own private registry instead of the default kgateway registry.[]
nameOverridestringAdd a name to the default Helm base release, which is ‘kgateway’. If you set ’nameOverride: “foo”, the name of the resources that the Helm release creates become ‘kgateway-foo’, such as the deployment, service, and service account for the kgateway control plane in the kgateway-system namespace.""
nodeSelectorobjectSet node selector labels for pod scheduling, such as ‘kubernetes.io/arch: amd64’. This field is deprecated in favor of controller.nodeSelector and will be removed in v3.0.{}
podAnnotationsobjectAdd annotations to the kgateway pods. This field is deprecated in favor of controller.podAnnotations and will be removed in v3.0.{}
podSecurityContextobjectSet the pod-level security context. For example, ‘fsGroup: 2000’ sets the filesystem group to 2000. This field is deprecated in favor of controller.podSecurityContext and will be removed in v3.0.{}
policyMergeobjectPolicy merging settings. Currently, TrafficPolicy’s extAuth, extProc, and transformation policies support deep merging. E.g., to enable deep merging of extProc policy in TrafficPolicy: policyMerge: trafficPolicy: extProc: DeepMerge{}
resourcesobjectConfigure resource requests and limits for the container, such as ’limits.cpu: 100m’ or ‘requests.memory: 128Mi’. This field is deprecated in favor of controller.resources and will be removed in v3.0.{}
securityContextobjectSet the container-level security context, such as ‘runAsNonRoot: true’. This field is deprecated in favor of controller.securityContext and will be removed in v3.0.{}
serviceAccountobjectConfigure the service account for the deployment.{"annotations":{},"create":true,"name":""}
serviceAccount.annotationsobjectAdd annotations to the service account.{}
serviceAccount.createboolSpecify whether a service account should be created.true
serviceAccount.namestringSet the name of the service account to use. If not set and create is true, a name is generated using the fullname template.""
tolerationslistSet tolerations for pod scheduling, such as ‘key: “nvidia.com/gpu”’. This field is deprecated in favor of controller.tolerations and will be removed in v3.0.[]
topologySpreadConstraintslistSet topology spread constraints for pod scheduling. This field is deprecated in favor of controller.topologySpreadConstraints and will be removed in v3.0. E.g.: topologySpreadConstraints: - maxSkew: 1 topologyKey: topology.kubernetes.io/zone whenUnsatisfiable: DoNotSchedule labelSelector: matchLabels: app.kubernetes.io/name: kgateway[]
validationobjectConfigure validation behavior for route and policy safety checks in the control plane. This setting determines how invalid configuration is handled to prevent security bypasses and to maintain multi-tenant isolation.{"level":"standard"}
validation.levelstringValidation level. Accepted values: “standard” or “strict” (case-insensitive). Standard replaces invalid routes with a direct 500 response and continues applying valid configuration. Strict adds xDS preflight validation and blocks snapshots that would NACK in Envoy. Default is “standard”."standard"
waypointobjectEnable the waypoint integration. This enables kgateway to translate istio waypoints and use kgateway as a waypoint in an Istio Ambient service mesh setup.{"enabled":false}
Was this page helpful?