This project is designed to deploy and manage applications using Kubernetes. It provides a scalable and efficient way to manage containerized applications.
- Kubernetes installed
- kubectl command-line tool
- Access to a Kubernetes cluster
-
Clone the repository:
git clone https://github.com/yourusername/your-kubernetes-project.git cd your-kubernetes-project
-
Apply the Kubernetes configurations:
kubectl apply -f k8s/
-
To check the status of your pods:
kubectl get pods
-
To access your application:
kubectl port-forward svc/your-service-name 8080:80
- Configuration files are located in the
k8s/
directory. - Modify the YAML files as needed for your environment.
- Fork the repository.
- Create a new branch (
git checkout -b feature-branch
). - Make your changes and commit them (
git commit -m 'Add new feature'
). - Push to the branch (
git push origin feature-branch
). - Create a new Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.
- Thanks to the Kubernetes community for their support and resources.