https://github.com/mischief/helm-charts
https://github.com/mischief/helm-charts
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mischief/helm-charts
- Owner: mischief
- Created: 2021-02-27T21:30:52.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-11-22T22:50:14.000Z (over 4 years ago)
- Last Synced: 2025-06-01T06:18:18.640Z (about 1 year ago)
- Language: Smarty
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# charts
# tl;dr
Helm:
helm repo add mischief https://mischief.github.io/helm-charts
helm repo update mischief
helm install mischief-nginx mischief/nginx
Terraform:
```hcl
resource "helm_release" "test" {
name = "test-release"
namespace = "test-namespace"
repository = "https://mischief.github.io/helm-charts"
chart = "nginx"
}
```