Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sir-chester-king/python-application-using-kubernetes-volumes-emptydir
This Python application uses an ephemeral volume in pod to store and manage data.
https://github.com/sir-chester-king/python-application-using-kubernetes-volumes-emptydir
docker docker-container docker-image dockerfile emptydir emptydir-volume kubernetes kubernetes-cluster kubernetes-deployment kubernetes-manifests python
Last synced: 12 days ago
JSON representation
This Python application uses an ephemeral volume in pod to store and manage data.
- Host: GitHub
- URL: https://github.com/sir-chester-king/python-application-using-kubernetes-volumes-emptydir
- Owner: Sir-Chester-King
- License: mit
- Created: 2024-08-28T12:50:53.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-07T15:09:06.000Z (2 months ago)
- Last Synced: 2024-10-10T16:21:20.026Z (about 1 month ago)
- Topics: docker, docker-container, docker-image, dockerfile, emptydir, emptydir-volume, kubernetes, kubernetes-cluster, kubernetes-deployment, kubernetes-manifests, python
- Language: Python
- Homepage:
- Size: 1.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python Application Using **Kubernetes Cluster Volumes EmptyDir{}**
## Table Of Contents
* [Description](#description)
* [Main Application](#main_app)
- [Store_Data](#store_data)
* [Dockerfile](#dockerfile)
- [Command Dockerfile](#command_file)
- [Build Docker Image](#build_image)
* [Kubernetes Cluster](#kube_cluster)
- [Kubernetes Components](#kube_components)
- [Kubernetes API Server](#kube_api)
- [Kubernetes Objects](#kube_objects)
- [Kubernetes Volumes EmptyDir{}](#kube_volumes_emptydir)
- [Kubectl](#kube_kubectl)
- [Minikube - Local Kubernetes Cluster Instance](#minikube)
* [Run Python Application In A Pod](#run_python_app_pod)---
## Description
This application enables users to store and view personal information, including Name, Surname, Address, and Phone Number, in a file.
The data is stored in a file within a pod's volume, utilizing the emptyDir volume specification.
The primary goal of this application is to demonstrate the deployment, execution, and management of data storage within a pod’s volume in a Kubernetes environment.
It operates via a command-line interface (CLI) rather than a graphical user interface (GUI).
Application is structured as:
* Language: [Python](https://www.python.org)
* Container Engine: [Docker](https://www.docker.com)
* Orchestrator: [Kubernetes](https://kubernetes.io)The Tree of application is:
- **`Project_Pythony/`**: The root directory of the project.
- **`Main_Code/`**: Contains the main application logic.
- **`Classes/`**: Includes additional modules used by the main application.
- **`View_Users/`**: Manages user view list functionality.
- **`Store_Data/`**: Handles data storage operations.
- **`Create_Users/`**: Manages user creation functionality.
- **`Dockerfile`**: Defines the Docker container setup for the project.
- **`Kubernetes_Deployment.yaml`**: Define the Kubernetes Cluster setup for the pods.
- **`README.md`**: Documentation for the project.
---
## Main Application
The application in the main page, show to user a menu list to create a new user, or view the list of all users.
The input is via Terminal command.```
menu_app = {
"1": "Create new user",
"2": "View list users"
}
```As you can see, it was used a dictionary to use the pair Key: Values to bind the option with the
action.
It be used a match statesman to call the proper function based on user's choice:```
# Call the property function based on the user's chosen option.
match option_chosen:
case "1":
Create_Users.Create_users.new_user()
case "2":
View_Users.View_users.list_users_volume()
case _:
return 0
```
### Store_Data
This function is structured for storing the data of new users into the file into a Pod's Volume.
It defined where the data will be stored (the path is harded code inside the code).```
# This is the PATH inside the Docker Container Volume
path_volume_docker = "/Docker_Directory/Storage/User_Data.txt"# Going one level up -> /Docker_Directory/Storage/
directory_storage = os.path.dirname(path_volume_docker)# Check if the directory inside the volume exist or not.
if not os.path.exists(directory_storage):
print(f"The directory {directory_storage} was not found")# Try statesman to read all the file "USER_DATA" into the Docker volume
try:
with open(path_volume_docker, 'r') as storage_file:
content = storage_file.read()
print("List Users:", end="\n")
print(content)
```---
## Dockerfile
This file contain all commands used to build the Image that Containers will use.
The Image is a snapshot of the source code, and when it did build, the Image is in read-only mode, and you cannot change the code. If you want to create a container based to the new image, you must re-build the image.--
### Command Dockerfile
The commands used to build the image that it'll be used to create the container that has the code, you must declare some
parameters.
In this image it used the following commands:
- FROM
- LABEL
- WORKDIR
- COPY
- ENV
- RUN
- CMDThe FROM command it used to pull all dependenties based on the image that we pass as a parameter.
In this case, we defined an image for a Python application, therefore with this command, we pull oll the dependenties from the official [Python Image](https://hub.docker.com/_/python), stored in
the [Docker Hub](https://hub.docker.com).```
FROM python:latest
```The word " latest " define to use the latest versione of the image we want to pull.
The WORKDIR command it used to define our work directory that all the next following command
in the Dockerfile will be executed.```
WORKDIR /Docker_Directory
```The COPY command it used to say to Docker, that it must copy all the file stored in the same
directory of Dockerfile, to some directory in the container (that we pecified).```
COPY . .
```
The ENV command it used to set the wanted variable to be include the wanted directory.
```
# Set the PYTHONPATH to include the "Docker_Directory" directory
ENV PYTHONPATH "${PYTHONPATH}:/Docker_Directory"
```
The RUN command it used to run a specific command in the Container filesystem.
```
# Ensure the storage directory exists
RUN mkdir -p /Docker_Directory/Storage
```
The CMD command it used to say to Docker to run the command we specified in the dockerfile.
```
CMD ["python", "./Main_Code/main.py"]
```--
### Build Docker Image
To build image, you must use the BUILD command, and pass where the dockerfile is stored, as a parameter.```
# If you ware in the same directory (as path) of where Dockerfile is stored, you can pass it as " . " argument.
docker build -t python_app_image .
```
To view the image was builted, you can view with the following command:```
docker image ls
```---
## Kubernetes Cluster
[Kubernetes](https://kubernetes.io), also known as K8s, is an open source system for automating deployment, scaling, and management of containerized applications.
A Kubernetes cluster consists of a control plane plus a set of worker machines, called nodes, that run containerized applications.
Every cluster needs at least one worker node in order to run Pods.The worker node(s) host the Pods that are the components of the application workload. The control plane manages the worker nodes and the Pods in the cluster.
In production environments, the control plane usually runs across multiple computers and a cluster usually runs multiple nodes, providing fault-tolerance and high availability.For more details: [Cluster Architecture](https://kubernetes.io/docs/concepts/architecture/)
--
### Kubernetes Components
A Kubernetes cluster consists of a control plane and one or more worker nodes.
Here's a brief overview of the main components in the Control Plane:
- kube-apiserver: The core component server that exposes the Kubernetes HTTP API.
- etcd: Consistent and highly-available key value store for all API server data.
- kube-scheduler: Looks for Pods not yet bound to a node, and assigns each Pod to a suitable node.
- kube-controller-manager: Runs controllers to implement Kubernetes API behavior.Here's a brief overview of the main components in the Node Plane:
- kubelet: Ensures that Pods are running, including their containers.
For more detail: [Kubernetes Components](https://kubernetes.io/docs/concepts/overview/components/)
---
## Kubernetes Server API
The core of Kubernetes' control plane is the API server. The API server exposes an HTTP API that lets end users, different parts of your cluster, and external components communicate with one another.
Most operations can be performed through the kubectl command-line interface or other command-line tools, such as kubeadm, which in turn use the API.
However, you can also access the API directly using REST calls.
Kubernetes provides a set of client libraries for those looking to write applications using the Kubernetes API.For more detail: [Kubernetes API](https://kubernetes.io/docs/concepts/overview/kubernetes-api/)
--
## Kubernetes Objects
Kubernetes objects are persistent entities in the Kubernetes system.
Kubernetes uses these entities to represent the state of your cluster.
Specifically, they can describe:
- What containerized applications are running (and on which nodes)
- The resources available to those applications
- The policies around how those applications behave, such as restart policies, upgrades, and fault-toleranceFor more detail: [Kubernetes Objects](https://kubernetes.io/docs/concepts/overview/working-with-objects/)
--
## Kubernetes Volumes EmptyDir{}
The Kubernetes offers the possibilities to store data in a Volume.
In this case it used the EmptyDir{} Volume..
For a Pod that defines an EmptyDir volume, the volume is created when the Pod is assigned to a node. As the name says, the EmptyDir volume is initially empty. All containers in the Pod can read and write the same files in the emptyDir volume, though that volume can be mounted at the same or different paths in each container.
When a Pod is removed from a node for any reason, the data in the EmptyDir is deleted permanently.For more detail: [EmprtyDir{} Volume](https://kubernetes.io/docs/concepts/storage/volumes/#emptydir)
--
## Kubectl
Kubernetes provides a command line tool for communicating with a Kubernetes cluster's control plane, using the Kubernetes API.
This tool is Kubectl.
For installation instructions, see [Installing kubectl](https://kubernetes.io/docs/tasks/tools/#kubectl); for a quick guide, see the cheat sheet.For more detail: [Kubectl](https://kubernetes.io/docs/reference/kubectl/)
--
## Minikube - Local Kubernetes Cluster Instance
Minikube is a tool that lets you run Kubernetes locally.
Minikube runs an all-in-one or a multi-node local Kubernetes cluster on your personal computer (including Windows, macOS and Linux PCs) so that you can try out Kubernetes, or for daily development work.
To install Minikube you can follow the official guide: [Get Start](https://minikube.sigs.k8s.io/docs/start/)
For more detail: [Minikube](https://minikube.sigs.k8s.io/docs/)
After installation of Minikube, to start a local Kubernetes Cluster, follow the official guide: [Start Cluster](https://kubernetes.io/docs/tutorials/hello-minikube/)---
### Run Python Application In A Pod
To run the python app, we need execute some steps before to do it.
- Run Minikube - Local Kubernetes Cluster Instance
- Verify the status of local Cluster
- Build the Docker image
- Push the Docker image to a public repository
- Deploy the Kubernetes Deployment
- Verify the status of deployments and pods
- Run the appllication1) Run Minikube - Local Kubernetes Cluster Instance
Before run the application, we need to start our local Kubernetes Cluster.
To do that, after the minikube installation, start the minikube with the following command:
```
minikube start
```2) Verify the status of local Cluster
To verify the integrity of the local cluster, you have two ways:
- Minikube command
- Kubectl command2.1) Using the minikube command, you must use:
```
minikube status
```
You will able to see:
![Alt text](Readme_Screen/minikube_status.png)
This explain is all up and running.2.2) Using Kubectl command, you must use:
```
kubectl cluster-info
```You will able to see:
![Alt text](Readme_Screen/cluster_info.png)
This explain is all up and running.3) Build the Docker Image
Tag the name of image a with the name the DockerHub Public Repository, that will be used by Kubernetes Deployment (in mu case sirchesterking/kubernetes-volumes-emprydir).
To build the Docker image, you must use the following command:
```
# We use the direectory " . ", 'cause when apply this command, we are int the same directory of Dockerfile.
docker buil -t sirchesterking/kubernetes-volumes-emprydir .
```To view the list of image:
```
docker image ls
```4) Push the Docker image to a public repository
To use the image for our pods in the Cluster, we must use a public repository to pull the image and use it in the container's pods.
In this case, we use the public repository on [Docker Hub](https://hub.docker.com).
To pull the image, we need an accessible repository, so make sure to create a public repository.
Old Image: python_app_image
New Image: sirchesterking/kubernetes-volumes-emprydir (name of public repository)Before to push the image in the public repository, you must login via terminal to docker hub adn provide username and password:
```
docker login
```After that, you can push the image in the public repository, using the following command:
```
# We provided the name:tag
docker push sirchesterking/kubernetes-volumes-emprydir
```5) Deploy the Kubernetes Deployment
After the push of the image in the public repository, you can deploy the Kubernetes Deployment Object.
To do that, you must create, before, the Deployment.yaml file, that will contain all the attributes and the specification of the desired behavior of the Deployment.
To review all the components inside the Deployment.yaml file, you can view [here](https://github.com/Sir-Chester-King/Python-Application-Using-Kubernetes-Volumes-EmptyDir/blob/main/Kubernetes_Deployment.yaml).
To deploy the Deployment Object in the Kubernetes Cluster, you must use:
```
# After the -f option, you must provide the name of the Deployment.yaml file.
kubectl apply -f Kubernetes_Deployment.yaml
```You will able to see via terminal:
![Alt text](Readme_Screen/deploy_create_terminal.png)6) View the Kubernetes Deployment
To view the Deployment, you have two ways:
- Kubectl command
- Minikube Dashboard6.1) Kubectl command
Using the Kubectl command, you must use:
```
kubectl get deployment
```
You will able to see via terminal something like this:
![Alt text](Readme_Screen/get_deploy_terminal.png)6.2) Minikube Dashboard
To view the deployment via minikube, you can you the dashboard command, provided by minikube tool.
To check, you must use:
```
minikube dashboard
```
You will able to see via terminal:
![Alt text](Readme_Screen/minikube_dashboard_terminal.png)And after that, you can check it via browser using the URL provided in the terminal:
![Alt text](Readme_Screen/minikube_dashboard_browser.png)To view the Pods that are created automatically after the deployment (that's the power of the Kubernetes Orchestrator), you must use:
```
kubectl get pod
```7) Run the appllication
After you did all the above steps, you can run the python application.
To run the app inside the pod, inside the Kubernetes cluster, you must execute some commands via terminal:
```
kubectl get pod
```
To get the pod's name that you will use to run the python application.
After:
```
kubectl exec -it -- /bin/bash
```
Where:
- pod-name: Replace this with the actual name of your pod.
- it: Combines the -i and -t flags to make the session interactive, like a terminal.
- /bin/bash: Starts a Bash shell. If your container uses a different shell (like sh), you can replace /bin/bash with that.You will able to see via terminal:
![Alt text](Readme_Screen/bash_container_tree.png)As you can see, you now have access to a container inside the Pod.
Go under the Main_Code sirectory using:
```
cd Main_Code/
```Nnow, you can run the python application:
```
python Main_Code/main.py
```
![Alt text](Readme_Screen/run_app_container.png)
![Alt text](Readme_Screen/list_users_container.png)If you have a multiple conatiner in the same Pod (because a Pod is a VM that can contain multiple containers), you must use:
```
kubectl exec -it -c -- /bin/bash
```
To list the containers inside the Pod, you must use:
```
kubectl describe pod
```In the output, look for a section like this:
![Alt text](Readme_Screen/container_pod_describe.png)As you can see, in the output of the code, it's able to see the mounted volume in the container
![Alt text](Readme_Screen/mount_view_1.png)And
![Alt text](Readme_Screen/mount_view_2.png)---
## Author- Nicola Ricciardi