feat: Add GitHub Action and Helm chart for deployment#1
Open
acarmisc wants to merge 2 commits into
Open
Conversation
This commit introduces a GitHub Action workflow to build and publish the CLI Docker image to the GitHub Container Registry. It also adds a Helm chart to deploy the application stack to a Kubernetes cluster. The Helm chart is configurable to allow enabling/disabling the PostgreSQL dependency and providing connection details for an external database.
This commit enhances the CI/CD pipeline to automate versioning of Docker images and Helm charts based on Git tags. - The GitHub Action workflow is updated to trigger on pushes to tags (e.g., `v1.2.3`). - The Docker image for the `cli` service is now tagged with the Git tag. - A new job is added to the workflow to release the Helm chart. This job updates the `appVersion` in `Chart.yaml`, packages the chart, and creates a GitHub Release. - The Helm chart is updated to include a Kubernetes Job for running database workflow imports. This makes the deployment process more robust.
This file contains hidden or 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
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.
This commit introduces a GitHub Action workflow to build and publish the CLI Docker image to the GitHub Container Registry.
It also adds a Helm chart to deploy the application stack to a Kubernetes cluster. The Helm chart is configurable to allow enabling/disabling the PostgreSQL dependency and providing connection details for an external database.