Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/utilitywarehouse/grafana-manifests
Grafana manifests for Kustomize
https://github.com/utilitywarehouse/grafana-manifests
grafana kubernetes kubernetes-manifests kustomize uw-dep-gitsync uw-dep-grafana uw-owner-system
Last synced: about 1 month ago
JSON representation
Grafana manifests for Kustomize
- Host: GitHub
- URL: https://github.com/utilitywarehouse/grafana-manifests
- Owner: utilitywarehouse
- License: mit
- Created: 2019-04-12T05:12:30.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-12-04T15:43:54.000Z (about 2 months ago)
- Last Synced: 2024-12-04T16:38:44.213Z (about 2 months ago)
- Topics: grafana, kubernetes, kubernetes-manifests, kustomize, uw-dep-gitsync, uw-dep-grafana, uw-owner-system
- Homepage:
- Size: 69.3 KB
- Stars: 1
- Watchers: 13
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Grafana manifests
Grafana manifests used for Kustomize.
`/base` contains base Grafana configuration
`/example` contains example how to use the manifests.```
.
├── base
│ ├── grafana.yaml
│ └── kustomization.yaml
├── CODEOWNERS
├── example
│ ├── grafana.yaml
│ ├── kustomization.yaml
│ ├── resources
│ │ ├── dashboards.yaml
│ │ └── datasources.yaml
│ └── secrets
│ ├── grafana-admin-password
│ ├── grafana-git-ssh-key
│ ├── grafana-google-auth-client-secret
│ └── grafana-known_hosts
├── LICENSE
└── README.md4 directories, 13 files
```## Example
Check out `kustomization.yaml` in `example/` directory.
You can build example with:
```
kustomize build example/
```## Requires
- https://github.com/kubernetes-sigs/kustomize
```
go get -u sigs.k8s.io/kustomize
```