Skip to content

Commit

Permalink
Merge branch 'release/v1.3.2' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
nhinze23 authored and cesmarvin committed Dec 18, 2024
2 parents 79c5517 + 9793ab4 commit 5b0251b
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v1.3.2] - 2024-12-18
### Changed
- Activate deny all networkpolicy in helm values.

### Fixed
- [#74] Missing `get`- and `update`-permissions for `tcp-services` and `udp-services` configmaps
- These are necessary to update exposed ports

## [v1.3.1] - 2024-12-17
### Fixed
- [#72] Missing `get`-permission for ingress objects
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.1"
VERSION="1.3.2"

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.1
VERSION=1.3.2

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.1
serviceDiscovery: cloudogu/k8s-service-discovery:1.3.2
patches:
values.yaml:
manager:
Expand Down
12 changes: 12 additions & 0 deletions k8s/helm/templates/service-discovery-role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,18 @@ rules:
- list
- get
- watch
# update exposed ports in tcp- and udp-services configmaps
- apiGroups:
- ""
resources:
- configmaps
resourceNames:
- tcp-services
- udp-services
verbs:
- get
- update
# create and update ingress objects for dogus
- apiGroups:
- networking.k8s.io
resources:
Expand Down
4 changes: 2 additions & 2 deletions 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.1
tag: 1.3.2
env:
logLevel: info
stage: production
Expand All @@ -43,5 +43,5 @@ ingress:
controller: nginx-ingress # currently only supported ingress controller
networkPolicies:
enabled: true
denyAll: false
denyAll: true
ingressControllerAllowedCIDR: "0.0.0.0/0"

0 comments on commit 5b0251b

Please sign in to comment.