├── 01-deploying-traefik └── values.yaml ├── 02-deploying-sample ├── 00-namespace.yaml ├── 01-deployment.yaml └── 03-ingressroute.yaml ├── 03-wrr ├── 00-traefik-service.yaml ├── 01-ingressroute.yaml ├── 03-custome-header.yaml └── 04-ingressroute-header.yaml ├── 04-mirroring ├── 00-traefik-service.yaml └── 01-ingressroute.yaml ├── 05-sticky-session ├── 00-traefik-service.yaml └── 01-ingressroute.yaml ├── 06-nested-healthchecks ├── traefik-configs.yaml └── values.yaml └── README.md /01-deploying-traefik/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traefik-workshops/traefik-workshop-2/HEAD/01-deploying-traefik/values.yaml -------------------------------------------------------------------------------- /02-deploying-sample/00-namespace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: v1 3 | kind: Namespace 4 | metadata: 5 | name: app -------------------------------------------------------------------------------- /02-deploying-sample/01-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traefik-workshops/traefik-workshop-2/HEAD/02-deploying-sample/01-deployment.yaml -------------------------------------------------------------------------------- /02-deploying-sample/03-ingressroute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traefik-workshops/traefik-workshop-2/HEAD/02-deploying-sample/03-ingressroute.yaml -------------------------------------------------------------------------------- /03-wrr/00-traefik-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traefik-workshops/traefik-workshop-2/HEAD/03-wrr/00-traefik-service.yaml -------------------------------------------------------------------------------- /03-wrr/01-ingressroute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traefik-workshops/traefik-workshop-2/HEAD/03-wrr/01-ingressroute.yaml -------------------------------------------------------------------------------- /03-wrr/03-custome-header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traefik-workshops/traefik-workshop-2/HEAD/03-wrr/03-custome-header.yaml -------------------------------------------------------------------------------- /03-wrr/04-ingressroute-header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traefik-workshops/traefik-workshop-2/HEAD/03-wrr/04-ingressroute-header.yaml -------------------------------------------------------------------------------- /04-mirroring/00-traefik-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traefik-workshops/traefik-workshop-2/HEAD/04-mirroring/00-traefik-service.yaml -------------------------------------------------------------------------------- /04-mirroring/01-ingressroute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traefik-workshops/traefik-workshop-2/HEAD/04-mirroring/01-ingressroute.yaml -------------------------------------------------------------------------------- /05-sticky-session/00-traefik-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traefik-workshops/traefik-workshop-2/HEAD/05-sticky-session/00-traefik-service.yaml -------------------------------------------------------------------------------- /05-sticky-session/01-ingressroute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traefik-workshops/traefik-workshop-2/HEAD/05-sticky-session/01-ingressroute.yaml -------------------------------------------------------------------------------- /06-nested-healthchecks/traefik-configs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traefik-workshops/traefik-workshop-2/HEAD/06-nested-healthchecks/traefik-configs.yaml -------------------------------------------------------------------------------- /06-nested-healthchecks/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traefik-workshops/traefik-workshop-2/HEAD/06-nested-healthchecks/values.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/traefik-workshops/traefik-workshop-2/HEAD/README.md --------------------------------------------------------------------------------