apiVersion: apps/v1 kind: Deployment metadata: name: api-server annotations: reloader.stakater.com/auto: "true" spec: replicas: 3 selector: matchLabels: app: api template: metadata: labels: app: api spec: containers: - name: api image: myapp:latest volumeMounts: - name: config mountPath: /etc/config volumes: - name: config configMap: name: app-settings
If you don't want to watch all secrets, you can use explicit annotations: reloader by r1n github
If you are looking to audit or implement modern, safe system management workflows, would you like to see how to execute official , or do you need help understanding the mechanics of corporate KMS servers ? Share public link safe system management workflows
Note: Using auto: "true" detects changes to any ConfigMap or Secret used in that deployment. 2. Limiting Scope reloader by r1n github