Make the Venafi Cloud URL field optional
Signed-off-by: James Munnelly <james@munnelly.eu>
This commit is contained in:
parent
33051b0c66
commit
5b9cd23d0f
@ -1625,7 +1625,6 @@ spec:
|
||||
type: object
|
||||
required:
|
||||
- apiTokenSecretRef
|
||||
- url
|
||||
properties:
|
||||
apiTokenSecretRef:
|
||||
description: APITokenSecretRef is a secret key selector for
|
||||
|
||||
@ -1625,7 +1625,6 @@ spec:
|
||||
type: object
|
||||
required:
|
||||
- apiTokenSecretRef
|
||||
- url
|
||||
properties:
|
||||
apiTokenSecretRef:
|
||||
description: APITokenSecretRef is a secret key selector for
|
||||
|
||||
@ -3489,7 +3489,6 @@ spec:
|
||||
type: object
|
||||
required:
|
||||
- apiTokenSecretRef
|
||||
- url
|
||||
properties:
|
||||
apiTokenSecretRef:
|
||||
description: APITokenSecretRef is a secret key selector for
|
||||
@ -5229,7 +5228,6 @@ spec:
|
||||
type: object
|
||||
required:
|
||||
- apiTokenSecretRef
|
||||
- url
|
||||
properties:
|
||||
apiTokenSecretRef:
|
||||
description: APITokenSecretRef is a secret key selector for
|
||||
|
||||
@ -140,7 +140,8 @@ type VenafiTPP struct {
|
||||
// VenafiCloud defines connection configuration details for Venafi Cloud
|
||||
type VenafiCloud struct {
|
||||
// URL is the base URL for Venafi Cloud
|
||||
URL string `json:"url"`
|
||||
// +optional
|
||||
URL string `json:"url,omitempty"`
|
||||
|
||||
// APITokenSecretRef is a secret key selector for the Venafi Cloud API token.
|
||||
APITokenSecretRef cmmeta.SecretKeySelector `json:"apiTokenSecretRef"`
|
||||
|
||||
@ -140,7 +140,8 @@ type VenafiTPP struct {
|
||||
// VenafiCloud defines connection configuration details for Venafi Cloud
|
||||
type VenafiCloud struct {
|
||||
// URL is the base URL for Venafi Cloud
|
||||
URL string `json:"url"`
|
||||
// +optional
|
||||
URL string `json:"url,omitempty"`
|
||||
|
||||
// APITokenSecretRef is a secret key selector for the Venafi Cloud API token.
|
||||
APITokenSecretRef cmmeta.SecretKeySelector `json:"apiTokenSecretRef"`
|
||||
|
||||
@ -128,7 +128,8 @@ type VenafiTPP struct {
|
||||
// VenafiCloud defines connection configuration details for Venafi Cloud
|
||||
type VenafiCloud struct {
|
||||
// URL is the base URL for Venafi Cloud
|
||||
URL string `json:"url"`
|
||||
// +optional
|
||||
URL string `json:"url,omitempty"`
|
||||
|
||||
// APITokenSecretRef is a secret key selector for the Venafi Cloud API token.
|
||||
APITokenSecretRef cmmeta.SecretKeySelector `json:"apiTokenSecretRef"`
|
||||
|
||||
Loading…
Reference in New Issue
Block a user