@@ -1022,7 +1022,9 @@ sidecar:
1022
1022
#
1023
1023
# Endpoint to send request to reload alerts
1024
1024
reloadURL : " http://localhost:3000/api/admin/provisioning/alerting/reload"
1025
- # Absolute path to shell script to execute after a alert got reloaded
1025
+ # Absolute path to a script to execute after a configmap got reloaded.
1026
+ # It runs before calls to REQ_URI. If the file is not executable it will be passed to sh.
1027
+ # Otherwise, it's executed as is. Shebangs known to work are #!/bin/sh and #!/usr/bin/env python
1026
1028
script : null
1027
1029
skipReload : false
1028
1030
# This is needed if skipReload is true, to load any alerts defined at startup time.
@@ -1099,7 +1101,9 @@ sidecar:
1099
1101
#
1100
1102
# Endpoint to send request to reload alerts
1101
1103
reloadURL : " http://localhost:3000/api/admin/provisioning/dashboards/reload"
1102
- # Absolute path to shell script to execute after a configmap got reloaded
1104
+ # Absolute path to a script to execute after a configmap got reloaded.
1105
+ # It runs before calls to REQ_URI. If the file is not executable it will be passed to sh.
1106
+ # Otherwise, it's executed as is. Shebangs known to work are #!/bin/sh and #!/usr/bin/env python
1103
1107
script : null
1104
1108
skipReload : false
1105
1109
# watchServerTimeout: request to the server, asking it to cleanly close the connection after that.
@@ -1203,7 +1207,9 @@ sidecar:
1203
1207
#
1204
1208
# Endpoint to send request to reload datasources
1205
1209
reloadURL : " http://localhost:3000/api/admin/provisioning/datasources/reload"
1206
- # Absolute path to shell script to execute after a datasource got reloaded
1210
+ # Absolute path to a script to execute after a configmap got reloaded.
1211
+ # It runs before calls to REQ_URI. If the file is not executable it will be passed to sh.
1212
+ # Otherwise, it's executed as is. Shebangs known to work are #!/bin/sh and #!/usr/bin/env python
1207
1213
script : null
1208
1214
skipReload : false
1209
1215
# This is needed if skipReload is true, to load any datasources defined at startup time.
@@ -1269,7 +1275,9 @@ sidecar:
1269
1275
#
1270
1276
# Endpoint to send request to reload plugins
1271
1277
reloadURL : " http://localhost:3000/api/admin/provisioning/plugins/reload"
1272
- # Absolute path to shell script to execute after a plugin got reloaded
1278
+ # Absolute path to a script to execute after a configmap got reloaded.
1279
+ # It runs before calls to REQ_URI. If the file is not executable it will be passed to sh.
1280
+ # Otherwise, it's executed as is. Shebangs known to work are #!/bin/sh and #!/usr/bin/env python
1273
1281
script : null
1274
1282
skipReload : false
1275
1283
# Deploy the datasource sidecar as an initContainer in addition to a container.
@@ -1335,7 +1343,9 @@ sidecar:
1335
1343
#
1336
1344
# Endpoint to send request to reload notifiers
1337
1345
reloadURL : " http://localhost:3000/api/admin/provisioning/notifications/reload"
1338
- # Absolute path to shell script to execute after a notifier got reloaded
1346
+ # Absolute path to a script to execute after a configmap got reloaded.
1347
+ # It runs before calls to REQ_URI. If the file is not executable it will be passed to sh.
1348
+ # Otherwise, it's executed as is. Shebangs known to work are #!/bin/sh and #!/usr/bin/env python
1339
1349
script : null
1340
1350
skipReload : false
1341
1351
# Deploy the notifier sidecar as an initContainer in addition to a container.
0 commit comments