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
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
We currently deploy Scrumlr to our Kubernetes cluster, and we have Kyverno policies in place that prohibit using
ImplementationSpecificpath types in our NGINX ingress configurations, because of some CVEs. At the moment, static files liketimer_finished.mp3andhotkeys.pdfare served directly from the frontend at top-level paths (e.g.,/timer_finished.mp3). This makes it impossible for us to switch toPrefixpath 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.pdfBy serving static content under an
/assetsprefix, we can:Prefixpath 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