Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Latest commit

 

History

History
45 lines (31 loc) · 1.41 KB

README.md

File metadata and controls

45 lines (31 loc) · 1.41 KB

Episode 41 : Traefik

  • Hosted by @krisnova
  • Recording date: 2018-07-06

IMAGE ALT TEXT HERE

Table of Contents

  • 00:00:00 - Welcome to TGIK!
  • 00:00:00 - Week in Review

Show Notes

Reference Links

Stateful Application

This is the demo application Kris will use to test ingress with Traefik.

Create DB

kubectl exec -it $(kubectl get po | grep postgres | cut -d " " -f 1) -- bash -c "psql -c 'CREATE DATABASE stateful_app_development;' -U postgres"

Scale deployment

kubectl scale deploy/statefulapp --replicas 1