Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/platformercloud/ready-to-go-catalogs
Platformer Ready to Go Catalogs
https://github.com/platformercloud/ready-to-go-catalogs
catalogs grafana platformer
Last synced: 15 days ago
JSON representation
Platformer Ready to Go Catalogs
- Host: GitHub
- URL: https://github.com/platformercloud/ready-to-go-catalogs
- Owner: platformercloud
- License: mit
- Created: 2021-03-01T05:50:17.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-22T07:22:03.000Z (over 3 years ago)
- Last Synced: 2024-07-29T18:36:51.767Z (3 months ago)
- Topics: catalogs, grafana, platformer
- Homepage:
- Size: 59.6 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# ready-to-go-catalogs
## Getting started
#### file structure
├── repository name
│ ├── versions # version of the chart
│ ├── flavorname-config.yaml #default values for template flavor values
│ ├── flavorname-readme.md #specfic readme file per flavor
│ ├── flavorname-values.yaml #values per flavor
├── metadata.yaml #metadata for the template
#### metadata.yaml```
repositoryName: NAME OF THE REPOSITORY,
repository: URL OF THE REPOSITORY,
chartName: NAME OF THE CHART,
logoImage: URL OF THE CHART,
description: SMALL DESCRIPTION OF THE CHART
tags: RELATED TAGS FOR THE CHART
```
#### flavorname-config.yaml```
defaultValueArray:
- path: persistentVolume.enable
value: false
description: ''
clusterResources: ''
regex: []
- path: persistentVolume.storage
value: 1Gi
description: ''
clusterResources: ''
regex: []
```| Key | Description | types | required
| ------ | ------ | ------ | ------ |
| path | YAML OR JSON PATH FOR THE VARIABLE | string | required
| value | VALUE FOR THE VARIABLE | string,boolean,array,integer | required
| description | SMALL DESCRIPTION FOR DEFAULT VALUE | text | optional
| clusterResources | SPECIAL CLUSTER RESOURCES | string | optional
| regex | IF YOU HAVE SPECIAL REGEXS | array | optional