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
|
// +optional
|
||||||
Target ExternalSecretTarget `json:"target,omitempty"`
|
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"
|
// 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.
|
// May be set to zero to fetch and create it once. Defaults to 1h.
|
||||||
// +kubebuilder:default="1h"
|
// +kubebuilder:default="1h"
|
||||||
RefreshInterval *metav1.Duration `json:"refreshInterval,omitempty"`
|
RefreshInterval *metav1.Duration `json:"refreshInterval,omitempty"`
|
||||||
|
|
|
@ -357,8 +357,10 @@ spec:
|
||||||
refreshInterval:
|
refreshInterval:
|
||||||
default: 1h
|
default: 1h
|
||||||
description: |-
|
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"
|
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.
|
May be set to zero to fetch and create it once. Defaults to 1h.
|
||||||
type: string
|
type: string
|
||||||
secretStoreRef:
|
secretStoreRef:
|
||||||
|
|
|
@ -621,8 +621,10 @@ spec:
|
||||||
refreshInterval:
|
refreshInterval:
|
||||||
default: 1h
|
default: 1h
|
||||||
description: |-
|
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"
|
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.
|
May be set to zero to fetch and create it once. Defaults to 1h.
|
||||||
type: string
|
type: string
|
||||||
secretStoreRef:
|
secretStoreRef:
|
||||||
|
|
|
@ -335,8 +335,10 @@ spec:
|
||||||
refreshInterval:
|
refreshInterval:
|
||||||
default: 1h
|
default: 1h
|
||||||
description: |-
|
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"
|
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.
|
May be set to zero to fetch and create it once. Defaults to 1h.
|
||||||
type: string
|
type: string
|
||||||
secretStoreRef:
|
secretStoreRef:
|
||||||
|
@ -5882,8 +5884,10 @@ spec:
|
||||||
refreshInterval:
|
refreshInterval:
|
||||||
default: 1h
|
default: 1h
|
||||||
description: |-
|
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"
|
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.
|
May be set to zero to fetch and create it once. Defaults to 1h.
|
||||||
type: string
|
type: string
|
||||||
secretStoreRef:
|
secretStoreRef:
|
||||||
|
|
|
@ -2989,8 +2989,10 @@ Kubernetes meta/v1.Duration
|
||||||
</em>
|
</em>
|
||||||
</td>
|
</td>
|
||||||
<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”
|
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>
|
May be set to zero to fetch and create it once. Defaults to 1h.</p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -3730,8 +3732,10 @@ Kubernetes meta/v1.Duration
|
||||||
</em>
|
</em>
|
||||||
</td>
|
</td>
|
||||||
<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”
|
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>
|
May be set to zero to fetch and create it once. Defaults to 1h.</p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Reference in a new issue