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