Image is hosted on quay.io
Koncepts is an application for exercising Kubernetes concepts to newer Kubernetes users, as well as testing various configurations.
A Python Flask application that displays /etc/hostname and other info about the host as an html page. When the application is deployed in k8s, this will be the pod name and other pod info.
The app may be helpful for demos of pod deployments, scaling, deletions, etc.
The service is a Flask Python app running on gunicorn. It is using a Jinja template for the index.html. Please forgive the messy html with inline styles and such.
You can quickly deploy the app in k8s with the following after cloning the repo:
kubectl apply -k kube/base
kubectl apply -k kube/overlays/with-config-files
kubectl apply -k kube/overlays/expose-lb
kubectl apply -k kube/overlays/expose-traefik
The index URL returns an html page that provides information about the container.
The app will also handle requests to any path, log the request, and provide a response.
There are also a few query parameters that you can specify to will cause various status codes and messages to be given in the reponse:
startup_delayparameter looks for a positive integer value, and represents the number of seconds after the python app has started before it will return200responses. Until that time, it will return503response codes.- eg.
$HOSTNAME/test?startup_delay=10will return503responses for 10 seconds. - Default value is
-1, which will immediately return a200on startup.
- eg.
failure_delayparameter works similar tostartup_delay, but will return500status codes after the integer value in seconds beyond the python app starting.- eg.
$HOSTNAME/test?failure_delay=10will return500responses after the first 10 seconds of the app being started. - Default value is
-1, which will never return a500failure. - Note: this parameter is absolute, and has no effect from the value set by
startup_delay.- Example:
$HOSTNAME/test?startup_delay=10&failure_delay=10will never return a200response. Only503prior to 10 seconds, and500after 10 seconds has lapsed.
- Example:
- eg.
readiness_periodandreadiness_durationparameters can be used to set a consistent interval of readiness/unreadiness.readiness_periodexpects a positive integer value, which sets the interval period.readiness_durationalso expects a positive integer, and is the amount of time at the beginning of each period the response will return a200.- eg.
$HOSTNAME/test?readiness_period=10&readiness_duration=5will return a200for the first five seconds of every ten second interval, and a503for the other five seconds. - Note: the readiness parameters only come into effect after
startup_delayandfailure_delaysuccess conditions are met. However, the start time of the intervals is absolute to the startup time of the app.
The following is an example script that will curl the app at one second intervals and return the pod name. This can be used to demonstrate the effects of pod scaling with ReplicaSets or Deployment rollouts.
while [ true ]
do
curl "$HOSTNAME/test?startup_delay=8&failure_delay=45&readiness_period=10&readiness_duration=5"
sleep 1
done