Day2 config to remove remote_read and remote_write
[demo.git] / vnfs / DAaaS / deploy / day2_configs / prometheus / README.txt
1 1. Day2 config to add a remote_write to existing config
2
3 Assuming initial/day0 config in namespace "edge1" and helm release name as "cp" (helm install -n cp collection/ --namespace=edge1)
4
5 Run below command to apply day2 config
6
7 kubectl patch --namespace=edge1 prometheus cp-prometheus-prometheus -p "$(cat add_remote_write.yaml)" --type=merge
8
9 2. Day2 config to remove remote_read and remote_write from existing config
10
11 Assuming initial/day0 config in namespace "edge1" and helm release name as "cp" (helm install -n cp collection/ --namespace=edge1)
12
13 Run below commands to apply day2 config
14
15 To remove remote_read ----->  kubectl patch -n edge1 prometheus cp-prometheus-prometheus --type=json -p="$(cat remove_remote_read.json)"
16 To remove remote_write ---->  kubectl patch -n edge1 prometheus cp-prometheus-prometheus --type=json -p="$(cat remove_remote_write.json)"