Edit

Share via


Enable cookie-based affinity with Application Gateway

As outlined in the Azure Application Gateway documentation, Application Gateway supports cookie-based affinity. This support means that the service can direct subsequent traffic from a user session to the same server for processing.

Tip

Consider Application Gateway for Containers for your Kubernetes ingress solution. For more information, see Application Gateway for Containers session affinity overview.

Example

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: guestbook
  annotations:
    kubernetes.io/ingress.class: azure/application-gateway
    appgw.ingress.kubernetes.io/cookie-based-affinity: "true"
spec:
  rules:
  - http:
      paths:
      - backend:
          serviceName: frontend
          servicePort: 80