-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: Integrate Kubernetes #22
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
… image with specified IMAGE_NAME variable
…y different ports
Feature: documentation
Feature/docs and clean code
Feature: graceful shutdown
thegodenage
approved these changes
Oct 23, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For now I'm cool with the kubernates config, but in the future it would be nice to introduce helm
as well.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary:
This Pull Request introduces Kubernetes configuration files to the project, adding orchestration and management of containerized applications. The following key components have been added:
Added Kubernetes Components:
Namespace (
0_namespace.yaml
): Defines a logical space within the cluster, allowing for better resource isolation and organization.Deployment (
Deployment.yaml
): Manages the deployment of application pods, ensuring desired replicas are running and automatically handling updates and rollbacks.Service (
Service.yaml
): Exposes the deployed application pods, enabling network access and load balancing within the cluster.Service Account (
Service_Account.yaml
): Provides an identity for processes running within pods, allowing access to the Kubernetes API.Role (
Role.yaml
): Defines a set of permissions within the namespace, specifying what actions the service account can perform.Role Binding (
Role_Binding.yaml
): Associates the defined role with the service account, granting it the appropriate permissions.Next Possible Steps:
This PR contains updates from
feature/graceful-shutdown
;If You wish to review, all updates are in
k8s
folder only.