Hi,
for the backend of my cms I need to have sticky sessions. I managed to set these for my whole domain by setting these annotations:
apiVersion: v1
kind: Service
metadata:
name: myservice
annotations:
traefik.ingress.kubernetes.io/affinity: "true"
traefik.ingress.kubernetes.io/session-cookie-name: "sticky"
But I only need to have sticky sessions for a subpath “/admin”. Is it possible to set sticky sessions only for a subpath?.