Merge pull request #2568 from munnerz/venafi-cloud-optional-url
Make the Venafi Cloud URL field optional
This commit is contained in:
commit
94bc5f60f8
@ -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"`
|
||||
|
||||
@ -120,7 +120,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
|
||||
// +optional
|
||||
URL string `json:"url,omitempty"`
|
||||
|
||||
// APITokenSecretRef is a secret key selector for the Venafi Cloud API token.
|
||||
APITokenSecretRef cmmeta.SecretKeySelector
|
||||
|
||||
Loading…
Reference in New Issue
Block a user