Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mirceanton/gitops-toolkit
A container with all of the tools I need to manage my GitOps setup.
https://github.com/mirceanton/gitops-toolkit
age flux flux2 fluxcd gitops gitops-toolkit kubectl kubernetes sops talos talos-linux talosctl
Last synced: 9 days ago
JSON representation
A container with all of the tools I need to manage my GitOps setup.
- Host: GitHub
- URL: https://github.com/mirceanton/gitops-toolkit
- Owner: mirceanton
- License: mit
- Created: 2024-08-28T17:33:39.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-02-01T01:56:48.000Z (19 days ago)
- Last Synced: 2025-02-01T02:33:57.910Z (19 days ago)
- Topics: age, flux, flux2, fluxcd, gitops, gitops-toolkit, kubectl, kubernetes, sops, talos, talos-linux, talosctl
- Language: Dockerfile
- Size: 220 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# GitOps Toolkit
GitOps Toolkit is a Docker image that contains a collection of tools necessary for me to manage my GitOps infrastructure. This image is designed to simplify the setup and management of a development environment for infrastructure as code (IaC), Kubernetes management, secret encryption, and other related tasks.
## Tools Included
| Tool/Dependency | Version |
|----------------|---------|
| Terraform | 1.10.5 |
| Tflint | v0.55.1 |
| Sops | v3.9.4 |
| Age | v1.2.0 |
| Age Keygen | V1.2.0 |
| Flux | v2.4.0 |
| Tfctl | v0.16.0-rc.4 |
| Kubectl | 1.32.1 |
| Kubecolor | v0.5.0 |
| Kubectl Switch | v2.0.1 |
| Kubectl Pgo | v0.5.0 |
| Kustomize | v5.6.0 |
| Helm | v3.13.3 |
| K9S | v0.32.7 |
| Stern | 1.32.0 |
| Talosctl | v1.9.3 |
| Talswitcher | v1.1.4 |
| Talhelper | v3.0.18 |
| Taskfile | v3.38.0 |
| Minio Cli | RELEASE.2024-10-08T09-37-26Z |
| Bitwarden Cli | 2024.8.1 |
| Cmctl | v2.1.1 |
| yamllint | 1.35.1 |
| jq | 1.8.0 |
| yq | 3.4.3 |## UseCase
This image is mainly intended to be the base for DevContainer setups (hence the `devcontainers/python` base image) or to be the base image for CI runs.
### Sample DevContainer Configuration
Here is an example of a devcontainer configuration using this image.
```json5
{
"name": "GitOps Toolkit",
"image": "ghcr.io/mirceanton/gitops-toolkit:latest",
"containerEnv": {
"KUBECONFIG": "/home/vscode/.kube/config",
"KUBECONFIG_DIR": "/home/vscode/.kube/configs/",
"TALOSCONFIG": "/home/vscode/.talos/config",
"TALOSCONFIG_DIR": "/home/vscode/.talos/configs/"
},
"mounts": [
"source=${localWorkspaceFolder},target=/workspace,type=bind,consistency=cached",
"source=${localEnv:HOME}${localEnv:USERPROFILE}/.age.key,target=${containerWorkspaceFolder}/.age.key,type=bind,consistency=cached",
"source=${localEnv:HOME}${localEnv:USERPROFILE}/.kube/,target=/home/vscode/.kube/,type=bind,consistency=cached",
"source=${localEnv:HOME}${localEnv:USERPROFILE}/.talos/,target=/home/vscode/.talos/,type=bind,consistency=cached"
],
"remoteUser": "vscode",
"containerUser": "vscode",
"updateRemoteUserUID": true
}
```## License
This project is licensed under the MIT License - see the LICENSE file for details.