Skip to content

Commit

Permalink
Release v0.14.0 - Chart.version v0.15.0
Browse files Browse the repository at this point in the history
ENHANCEMENTS:

* ci/dependabot: docker:(deps): bump golang from 1.22.2 to 1.22.3 [[GH-65](#65)]
* ci/dependabot: gha:(deps): bump golangci/golangci-lint-action from 5.1.0 to 6.0.0 [[GH-63](#63)]
* ci/dependabot: go:(deps): bump github.com/prometheus/client_golang from 1.19.0 to 1.19.1 [[GH-67](#67)]
* ci/dependabot: go:(deps): bump google.golang.org/grpc from 1.63.2 to 1.64.0 [[GH-72](#72)]
* ci/dependabot: go:(deps): bump google.golang.org/protobuf from 1.34.0 to 1.34.1 [[GH-61](#61)]
* ci/dependabot: go:(deps): bump k8s.io/api from 0.30.0 to 0.30.1 [[GH-70](#70)]
* ci/dependabot: go:(deps): bump k8s.io/apimachinery from 0.30.0 to 0.30.1 [[GH-68](#68)]
* ci/dependabot: go:(deps): bump k8s.io/client-go from 0.30.0 to 0.30.1 [[GH-71](#71)]

DEPENDENCIES:

* Update `k8s.io/apimachinery` submodule => `v0.30.1` [[GH-72](#72)]
  • Loading branch information
danroux committed May 16, 2024
1 parent 0e1a077 commit 4e3af6f
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 11 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## v0.14.0 (May 16, 2024)

ENHANCEMENTS:

* ci/dependabot: docker:(deps): bump golang from 1.22.2 to 1.22.3 [[GH-65](https://github.com/danroux/sk8l-api/issues/65)]
* ci/dependabot: gha:(deps): bump golangci/golangci-lint-action from 5.1.0 to 6.0.0 [[GH-63](https://github.com/danroux/sk8l-api/issues/63)]
* ci/dependabot: go:(deps): bump github.com/prometheus/client_golang from 1.19.0 to 1.19.1 [[GH-67](https://github.com/danroux/sk8l-api/issues/67)]
* ci/dependabot: go:(deps): bump google.golang.org/grpc from 1.63.2 to 1.64.0 [[GH-72](https://github.com/danroux/sk8l-api/issues/72)]
* ci/dependabot: go:(deps): bump google.golang.org/protobuf from 1.34.0 to 1.34.1 [[GH-61](https://github.com/danroux/sk8l-api/issues/61)]
* ci/dependabot: go:(deps): bump k8s.io/api from 0.30.0 to 0.30.1 [[GH-70](https://github.com/danroux/sk8l-api/issues/70)]
* ci/dependabot: go:(deps): bump k8s.io/apimachinery from 0.30.0 to 0.30.1 [[GH-68](https://github.com/danroux/sk8l-api/issues/68)]
* ci/dependabot: go:(deps): bump k8s.io/client-go from 0.30.0 to 0.30.1 [[GH-71](https://github.com/danroux/sk8l-api/issues/71)]

DEPENDENCIES:

* Update `k8s.io/apimachinery` submodule => `v0.30.1` [[GH-72](https://github.com/danroux/sk8l-api/issues/72)]

## v0.13.0 (May 07, 2024)

ENHANCEMENTS:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ help: ## This help.

# Bump these on release
VERSION_MAJOR ?= 0
VERSION_MINOR ?= 13
VERSION_MINOR ?= 14
VERSION_PATCH ?= 0

CHART_VERSION_MAJOR ?= 0
CHART_VERSION_MINOR ?= 14
CHART_VERSION_MINOR ?= 15
CHART_VERSION_PATCH ?= 0

WITHOUT ?= $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)
Expand Down
8 changes: 4 additions & 4 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.14.0
appVersion: 0.13.0
version: 0.15.0
appVersion: 0.14.0
description: |
sk8l is a Cronjob/Job monitoring and visualization tool in Kubernetes. It enables users to monitor Cronjob/Job status by collecting metrics from the configured targets and publish them to prometheus.
icon: https://sk8l.io/charts/logo.png
Expand All @@ -24,8 +24,8 @@ maintainers:
annotations:
artifacthub.io/images: |
- name: sk8l-api
image: danroux/sk8l-api:v0.13.0
image: danroux/sk8l-api:v0.14.0
- name: sk8l-ui
image: danroux/sk8l-ui:v0.12.0
image: danroux/sk8l-ui:v0.13.0
- name: envoy
image: envoyproxy/envoy:v1.30-latest
2 changes: 1 addition & 1 deletion charts/sk8l/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spec:
- name: sk8l-api
{{- template "securityContext.container" . }}
{{- $apiImage := .Values.sk8lApi.image | default "danroux/sk8l-api" }}
{{- $apiTag := .Values.sk8lApi.imageTag | default "v0.13.0" }}
{{- $apiTag := .Values.sk8lApi.imageTag | default "v0.14.0" }}
image: {{ printf "%s:%s" $apiImage $apiTag }}
imagePullPolicy: {{ .Values.sk8lApi.imagePullPolicy | default "IfNotPresent" | quote }}
ports:
Expand Down
4 changes: 2 additions & 2 deletions charts/sk8l/templates/ui-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ spec:
seccompProfile:
type: RuntimeDefault
{{- $uiImage := .Values.sk8lUi.image | default "danroux/sk8l-ui" }}
{{- $uiTag := .Values.sk8lUi.imageTag | default "v0.12.0" }}
{{- $uiTag := .Values.sk8lUi.imageTag | default "v0.13.0" }}
image: {{ printf "%s:%s" $uiImage $uiTag }}
imagePullPolicy: {{ .Values.sk8lUi.imagePullPolicy | default "IfNotPresent" | quote }}
command:
Expand Down Expand Up @@ -87,7 +87,7 @@ spec:
- name: sk8l-ui
{{- template "securityContext.container" . }}
{{- $uiImage := .Values.sk8lUi.image | default "danroux/sk8l-ui" }}
{{- $uiTag := .Values.sk8lUi.imageTag | default "v0.12.0" }}
{{- $uiTag := .Values.sk8lUi.imageTag | default "v0.13.0" }}
image: {{ printf "%s:%s" $uiImage $uiTag }}
imagePullPolicy: {{ .Values.sk8lUi.imagePullPolicy | default "IfNotPresent" | quote }}
ports:
Expand Down
4 changes: 2 additions & 2 deletions charts/sk8l/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ serviceAccount:
annotations: {}
sk8lApi:
image: "danroux/sk8l-api"
imageTag: "v0.13.0"
imageTag: "v0.14.0"
imagePullPolicy: ""
autoscaling:
enabled: true
Expand Down Expand Up @@ -49,7 +49,7 @@ sk8lApi:
# path: ca-cert.pem
sk8lUi:
image: "danroux/sk8l-ui"
imageTag: "v0.12.0"
imageTag: "v0.13.0"
imagePullPolicy: ""
volumeMounts:
- name: nginx-cache
Expand Down

0 comments on commit 4e3af6f

Please sign in to comment.