mirror of
https://github.com/vmware-tanzu/pinniped.git
synced 2026-01-08 15:21:55 +00:00
run codegen for changes in previous commit
This commit is contained in:
10
generated/1.30/README.adoc
generated
10
generated/1.30/README.adoc
generated
@@ -23,6 +23,8 @@ Package v1alpha1 is the v1alpha1 version of the Pinniped concierge authenticatio
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[id="{anchor_prefix}-go-pinniped-dev-generated-1-30-apis-concierge-authentication-v1alpha1-certificateauthoritydatasourcespec"]
|
||||
==== CertificateAuthorityDataSourceSpec
|
||||
|
||||
@@ -37,8 +39,9 @@ CertificateAuthorityDataSourceSpec provides a source for CA bundle used for clie
|
||||
|===
|
||||
| Field | Description
|
||||
| *`kind`* __string__ | Kind configures whether the CA bundle is being sourced from a Kubernetes secret or a configmap. +
|
||||
Secrets must be of type kubernetes.io/tls or Opaque. +
|
||||
Allowed values are "Secret" or "ConfigMap". +
|
||||
"ConfigMap" uses a Kubernetes configmap to source CA Bundles. +
|
||||
"Secret" uses Kubernetes secrets of type kubernetes.io/tls or Opaque to source CA Bundles. +
|
||||
| *`name`* __string__ | Name is the resource name of the secret or configmap from which to read the CA bundle. +
|
||||
The referenced secret or configmap must be created in the same namespace where Pinniped Concierge is installed. +
|
||||
| *`key`* __string__ | Key is the key name within the secret or configmap from which to read the CA bundle. +
|
||||
@@ -1675,6 +1678,8 @@ Optional, when empty this defaults to "objectGUID". +
|
||||
|===
|
||||
|
||||
|
||||
|
||||
|
||||
[id="{anchor_prefix}-go-pinniped-dev-generated-1-30-apis-supervisor-idp-v1alpha1-certificateauthoritydatasourcespec"]
|
||||
==== CertificateAuthorityDataSourceSpec
|
||||
|
||||
@@ -1689,8 +1694,9 @@ CertificateAuthorityDataSourceSpec provides a source for CA bundle used for clie
|
||||
|===
|
||||
| Field | Description
|
||||
| *`kind`* __string__ | Kind configures whether the CA bundle is being sourced from a Kubernetes secret or a configmap. +
|
||||
Secrets must be of type kubernetes.io/tls or Opaque. +
|
||||
Allowed values are "Secret" or "ConfigMap". +
|
||||
"ConfigMap" uses a Kubernetes configmap to source CA Bundles. +
|
||||
"Secret" uses Kubernetes secrets of type kubernetes.io/tls or Opaque to source CA Bundles. +
|
||||
| *`name`* __string__ | Name is the resource name of the secret or configmap from which to read the CA bundle. +
|
||||
The referenced secret or configmap must be created in the same namespace where Pinniped Supervisor is installed. +
|
||||
| *`key`* __string__ | Key is the key name within the secret or configmap from which to read the CA bundle. +
|
||||
|
||||
@@ -3,12 +3,26 @@
|
||||
|
||||
package v1alpha1
|
||||
|
||||
// CertificateAuthorityDataSourceKind enumerates the sources for CA Bundles.
|
||||
//
|
||||
// +kubebuilder:validation:Enum=Secret;ConfigMap
|
||||
type CertificateAuthorityDataSourceKind string
|
||||
|
||||
const (
|
||||
// CertificateAuthorityDataSourceKindConfigMap uses a Kubernetes configmap to source CA Bundles.
|
||||
CertificateAuthorityDataSourceKindConfigMap = CertificateAuthorityDataSourceKind("ConfigMap")
|
||||
|
||||
// CertificateAuthorityDataSourceKindSecret uses a Kubernetes secret to source CA Bundles.
|
||||
// Secrets used to source CA Bundles must be of type kubernetes.io/tls or Opaque.
|
||||
CertificateAuthorityDataSourceKindSecret = CertificateAuthorityDataSourceKind("Secret")
|
||||
)
|
||||
|
||||
// CertificateAuthorityDataSourceSpec provides a source for CA bundle used for client-side TLS verification.
|
||||
type CertificateAuthorityDataSourceSpec struct {
|
||||
// Kind configures whether the CA bundle is being sourced from a Kubernetes secret or a configmap.
|
||||
// Secrets must be of type kubernetes.io/tls or Opaque.
|
||||
// Allowed values are "Secret" or "ConfigMap".
|
||||
// +kubebuilder:validation:Enum=Secret;ConfigMap
|
||||
// "ConfigMap" uses a Kubernetes configmap to source CA Bundles.
|
||||
// "Secret" uses Kubernetes secrets of type kubernetes.io/tls or Opaque to source CA Bundles.
|
||||
Kind string `json:"kind"`
|
||||
// Name is the resource name of the secret or configmap from which to read the CA bundle.
|
||||
// The referenced secret or configmap must be created in the same namespace where Pinniped Concierge is installed.
|
||||
|
||||
@@ -3,12 +3,26 @@
|
||||
|
||||
package v1alpha1
|
||||
|
||||
// CertificateAuthorityDataSourceKind enumerates the sources for CA Bundles.
|
||||
//
|
||||
// +kubebuilder:validation:Enum=Secret;ConfigMap
|
||||
type CertificateAuthorityDataSourceKind string
|
||||
|
||||
const (
|
||||
// CertificateAuthorityDataSourceKindConfigMap uses a Kubernetes configmap to source CA Bundles.
|
||||
CertificateAuthorityDataSourceKindConfigMap = CertificateAuthorityDataSourceKind("ConfigMap")
|
||||
|
||||
// CertificateAuthorityDataSourceKindSecret uses a Kubernetes secret to source CA Bundles.
|
||||
// Secrets used to source CA Bundles must be of type kubernetes.io/tls or Opaque.
|
||||
CertificateAuthorityDataSourceKindSecret = CertificateAuthorityDataSourceKind("Secret")
|
||||
)
|
||||
|
||||
// CertificateAuthorityDataSourceSpec provides a source for CA bundle used for client-side TLS verification.
|
||||
type CertificateAuthorityDataSourceSpec struct {
|
||||
// Kind configures whether the CA bundle is being sourced from a Kubernetes secret or a configmap.
|
||||
// Secrets must be of type kubernetes.io/tls or Opaque.
|
||||
// Allowed values are "Secret" or "ConfigMap".
|
||||
// +kubebuilder:validation:Enum=Secret;ConfigMap
|
||||
// "ConfigMap" uses a Kubernetes configmap to source CA Bundles.
|
||||
// "Secret" uses Kubernetes secrets of type kubernetes.io/tls or Opaque to source CA Bundles.
|
||||
Kind string `json:"kind"`
|
||||
// Name is the resource name of the secret or configmap from which to read the CA bundle.
|
||||
// The referenced secret or configmap must be created in the same namespace where Pinniped Supervisor is installed.
|
||||
|
||||
@@ -110,11 +110,9 @@ spec:
|
||||
kind:
|
||||
description: |-
|
||||
Kind configures whether the CA bundle is being sourced from a Kubernetes secret or a configmap.
|
||||
Secrets must be of type kubernetes.io/tls or Opaque.
|
||||
Allowed values are "Secret" or "ConfigMap".
|
||||
enum:
|
||||
- Secret
|
||||
- ConfigMap
|
||||
"ConfigMap" uses a Kubernetes configmap to source CA Bundles.
|
||||
"Secret" uses Kubernetes secrets of type kubernetes.io/tls or Opaque to source CA Bundles.
|
||||
type: string
|
||||
name:
|
||||
description: |-
|
||||
|
||||
@@ -81,11 +81,9 @@ spec:
|
||||
kind:
|
||||
description: |-
|
||||
Kind configures whether the CA bundle is being sourced from a Kubernetes secret or a configmap.
|
||||
Secrets must be of type kubernetes.io/tls or Opaque.
|
||||
Allowed values are "Secret" or "ConfigMap".
|
||||
enum:
|
||||
- Secret
|
||||
- ConfigMap
|
||||
"ConfigMap" uses a Kubernetes configmap to source CA Bundles.
|
||||
"Secret" uses Kubernetes secrets of type kubernetes.io/tls or Opaque to source CA Bundles.
|
||||
type: string
|
||||
name:
|
||||
description: |-
|
||||
|
||||
@@ -185,11 +185,9 @@ spec:
|
||||
kind:
|
||||
description: |-
|
||||
Kind configures whether the CA bundle is being sourced from a Kubernetes secret or a configmap.
|
||||
Secrets must be of type kubernetes.io/tls or Opaque.
|
||||
Allowed values are "Secret" or "ConfigMap".
|
||||
enum:
|
||||
- Secret
|
||||
- ConfigMap
|
||||
"ConfigMap" uses a Kubernetes configmap to source CA Bundles.
|
||||
"Secret" uses Kubernetes secrets of type kubernetes.io/tls or Opaque to source CA Bundles.
|
||||
type: string
|
||||
name:
|
||||
description: |-
|
||||
|
||||
@@ -244,11 +244,9 @@ spec:
|
||||
kind:
|
||||
description: |-
|
||||
Kind configures whether the CA bundle is being sourced from a Kubernetes secret or a configmap.
|
||||
Secrets must be of type kubernetes.io/tls or Opaque.
|
||||
Allowed values are "Secret" or "ConfigMap".
|
||||
enum:
|
||||
- Secret
|
||||
- ConfigMap
|
||||
"ConfigMap" uses a Kubernetes configmap to source CA Bundles.
|
||||
"Secret" uses Kubernetes secrets of type kubernetes.io/tls or Opaque to source CA Bundles.
|
||||
type: string
|
||||
name:
|
||||
description: |-
|
||||
|
||||
@@ -176,11 +176,9 @@ spec:
|
||||
kind:
|
||||
description: |-
|
||||
Kind configures whether the CA bundle is being sourced from a Kubernetes secret or a configmap.
|
||||
Secrets must be of type kubernetes.io/tls or Opaque.
|
||||
Allowed values are "Secret" or "ConfigMap".
|
||||
enum:
|
||||
- Secret
|
||||
- ConfigMap
|
||||
"ConfigMap" uses a Kubernetes configmap to source CA Bundles.
|
||||
"Secret" uses Kubernetes secrets of type kubernetes.io/tls or Opaque to source CA Bundles.
|
||||
type: string
|
||||
name:
|
||||
description: |-
|
||||
|
||||
@@ -226,11 +226,9 @@ spec:
|
||||
kind:
|
||||
description: |-
|
||||
Kind configures whether the CA bundle is being sourced from a Kubernetes secret or a configmap.
|
||||
Secrets must be of type kubernetes.io/tls or Opaque.
|
||||
Allowed values are "Secret" or "ConfigMap".
|
||||
enum:
|
||||
- Secret
|
||||
- ConfigMap
|
||||
"ConfigMap" uses a Kubernetes configmap to source CA Bundles.
|
||||
"Secret" uses Kubernetes secrets of type kubernetes.io/tls or Opaque to source CA Bundles.
|
||||
type: string
|
||||
name:
|
||||
description: |-
|
||||
|
||||
Reference in New Issue
Block a user