Replies: 1 comment
-
Hi @kersten, thanks for the proposal. Sounds sensible to me, I'll create a ticket for it which you can follow :) have a happy new year! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
We currently deploy Scrumlr to our Kubernetes cluster, and we have Kyverno policies in place that prohibit using
ImplementationSpecific
path types in our NGINX ingress configurations, because of some CVEs. At the moment, static files liketimer_finished.mp3
andhotkeys.pdf
are served directly from the frontend at top-level paths (e.g.,/timer_finished.mp3
). This makes it impossible for us to switch toPrefix
path types for routing—something that our policies require.Request:
Please consider moving these static assets under a dedicated directory, for example
/assets/
. For instance:/timer_finished.mp3
→/assets/timer_finished.mp3
/hotkeys.pdf
→/assets/hotkeys.pdf
By serving static content under an
/assets
prefix, we can:Prefix
path route, complying with Kyverno policies.This small change would greatly simplify our deployment process and help us maintain compliance while still serving the required assets.
Thank you for your consideration.
Beta Was this translation helpful? Give feedback.
All reactions