Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kwiesmueller/captain-template
https://github.com/kwiesmueller/captain-template
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kwiesmueller/captain-template
- Owner: kwiesmueller
- Created: 2017-05-04T00:15:36.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-05-04T00:19:52.000Z (over 7 years ago)
- Last Synced: 2024-10-28T19:51:10.315Z (about 2 months ago)
- Language: Python
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# helm-kube
Kubernetes Cluster specific Helm configuration.
## setup
Clone custom [helm charts repo](https://github.com/seibert-media/helm-charts).
Fill in your kubernetes context name in [captain.cfg](captain.cfg) and set path to the local helm charts repo.
Install python requirements:
```
pip install -r requirements.txt
```Install helm and do init:
```
brew install kubernetes-helm
helm init
```## secrets
Add your secrets in [secrets.json](secrets.json):
```
{
"website": { # <-- namespace
"wordpress": { # <-- name
"postgresUser": "wordpress",
"postgresPassword": "123456"
}
}
}
```## usage
Apply all your changes:
`./captain.py`
Apply all manifests and only specific helm releases:
`./captain.py release1 release2`