We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 436c4e1 commit 1425e9eCopy full SHA for 1425e9e
2 files changed
.changelog/27779.txt
@@ -0,0 +1,3 @@
1
+```release-note:improvement
2
+secrets: increase secrets plugin execution timeout to 60s
3
+```
client/commonplugins/secrets_plugin.go
@@ -21,7 +21,7 @@ const (
21
SecretsPluginDir = "secrets"
22
23
// The timeout for the plugin command before it is send SIGTERM
24
- SecretsCmdTimeout = 10 * time.Second
+ SecretsCmdTimeout = 60 * time.Second
25
26
// The timeout before the command is sent SIGKILL after being SIGTERM'd
27
SecretsKillTimeout = 2 * time.Second
0 commit comments