This repository uses Kubestack. Kubestack is the open source GitOps framework for teams that want to automate infrastructure, not reinvent automation.
- Cluster infrastructure and cluster services are defined using Terraform modules.
- Popular cluster services are available from the Terraform module catalog.
- Both cluster and cluster service modules follow the Kubestack inheritance model to prevent configuration drift between environments.
- All changes follow the same four-step process.
Full framework documentation is available online.
To make changes to the Kubernetes cluster(s), supporting infrastructure or the Kubernetes services defined in this repository follow the Kubestack GitOps process. The GitOps process ensures that changes are safely applied by first reviewing the proposed changes, then validating the changes against the ops environment and finally promoting the changes to be applied against the apps environment by setting a tag.
To accelerate the developer workflow an auto-updating development environment can be run on localhost using the kbst local apply
command.
-
Change
Make changes to the configuration in a new branch. Commit the changed configuration and push your branch. The pipeline runs
terraform plan
against the ops workspace.# checkout a new branch from main git checkout -b examplechange main # make your changes # commit your changes git commit # write a meaningful commit message # push your changes git push origin examplechange
-
Review
Request a peer review of your changes. Team members review the changes and the Terraform plan. If reviewers require changes, make additional commits in the branch.
# make sure you're in the correct branch git checkout examplechange # make changes required by the review # commit and push the required changes git commit # write a meaningful commit message git push origin examplechange
-
Merge
If approved, merge your changes to main, to apply them against the ops environment. After applying to ops was successful, the pipeline runs Terraform plan against the apps environment.
# you can merge on the commandline # or by merging a pull request git checkout main git merge examplechange git push origin main
-
Promote
Review the previous apps environment plan and tag the merge commit to promote the same changes to the apps environment.
# make sure you're on the correct commit git checkout main git pull git log -1 # if correct, tag the current commit # any tag prefixed with `apps-deploy-` # will trigger the pipeline git tag apps-deploy-$(date -I)-0 # in case of multiple deploys on the same day, # increase the counter # e.g. git tag apps-deploy-2020-05-14-1
In case of the automation being unavailable, upgrades requiring manual steps or in disaster recovery scenarios run Terraform and the cloud CLI locally. Kubestack provides container images bundling all dependencies to use for both automated and manual operations.
-
Exec into container
# Build the container image docker build -t kubestack . # Exec into the container image # add docker socket mount for local dev # -v /var/run/docker.sock:/var/run/docker.sock docker run --rm -ti \ -v `pwd`:/infra \ kubestack
-
Authenticate providers
Credentials are cached inside the
.user
directory. The directory is excluded from Git by the default.gitignore
.# for AWS aws configure # for Azure az login # for GCP gcloud init gcloud auth application-default login
-
Select desired environment
# for ops terraform workspace select ops # or for apps terraform workspace select apps
-
Run Terraform commands
# run terraform init terraform init # run, e.g. terraform plan terraform plan