Promote argo application between environments
Project description
argops
A command-line interface for promoting Argocd applications between environments.
Features:
- Automate all the steps required to do a deployment
- Smart promote of value files between environments
- Dry-run option to see the changes.
Installing
pipx install argops
It's recommended that you add to your ArgoCD .gitignore the *-decrypted.yaml string. This pattern will exclude these temporary files from being committed to your git repository. These files are created by argops during the decryption and encryption of sops secrets. Although argops cleans up these files after use, there's a possibility that they might be left behind if an error occurs during processing.
Install the argocd commandline
- Follow the official instructions
- Configure the tool to use kubectl
argocd login --core
Install the gitea command line
- Follow the official instructions
- Use
tea login addto connect to your gitea instance.
Tweak your kubectl configuration
The apply command assumes that in your kubectl configuration you have context with the same name as the environments of argocd. It means that if you have a staging and production environments you should also have those in your contexts. If you use EKS it probably won't be the case and you'll need to edit them manually. To do so open the file ~/.kube/config and under the contexts key: change the name:
contexts:
- context:
cluster: arn:aws:eks:us-east-1:472857274883:cluster/production-cluster
user: arn:aws:eks:us-east-1:472857274883:cluster/production-cluster
name: production
- context:
cluster: arn:aws:eks:us-east-1:472857274883:cluster/staging-cluster
user: arn:aws:eks:us-east-1:472857274883:cluster/staging-cluster
name: staging
If you need to differentiate many production and staging clusters you can use the environment variable ARGOPS_ENVIRONMENT_PREFIX. If for example ARGOPS_ENVIRONMENT_PREFIX=collectiveA then your kubectl configuration may look like:
contexts:
- context:
cluster: arn:aws:eks:us-east-1:472857274883:cluster/production-cluster
user: arn:aws:eks:us-east-1:472857274883:cluster/production-cluster
name: collectiveA-production
Usage
There are currently two commands you can use:
apply
apply will deploy the current local changes into the kubernetes cluster. It's meant to be run from the directory of the application you want to deploy.
If the changes are in the staging environment you can run:
argops apply
The tool will guide you through the required steps:
- Stage the changes you want to deploy
- Make the commit
- Push the changes to the git server
- Refresh the ArgoCD state
- Show the diff of the application
- Sync the changes
- Ask if you want to promote the changes in production
If you're on production, you'll need to use the environment flag argops apply -e production, this is a double check to make sure you are sure what you're doing.
The production workflow is almost the same as staging, but it will also open a pull request adding the application diff in the description of the pull and optionally merge it.
promote
To use the tool, simply run it from your terminal on the directory where your environment directories are.
argops promote
By default the source directory is staging and the destination directory production. If you want to change them you can use the --src-dir=<source directory> and --dest-dir=<destination directory> flags. The --dry-run flag will show you what changes will it do without making them.
Known issues
Comments of promoted secrets are over the changed line
When you promote an environment specific values file, there are inline comments on the keys that have changed. However, sops doesn't support this format and adds the comment above the changed line. It's an upstream issue that is difficult to be addressed by us.
Development
If you want to run the tool from source, make sure you have Python and all required packages installed. You can do this using:
git clone https://codeberg.org/lyz/argops
cd argops
make init
Help
If you need help or want to report an issue, please see our issue tracker.
License
GPLv3
Authors
Lyz
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file argops-1.0.2.tar.gz.
File metadata
- Download URL: argops-1.0.2.tar.gz
- Upload date:
- Size: 54.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9699fd49856d911d36b48f133ee509f7bc86b2f27d25b91c96b151c4157edee
|
|
| MD5 |
65ce95add6e50fa87b62608bf13041f3
|
|
| BLAKE2b-256 |
2e51968da509e9df898610c2a51b3a4649a466cb98353fc4ba16b5095993a452
|
File details
Details for the file argops-1.0.2-py3-none-any.whl.
File metadata
- Download URL: argops-1.0.2-py3-none-any.whl
- Upload date:
- Size: 42.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f95c3958da614a57277a57460991e68b6fa38cace0835a5b2f4b898cf574715c
|
|
| MD5 |
69d3e5ea830548b2cbce103c2bddd8cc
|
|
| BLAKE2b-256 |
b1ffbfe603656d850d51d05c6b4a89cb754e7526b21270ad01697c7ffef2e782
|