https://github.com/harness/helm-looker
https://github.com/harness/helm-looker
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/harness/helm-looker
- Owner: harness
- Created: 2022-09-02T08:20:55.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-15T15:47:54.000Z (almost 3 years ago)
- Last Synced: 2025-01-03T18:12:09.198Z (about 1 year ago)
- Language: Smarty
- Size: 98.6 KB
- Stars: 3
- Watchers: 18
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#Helm chart for looker
### Configuration options
For Chart configuration see the [README.md](src/looker/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/looker/Chart.yaml`
```shell
OLD_VERSION=$(grep -E '^version:' src/looker/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/looker/Chart.yaml
```