mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-14 11:57:59 +00:00
Update docs for ExternalSecrets's refreshInterval (#4097)
Fixes #4079 Signed-off-by: Andreas Lindhé <7773090+lindhe@users.noreply.github.com>
This commit is contained in:
parent
e25edd7092
commit
bf4a1a1ad9
5 changed files with 21 additions and 7 deletions
|
@ -342,8 +342,10 @@ type ExternalSecretSpec struct {
|
|||
// +optional
|
||||
Target ExternalSecretTarget `json:"target,omitempty"`
|
||||
|
||||
// RefreshInterval is the amount of time before the values are read again from the SecretStore provider
|
||||
// RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
|
||||
// specified as Golang Duration strings.
|
||||
// Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h"
|
||||
// Example values: "1h", "2h30m", "5d", "10s"
|
||||
// May be set to zero to fetch and create it once. Defaults to 1h.
|
||||
// +kubebuilder:default="1h"
|
||||
RefreshInterval *metav1.Duration `json:"refreshInterval,omitempty"`
|
||||
|
|
|
@ -357,8 +357,10 @@ spec:
|
|||
refreshInterval:
|
||||
default: 1h
|
||||
description: |-
|
||||
RefreshInterval is the amount of time before the values are read again from the SecretStore provider
|
||||
RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
|
||||
specified as Golang Duration strings.
|
||||
Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h"
|
||||
Example values: "1h", "2h30m", "5d", "10s"
|
||||
May be set to zero to fetch and create it once. Defaults to 1h.
|
||||
type: string
|
||||
secretStoreRef:
|
||||
|
|
|
@ -621,8 +621,10 @@ spec:
|
|||
refreshInterval:
|
||||
default: 1h
|
||||
description: |-
|
||||
RefreshInterval is the amount of time before the values are read again from the SecretStore provider
|
||||
RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
|
||||
specified as Golang Duration strings.
|
||||
Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h"
|
||||
Example values: "1h", "2h30m", "5d", "10s"
|
||||
May be set to zero to fetch and create it once. Defaults to 1h.
|
||||
type: string
|
||||
secretStoreRef:
|
||||
|
|
|
@ -335,8 +335,10 @@ spec:
|
|||
refreshInterval:
|
||||
default: 1h
|
||||
description: |-
|
||||
RefreshInterval is the amount of time before the values are read again from the SecretStore provider
|
||||
RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
|
||||
specified as Golang Duration strings.
|
||||
Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h"
|
||||
Example values: "1h", "2h30m", "5d", "10s"
|
||||
May be set to zero to fetch and create it once. Defaults to 1h.
|
||||
type: string
|
||||
secretStoreRef:
|
||||
|
@ -5882,8 +5884,10 @@ spec:
|
|||
refreshInterval:
|
||||
default: 1h
|
||||
description: |-
|
||||
RefreshInterval is the amount of time before the values are read again from the SecretStore provider
|
||||
RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
|
||||
specified as Golang Duration strings.
|
||||
Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h"
|
||||
Example values: "1h", "2h30m", "5d", "10s"
|
||||
May be set to zero to fetch and create it once. Defaults to 1h.
|
||||
type: string
|
||||
secretStoreRef:
|
||||
|
|
|
@ -2989,8 +2989,10 @@ Kubernetes meta/v1.Duration
|
|||
</em>
|
||||
</td>
|
||||
<td>
|
||||
<p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
|
||||
<p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
|
||||
specified as Golang Duration strings.
|
||||
Valid time units are “ns”, “us” (or “µs”), “ms”, “s”, “m”, “h”
|
||||
Example values: “1h”, “2h30m”, “5d”, “10s”
|
||||
May be set to zero to fetch and create it once. Defaults to 1h.</p>
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -3730,8 +3732,10 @@ Kubernetes meta/v1.Duration
|
|||
</em>
|
||||
</td>
|
||||
<td>
|
||||
<p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
|
||||
<p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
|
||||
specified as Golang Duration strings.
|
||||
Valid time units are “ns”, “us” (or “µs”), “ms”, “s”, “m”, “h”
|
||||
Example values: “1h”, “2h30m”, “5d”, “10s”
|
||||
May be set to zero to fetch and create it once. Defaults to 1h.</p>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
Loading…
Reference in a new issue