1
0
Fork 0

Pass flags to the reloader server

This commit is contained in:
Sergio Talens-Oliag 2025-05-01 16:32:55 +02:00
parent 5044a12792
commit f750581dd4
Signed by: sto
GPG key ID: 821AEE0FD167FBDF

View file

@ -3,3 +3,15 @@ kind: Kustomization
namespace: tools
resources:
- ../../base
patches:
# Add flags to reload workloads when ConfigMaps or Secrets are created or deleted
- target:
kind: Deployment
name: reloader-reloader
patch: |-
- op: add
path: /spec/template/spec/containers/0/args
value:
- '--reload-on-create=true'
- '--reload-on-delete=true'
- '--reload-strategy=annotations'