Skip to content

Tags: concaf/triggers

Tags

v0.10.1

Toggle v0.10.1's commit message
Fix example SA permissions

The service account used for examples had permissions for all namespaced
Triggers resources but not `clustertriggerbindings`. With the switch to using
listers instead of making direct API calls this means that the EL will keep
printing out error log messages about not being able to fetch
clustertriggerbindings. To fix this, I added updated the SA with the right
ClusterRole and Binding.

In addition, some of the examples were using their own roles/SAs/bindings.
Instead of updating those, I created a single `rbac.yaml` file and added
symlinks to it from the examples.

Fixes tektoncd#846

Signed-off-by: Dibyo Mukherjee <[email protected]>

v0.10.0

Toggle v0.10.0's commit message
Updated README for trigger selector based examples

v0.9.1

Toggle v0.9.1's commit message
Revert "dibyo's point about only EL sink/interceptors reading secrets"

This reverts commit 8eb2067.

Turns out, the webhook does need access to create secrets since it uses it
to create `tekton-webhook-certs` if it does not exist.

Fixes tektoncd#803

v0.9.0

Toggle v0.9.0's commit message
Migrate all usages of template.name to template.ref

Signed-off-by: Dibyo Mukherjee <[email protected]>

v0.8.1

Toggle v0.8.1's commit message
Merge annotations on created resources

In tektoncd#712, we added a feature to propagate annotations added to the EL to its
underlying resources. However, this resulted in infinite reconcile loops since
the deployment controller will add a standard revision annotation that the EL
controller will keep trying to overwrite. To fix this, this commit switches the
annotation propagation to merge any annotations set on the underlying resources
before adding any extra annotations from the EL.

Fixes tektoncd#752

Signed-off-by: Dibyo Mukherjee <[email protected]>

v0.8.0

Toggle v0.8.0's commit message
Add TriggerCRD object validation and default

Defaults and Validation for TriggerCRD object have been added.

v0.7.0

Toggle v0.7.0's commit message
Remove deprecated params from TriggerTemplate

v0.6.1

Toggle v0.6.1's commit message
Switch to validating the parsed JSON mmatches.

The marshaled JSON output is flaky, this ensures that it matches after parsing.

v0.6.0

Toggle v0.6.0's commit message
Modify spec params to avoid confusion between resourcetemplates and t…

…riggertemplate params

v0.5.0

Toggle v0.5.0's commit message
Add Support for Embedding TriggerBindingSpec in EL

TriggerBindingSpec can be added to EventListener Trigger