https://github.com/dellelce/devops-kit
devops-kit
https://github.com/dellelce/devops-kit
devops devops-tools python shell-scripts
Last synced: 5 months ago
JSON representation
devops-kit
- Host: GitHub
- URL: https://github.com/dellelce/devops-kit
- Owner: dellelce
- Created: 2020-04-03T10:19:55.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-03-31T10:48:59.000Z (about 1 year ago)
- Last Synced: 2025-03-31T11:33:28.529Z (about 1 year ago)
- Topics: devops, devops-tools, python, shell-scripts
- Language: Makefile
- Size: 59.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# devopskit: All things DevOps in a single repo
A collections of tools & scripts that help download and install tools commonly used/needed by DevOps Engineers like:
* Kubectl
* Vagrant
* Hashicorp Vault
* AWS client
* GCP client (in progress)
* Kubernetes (in progress)
* Ansible
* Prometheus
* Helm
## Install
To use the scripts & makefiles the ```.autoload``` and ```.autoload.d``` directory must be sourced:
```bash
# Switch to install directory with files
bash$ cd /path/devops-kit
# Load ("source") files in the following order:
bash$ . .autoload
bash$ for f in .autoload.d/*.sh; do [ -f "$f" ] && . "$f"; done
```