https://github.com/harness/helm-ng-custom-dashboards
https://github.com/harness/helm-ng-custom-dashboards
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/harness/helm-ng-custom-dashboards
- Owner: harness
- Created: 2022-08-24T14:22:20.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-01-24T12:02:41.000Z (over 3 years ago)
- Last Synced: 2025-09-05T21:54:46.099Z (11 months ago)
- Language: Smarty
- Size: 63.5 KB
- Stars: 1
- Watchers: 17
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#Helm chart for ng-custom-dashboards
### Requirements
To use NG Custom Dashboards you first need to install the [Looker Chart](https://github.com/harness/helm-looker).
You will also need to update the Looker config within the values.yaml file.
### Configuration options
For Chart configuration see the [README.md](src/ng-custom-dashboards/README.md) from the Chart.
### Publishing the Chart
Publishing of the Chart is done automatically by a Github workflow when a change is pushed to the `main` branch. Before merging to main please remember to manually update the version.
Bump version of the Chart in `src/ng-custom-dashboards/Chart.yaml`
```shell
OLD_VERSION=$(grep -E '^version:' src/ng-custom-dashboards/Chart.yaml | cut -d ' ' -f 2)
NEXT_VERSION=$(echo "$OLD_VERSION" | awk -F. '{print $1"."$2"."$3+1}')
sed -i -E -e "s/^version: ${OLD_VERSION}/version: ${NEXT_VERSION}/" src/ng-custom-dashboards/Chart.yaml
```