mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-15 17:51:01 +00:00
Merge pull request #846 from external-secrets/fix/crd-gen
fix: update CRDs
This commit is contained in:
commit
91e339ec75
2 changed files with 30 additions and 4 deletions
|
@ -58,6 +58,10 @@ spec:
|
|||
description: ExternalSecretDataRemoteRef defines Provider
|
||||
data location.
|
||||
properties:
|
||||
conversionStrategy:
|
||||
default: Default
|
||||
description: Used to define a conversion Strategy
|
||||
type: string
|
||||
key:
|
||||
description: Key is the key used in the Provider, mandatory
|
||||
type: string
|
||||
|
@ -91,6 +95,10 @@ spec:
|
|||
description: Used to extract multiple key/value pairs from
|
||||
one secret
|
||||
properties:
|
||||
conversionStrategy:
|
||||
default: Default
|
||||
description: Used to define a conversion Strategy
|
||||
type: string
|
||||
key:
|
||||
description: Key is the key used in the Provider, mandatory
|
||||
type: string
|
||||
|
@ -108,9 +116,11 @@ spec:
|
|||
find:
|
||||
description: Used to find secrets based on tags or regular
|
||||
expressions
|
||||
maxProperties: 1
|
||||
minProperties: 1
|
||||
properties:
|
||||
conversionStrategy:
|
||||
default: Default
|
||||
description: Used to define a conversion Strategy
|
||||
type: string
|
||||
name:
|
||||
description: Finds secrets based on the name.
|
||||
properties:
|
||||
|
@ -118,6 +128,9 @@ spec:
|
|||
description: Finds secrets base
|
||||
type: string
|
||||
type: object
|
||||
path:
|
||||
description: A root path to start the find operations.
|
||||
type: string
|
||||
tags:
|
||||
additionalProperties:
|
||||
type: string
|
||||
|
|
|
@ -48,6 +48,10 @@ spec:
|
|||
remoteRef:
|
||||
description: ExternalSecretDataRemoteRef defines Provider data location.
|
||||
properties:
|
||||
conversionStrategy:
|
||||
default: Default
|
||||
description: Used to define a conversion Strategy
|
||||
type: string
|
||||
key:
|
||||
description: Key is the key used in the Provider, mandatory
|
||||
type: string
|
||||
|
@ -76,6 +80,10 @@ spec:
|
|||
extract:
|
||||
description: Used to extract multiple key/value pairs from one secret
|
||||
properties:
|
||||
conversionStrategy:
|
||||
default: Default
|
||||
description: Used to define a conversion Strategy
|
||||
type: string
|
||||
key:
|
||||
description: Key is the key used in the Provider, mandatory
|
||||
type: string
|
||||
|
@ -90,9 +98,11 @@ spec:
|
|||
type: object
|
||||
find:
|
||||
description: Used to find secrets based on tags or regular expressions
|
||||
maxProperties: 1
|
||||
minProperties: 1
|
||||
properties:
|
||||
conversionStrategy:
|
||||
default: Default
|
||||
description: Used to define a conversion Strategy
|
||||
type: string
|
||||
name:
|
||||
description: Finds secrets based on the name.
|
||||
properties:
|
||||
|
@ -100,6 +110,9 @@ spec:
|
|||
description: Finds secrets base
|
||||
type: string
|
||||
type: object
|
||||
path:
|
||||
description: A root path to start the find operations.
|
||||
type: string
|
||||
tags:
|
||||
additionalProperties:
|
||||
type: string
|
||||
|
|
Loading…
Reference in a new issue