-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
34 lines (29 loc) · 853 Bytes
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# values.yaml
# Container Registry Configuration
registry:
url: "your-registry-url.com" # Replace with your registry URL
username: "your-username" # Replace with your registry username
password: "your-password" # Replace with your registry password
email: "your-email@example.com" # Replace with your email
# Namespaces and Deployments to Monitor
monitor:
namespaces:
- "default"
- "kube-system"
deployments: [] # If empty, all deployments in the specified namespaces will be monitored
# Example:
# deployments:
# - "deployment1"
# - "deployment2"
# Image Settings
image:
repository: "bash"
tag: "latest"
pullPolicy: "IfNotPresent"
# DaemonSet Settings
daemonset:
name: "push-missed-images"
namespace: "kube-system"
# RBAC Configuration
rbac:
create: true