Skip to content
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ All notable changes to this project will be documented in this file.
- Listener controller now listens for ListenerClass updates ([#231]).
- Propagate `ListenerClass.spec.serviceAnnotations` to the created Services ([#234]).
- Failing to parse one `Listener`/`ListenerClass` should no longer cause the whole operator to stop functioning ([#238]).
- Added necessary RBAC permissions for running on Openshift ([#246]).

[#231]: https://github.com/stackabletech/listener-operator/pull/231
[#232]: https://github.com/stackabletech/listener-operator/pull/232
Expand All @@ -31,6 +32,7 @@ All notable changes to this project will be documented in this file.
[#237]: https://github.com/stackabletech/listener-operator/pull/237
[#238]: https://github.com/stackabletech/listener-operator/pull/238
[#244]: https://github.com/stackabletech/listener-operator/pull/244
[#246]: https://github.com/stackabletech/listener-operator/pull/246

## [24.7.0] - 2024-07-24

Expand Down
7 changes: 7 additions & 0 deletions deploy/helm/listener-operator/templates/roles.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,14 @@ rules:
- ""
resources:
- nodes
- persistentvolumes
- persistentvolumes/finalizers
- persistentvolumeclaims
- endpoints
verbs:
- create
- update
- patch
- get
- list
- watch
Expand Down Expand Up @@ -118,11 +123,13 @@ rules:
resources:
- listeners
- listeners/status
- listeners/finalizers
- podlisteners
verbs:
- patch
- create
- delete
- update
{{ if .Capabilities.APIVersions.Has "security.openshift.io/v1" }}
- apiGroups:
- security.openshift.io
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ spec:
containers:
- name: query-ingresses
image: docker.stackable.tech/stackable/testing-tools:0.2.0-stackable0.0.0-dev
# NOTE: Hostname resolution does not work on our OKD clusters, so the command for testing the Hostname is omitted on Openshift. It would be better to omit this entire test value for Openshift but this is not (yet) possible in beku.
{% if test_scenario['values']['openshift'] == 'true' and test_scenario['values']['addressType'] != "Hostname" %}
command:
- bash
- -euo
Expand All @@ -70,6 +72,7 @@ spec:
echo Requesting $ADDR should return $pod;
curl -s $ADDR | grep $pod;
done
{% endif %}
resources:
limits:
cpu: 500m
Expand Down
Loading