-
Notifications
You must be signed in to change notification settings - Fork 580
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 #1724 from richardcase/ekscontrolplane
✨ Add EKS control plane
- Loading branch information
Showing
54 changed files
with
6,737 additions
and
106 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
104 changes: 104 additions & 0 deletions
104
config/crd/bases/infrastructure.cluster.x-k8s.io_awsmanagedclusters.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,104 @@ | ||
|
||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.2.9 | ||
creationTimestamp: null | ||
name: awsmanagedclusters.infrastructure.cluster.x-k8s.io | ||
spec: | ||
group: infrastructure.cluster.x-k8s.io | ||
names: | ||
categories: | ||
- cluster-api | ||
kind: AWSManagedCluster | ||
listKind: AWSManagedClusterList | ||
plural: awsmanagedclusters | ||
shortNames: | ||
- awsmc | ||
singular: awsmanagedcluster | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- description: Cluster to which this AWSManagedControl belongs | ||
jsonPath: .metadata.labels.cluster\.x-k8s\.io/cluster-name | ||
name: Cluster | ||
type: string | ||
- description: Control plane infrastructure is ready for worker nodes | ||
jsonPath: .status.ready | ||
name: Ready | ||
type: string | ||
- description: AWS VPC the control plane is using | ||
jsonPath: .spec.networkSpec.vpc.id | ||
name: VPC | ||
type: string | ||
- description: API Endpoint | ||
jsonPath: .spec.controlPlaneEndpoint.host | ||
name: Endpoint | ||
priority: 1 | ||
type: string | ||
name: v1alpha3 | ||
schema: | ||
openAPIV3Schema: | ||
description: AWSManagedCluster is the Schema for the awsmanagedclusters 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: AWSManagedClusterSpec defines the desired state of AWSManagedCluster | ||
properties: | ||
controlPlaneEndpoint: | ||
description: ControlPlaneEndpoint represents the endpoint used to communicate with the control plane. | ||
properties: | ||
host: | ||
description: The hostname on which the API server is serving. | ||
type: string | ||
port: | ||
description: The port on which the API server is serving. | ||
format: int32 | ||
type: integer | ||
required: | ||
- host | ||
- port | ||
type: object | ||
type: object | ||
status: | ||
description: AWSManagedClusterStatus defines the observed state of AWSManagedCluster | ||
properties: | ||
failureDomains: | ||
additionalProperties: | ||
description: FailureDomainSpec is the Schema for Cluster API failure domains. It allows controllers to understand how many failure domains a cluster can optionally span across. | ||
properties: | ||
attributes: | ||
additionalProperties: | ||
type: string | ||
description: Attributes is a free form map of attributes an infrastructure provider might use or require. | ||
type: object | ||
controlPlane: | ||
description: ControlPlane determines if this failure domain is suitable for use by control plane machines. | ||
type: boolean | ||
type: object | ||
description: FailureDomains specifies a list fo available availability zones that can be used | ||
type: object | ||
ready: | ||
description: Ready is when the AWSManagedControlPlane has a API server URL. | ||
type: boolean | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
Oops, something went wrong.