Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .holo/branches/k8s-manifests/_civic-cloud.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,19 @@ files = [
# from a now-empty input tree.
"!ingress-nginx/**",
"!.holo/lenses/ingress-nginx.toml",

# certgen.yaml is a Helm `pre-install,pre-upgrade` hook Job that generates
# the envoy-gateway webhook certs. `helm template` emits hooks like any
# other manifest (the helm3 lens has no --no-hooks), so it lands in the
# projection and gets kubectl-applied on every deploy.
#
# It carries `ttlSecondsAfterFinished: 30`, so it deletes itself moments
# after running. `kubectl diff` therefore reports it as a fresh creation in
# EVERY deploy PR, which buries real changes in recurring noise.
#
# Dropping the template excludes the Job while leaving certgen-rbac.yaml in
# place, so re-enabling it is a one-line revert. The certs it generated are
# valid until 2031-05-17 and it does not rotate existing ones.
"!envoy-gateway/helm-chart/templates/certgen.yaml",
]
before = "*"