Drop initial code
This commit is contained in:
@@ -0,0 +1,98 @@
|
||||
---
|
||||
apiVersion: apiextensions.k8s.io/v1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
annotations:
|
||||
controller-gen.kubebuilder.io/version: v0.19.0
|
||||
name: clusters.k8sprovisioner.appstack.io
|
||||
spec:
|
||||
group: k8sprovisioner.appstack.io
|
||||
names:
|
||||
kind: Cluster
|
||||
listKind: ClusterList
|
||||
plural: clusters
|
||||
singular: cluster
|
||||
scope: Namespaced
|
||||
versions:
|
||||
- name: v1alpha1
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
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:
|
||||
properties:
|
||||
controlPlaneHA:
|
||||
type: boolean
|
||||
infraRef:
|
||||
type: string
|
||||
kubernetesVersion:
|
||||
type: string
|
||||
workerPools:
|
||||
items:
|
||||
properties:
|
||||
cpuCores:
|
||||
type: integer
|
||||
diskGb:
|
||||
type: integer
|
||||
memoryGb:
|
||||
type: integer
|
||||
name:
|
||||
type: string
|
||||
quantity:
|
||||
type: integer
|
||||
required:
|
||||
- cpuCores
|
||||
- diskGb
|
||||
- memoryGb
|
||||
- name
|
||||
- quantity
|
||||
type: object
|
||||
type: array
|
||||
required:
|
||||
- controlPlaneHA
|
||||
- infraRef
|
||||
- kubernetesVersion
|
||||
- workerPools
|
||||
type: object
|
||||
status:
|
||||
properties:
|
||||
generatedAccount:
|
||||
description: '[NEW] Struct to track the Harvester Identity'
|
||||
properties:
|
||||
secretRef:
|
||||
description: The Secret created in this namespace (e.g. "harvesterconfig-test-cluster-01")
|
||||
type: string
|
||||
serviceAccountName:
|
||||
description: The ServiceAccount created on Harvester (e.g. "prov-test-cluster-01")
|
||||
type: string
|
||||
tokenExpiresAt:
|
||||
description: Expiry for future rotation logic
|
||||
format: date-time
|
||||
type: string
|
||||
type: object
|
||||
ready:
|
||||
type: boolean
|
||||
required:
|
||||
- ready
|
||||
type: object
|
||||
type: object
|
||||
served: true
|
||||
storage: true
|
||||
subresources:
|
||||
status: {}
|
||||
@@ -0,0 +1,84 @@
|
||||
---
|
||||
apiVersion: apiextensions.k8s.io/v1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
annotations:
|
||||
controller-gen.kubebuilder.io/version: v0.19.0
|
||||
name: infras.k8sprovisioner.appstack.io
|
||||
spec:
|
||||
group: k8sprovisioner.appstack.io
|
||||
names:
|
||||
kind: Infra
|
||||
listKind: InfraList
|
||||
plural: infras
|
||||
singular: infra
|
||||
scope: Namespaced
|
||||
versions:
|
||||
- name: v1alpha1
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
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:
|
||||
properties:
|
||||
cloudCredentialSecret:
|
||||
description: |-
|
||||
1. Rancher/Cloud Settings
|
||||
The "Master" credential name in cattle-global-data
|
||||
type: string
|
||||
harvesterUrl:
|
||||
description: This removes the need for auto-discovery.
|
||||
type: string
|
||||
imageName:
|
||||
type: string
|
||||
networkName:
|
||||
type: string
|
||||
rancherUrl:
|
||||
type: string
|
||||
rke2ConfigYaml:
|
||||
description: 3. Governance Configs
|
||||
type: string
|
||||
sshUser:
|
||||
type: string
|
||||
userData:
|
||||
type: string
|
||||
vmNamespace:
|
||||
description: 2. Environment Defaults
|
||||
type: string
|
||||
required:
|
||||
- cloudCredentialSecret
|
||||
- harvesterUrl
|
||||
- imageName
|
||||
- networkName
|
||||
- rancherUrl
|
||||
- sshUser
|
||||
- vmNamespace
|
||||
type: object
|
||||
status:
|
||||
properties:
|
||||
ready:
|
||||
type: boolean
|
||||
required:
|
||||
- ready
|
||||
type: object
|
||||
type: object
|
||||
served: true
|
||||
storage: true
|
||||
subresources:
|
||||
status: {}
|
||||
Reference in New Issue
Block a user