-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #102 from philips-labs/spire-controller-manager
Add support for spire controller manager
- Loading branch information
Showing
16 changed files
with
689 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
spire-server: | ||
k8sWorkloadRegistrar: | ||
enabled: false | ||
|
||
controllerManager: | ||
enabled: true |
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 |
---|---|---|
|
@@ -27,12 +27,13 @@ description: | | |
- --service-account-signing-key-file=/run/config/pki/sa.key | ||
``` | ||
type: application | ||
version: 0.10.2 | ||
version: 0.11.0 | ||
appVersion: "1.5.4" | ||
keywords: ["spiffe", "spire", "spire-server", "spire-agent", "oidc"] | ||
home: https://github.com/philips-labs/helm-charts/charts/spire | ||
keywords: ["spiffe", "spire", "spire-server", "spire-agent", "oidc", "spire-controller-manager"] | ||
home: https://github.com/philips-labs/helm-charts/tree/main/charts/spire | ||
sources: | ||
- https://github.com/philips-labs/helm-charts/charts/spire | ||
- https://github.com/philips-labs/helm-charts/tree/main/charts/spire | ||
icon: https://spiffe.io/img/logos/spire/icon/color/spire-icon-color.png | ||
maintainers: | ||
- name: marcofranssen | ||
email: [email protected] | ||
|
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
96 changes: 96 additions & 0 deletions
96
charts/spire/charts/spire-server/crds/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,96 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.8.0 | ||
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 | ||
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.