Skip to content

Commit

Permalink
Release sk8l Chart v0.10.1 (#18)
Browse files Browse the repository at this point in the history
- Includes [Remove a duplicate runAsNonRoot from the UI Deployment #17](#17) by @dbirks
- Misc: Minor Makefile changes
  • Loading branch information
danroux authored Mar 28, 2024
1 parent 4d28020 commit 53b7b25
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .changelog/18.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
Chart: [Remove a duplicate runAsNonRoot from the UI Deployment #17](https://github.com/danroux/sk8l-api/pull/17) by dbirks
```
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@ VERSION_MAJOR ?= 0
VERSION_MINOR ?= 9
VERSION_PATCH ?= 0

VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)
CHART_VERSION_MAJOR ?= 0
CHART_VERSION_MINOR ?= 10
CHART_VERSION_PATCH ?= 1

WITHOUT ?= $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)
VERSION ?= v$(WITHOUT)
CHART_VERSION_WITHOUT ?= $(CHART_VERSION_MAJOR).$(CHART_VERSION_MINOR).$(CHART_VERSION_PATCH)
CHART_VERSION ?= v$(CHART_VERSION_WITHOUT)
VERSION_PACKAGE = main

GO_LDFLAGS := '
Expand Down
4 changes: 2 additions & 2 deletions charts/sk8l/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: sk8l
version: 0.10.0
appVersion: "0.9.0"
version: 0.10.1
appVersion: 0.9.0
description: |
sk8l collects Cronjob activity, displays it visually in the UI and publishes cronjob metrics to prometheus
keywords:
Expand Down

0 comments on commit 53b7b25

Please sign in to comment.