weaveworks / pipeline-controller

This repository contains the Pipeline CRD and associated controller for Weave GitOps Enterprise.
1 stars 4 forks source link

feat: allow CLI flags to be set via the Helm chart values #147

Closed yitsushi closed 1 year ago

yitsushi commented 1 year ago

Most of currently available CLI flags has an option somewhere in the values.yaml file, I tried to find a good place for them.

Exceptions:

They are used only internally, the container port is static for all three ports.

Example

Example values.yaml to change retry logic and the level of logging:

logging:
  level: debug

promotion:
  retry:
    threshold: 5

References:

Closes #145