-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🌟 enhancement(VSecM): next helm charts and docs (#1133)
Signed-off-by: Volkan Özçelik <[email protected]>
- Loading branch information
Showing
15 changed files
with
8,624 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
100 changes: 100 additions & 0 deletions
100
k8s/0.27.2/crds/spire.spiffe.io_clusterfederatedtrustdomains.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
# Source: spire-crds/templates/spire.spiffe.io_clusterfederatedtrustdomains.yaml | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.11.1 | ||
helm.sh/resource-policy: keep | ||
creationTimestamp: null | ||
name: clusterfederatedtrustdomains.spire.spiffe.io | ||
spec: | ||
group: spire.spiffe.io | ||
names: | ||
kind: ClusterFederatedTrustDomain | ||
listKind: ClusterFederatedTrustDomainList | ||
plural: clusterfederatedtrustdomains | ||
singular: clusterfederatedtrustdomain | ||
scope: Cluster | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .spec.trustDomain | ||
name: Trust Domain | ||
type: string | ||
- jsonPath: .spec.bundleEndpointURL | ||
name: Endpoint URL | ||
type: string | ||
name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
description: ClusterFederatedTrustDomain is the Schema for the clusterfederatedtrustdomains | ||
API | ||
properties: | ||
apiVersion: | ||
description: 'APIVersion defines the versioned schema of this representation | ||
of an object. Servers should convert recognized schemas to the latest | ||
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' | ||
type: string | ||
kind: | ||
description: 'Kind is a string value representing the REST resource this | ||
object represents. Servers may infer this from the endpoint the client | ||
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: ClusterFederatedTrustDomainSpec defines the desired state | ||
of ClusterFederatedTrustDomain | ||
properties: | ||
bundleEndpointProfile: | ||
description: BundleEndpointProfile is the profile for the bundle endpoint. | ||
properties: | ||
endpointSPIFFEID: | ||
description: EndpointSPIFFEID is the SPIFFE ID of the bundle endpoint. | ||
It is required for the "https_spiffe" profile. | ||
type: string | ||
type: | ||
description: Type is the type of the bundle endpoint profile. | ||
enum: | ||
- https_spiffe | ||
- https_web | ||
type: string | ||
required: | ||
- type | ||
type: object | ||
bundleEndpointURL: | ||
description: BundleEndpointURL is the URL of the bundle endpoint. | ||
It must be an HTTPS URL and cannot contain userinfo (i.e. username/password). | ||
type: string | ||
className: | ||
description: Set the class of controller to handle this object. | ||
type: string | ||
trustDomain: | ||
description: TrustDomain is the name of the trust domain to federate | ||
with (e.g. example.org) | ||
pattern: '[a-z0-9._-]{1,255}' | ||
type: string | ||
trustDomainBundle: | ||
description: TrustDomainBundle is the contents of the bundle for the | ||
referenced trust domain. This field is optional when the resource | ||
is created. | ||
type: string | ||
required: | ||
- bundleEndpointProfile | ||
- bundleEndpointURL | ||
- trustDomain | ||
type: object | ||
status: | ||
description: ClusterFederatedTrustDomainStatus defines the observed state | ||
of ClusterFederatedTrustDomain | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
Oops, something went wrong.