Skip to content

Commit

Permalink
Merge branch 'release/v1.3.1' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
nroeske authored and cesmarvin committed Dec 17, 2024
2 parents 61a7697 + 839a3e0 commit 79c5517
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v1.3.1] - 2024-12-17
### Fixed
- [#72] Missing `get`-permission for ingress objects

## [v1.3.0] - 2024-12-13
### Added
- [#69] Added helm value `.ingress.controller` to define which ingress controller should be used.
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN make compile-generic
FROM gcr.io/distroless/static:nonroot
LABEL maintainer="[email protected]" \
NAME="k8s-service-discovery" \
VERSION="1.3.0"
VERSION="1.3.1"

WORKDIR /

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Set these to the desired values
ARTIFACT_ID=k8s-service-discovery
VERSION=1.3.0
VERSION=1.3.1

IMAGE=cloudogu/${ARTIFACT_ID}:${VERSION}
GOTAG?=1.23.4
Expand Down
2 changes: 1 addition & 1 deletion k8s/helm/component-patch-tpl.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
values:
images:
serviceDiscovery: cloudogu/k8s-service-discovery:1.3.0
serviceDiscovery: cloudogu/k8s-service-discovery:1.3.1
patches:
values.yaml:
manager:
Expand Down
1 change: 1 addition & 0 deletions k8s/helm/templates/service-discovery-role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ rules:
resources:
- ingresses
verbs:
- get
- list
- watch
- create
Expand Down
2 changes: 1 addition & 1 deletion k8s/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ manager:
image:
registry: docker.io
repository: cloudogu/k8s-service-discovery
tag: 1.3.0
tag: 1.3.1
env:
logLevel: info
stage: production
Expand Down

0 comments on commit 79c5517

Please sign in to comment.