You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With #862 is merged, eventlistener deployment are no more able to be created, by default on OpenShift.
The reason for it is that, by default, you cannot set uid for your Pods, OpenShift takes care of this. To be able to use runAsUser: 65532 on OpenShift, you need to use anyuid which is a higher privilege than you usually need to.
Before this change, the eventlistener pod(s), in OpenShift, would happily run with a random uid. With this change, the serviceAccount that runs the eventlistener pod(s) need to have the anyuid scc attached (see here)
The problem with #862 is that the behavior is not configurable, aka we can't disable it if we don't need it.
I propose to add a way to configure this behavior, most likely through a feature-flag (that would be enabled by default)
The text was updated successfully, but these errors were encountered:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.
With #862 is merged, eventlistener deployment are no more able to be created, by default on OpenShift.
The reason for it is that, by default, you cannot set
uid
for your Pods, OpenShift takes care of this. To be able to userunAsUser: 65532
on OpenShift, you need to useanyuid
which is a higher privilege than you usually need to.Before this change, the eventlistener pod(s), in OpenShift, would happily run with a random uid. With this change, the serviceAccount that runs the eventlistener pod(s) need to have the
anyuid
scc attached (see here)The problem with #862 is that the behavior is not configurable, aka we can't disable it if we don't need it.
I propose to add a way to configure this behavior, most likely through a feature-flag (that would be enabled by default)
The text was updated successfully, but these errors were encountered: