Skip to content

Example Kubernetes setup with Traefik infront of a Python Flask and FastAPI app, see link for original walkthrough by Gerald Croes

Notifications You must be signed in to change notification settings

Hedde/k8s-traefik-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

K8S with an API Gateway

This is a proof-of-concept for running managed containers within a kubernetes cluster with Traefik infront.

start kubernetes

minikube start

set docker context (per terminal) so we can use local docker images

eval $(minikube docker-env)

setup minikube tunnel to make sure we get an external ip

minikube tunnel

setup helm

helm init

install traefik with helm (should be able to pass in values with cli using --set)

helm install --values resource-manifests/values.yml stable/traefik

check external ip with the output of the prenumilate step

kubectl get svc ... --namespace default -w

add the external ip to /etc/hosts

...
XXX.XXX.XXX.XXX  traefik-ui.minikube service-one.minikube service-two.minikube

build the docker containers

cd sa-service-1 && docker build -t sa-service-1 .
cd sa-service-2 && docker build -t sa-service-2 .

create the cluster's deployments, services and ingresses

kubectl apply -f resource-manifests/service-one.yml
kubectl apply -f resource-manifests/service-two.yml

verify

kubectl get all

About

Example Kubernetes setup with Traefik infront of a Python Flask and FastAPI app, see link for original walkthrough by Gerald Croes

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published