Skip to content

sleyer/kubernetes-playground

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

This is a simple webserver based on python to return a simple "Hello World" as html.

Building the container

To build the webserver as a container, run:

docker build --tag python-webserver .

Running the container

To run the container, execute:

 docker run --publish 8080:8080 python-webserver

This exposes the container to the port 8080. If you want the container to listen on a different port, change the first port variable accordingly.

Deploying it into kubernetes

local testsetup with minikube

Setup minikube

You need to run these commands once on your machine:

# no ingresses without this:
minikube addons enable ingress 

Run in minikube

Build the image for the minikube docker environment:

eval $(minikube docker-env)
docker build --tag python-webserver .

Now, you can run it in minikube:

kubectl apply -k ./Kubernetes/base

And when you don't need it anymore, delete it:

kubectl delete -k ./Kubernetes/base

Notes

This is a simple test-setup to practice Kubernetes. Therefore, both container logic and kubernetes config are kept in the same repository to keep matters simple. In a real world example, I would spread this out over two repositories.

The webserver would get versioned via tags. Based upon these, tools like github actions (or a dedicated jenkins) could automatically build it when new tags are being created.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors