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
I'm trying to build a developer's cluster with ephemeral environments for feature branches.
Each environment is located in a dedicated namespace (name same as the git branch name) and contains a set of triggers for building services in the repository.
Each trigger filters git pushes by the branch name and service folder inside the git repository. The basic idea is to start the pipeline only if the push was made for a proper branch and contains changes for the specific service.
Based on the issue description even we thought that TriggerGroups and the single github Interceptor is a way to go as here you are using same interceptor with same secret
If there is a use case to access different secret then we may need to look into it in order to avoid the rate limit
I'm trying to build a developer's cluster with ephemeral environments for feature branches.
Each environment is located in a dedicated namespace (name same as the git branch name) and contains a set of triggers for building services in the repository.
Each trigger filters git pushes by the branch name and service folder inside the git repository. The basic idea is to start the pipeline only if the push was made for a proper branch and contains changes for the specific service.
There is a single
EventListener
is called by the git webhook . It spawns all those triggers in all namespaces:The problem : when the trigger number grows over 25, the rest of the triggers start to fail with the error:
It looks like the triggers are limited by the cooperative access to the secret, specified in
secretRef
configuration.The text was updated successfully, but these errors were encountered: