-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bringing APIs and controllers from https://github.com/openstack-k8s-operators/dataplane-operator Signed-off-by: Fabricio Aguiar <[email protected]>
- Loading branch information
Showing
137 changed files
with
19,839 additions
and
29 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
150 changes: 150 additions & 0 deletions
150
apis/bases/dataplane.openstack.org_openstackdataplanedeployments.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,150 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.11.1 | ||
creationTimestamp: null | ||
name: openstackdataplanedeployments.dataplane.openstack.org | ||
spec: | ||
group: dataplane.openstack.org | ||
names: | ||
kind: OpenStackDataPlaneDeployment | ||
listKind: OpenStackDataPlaneDeploymentList | ||
plural: openstackdataplanedeployments | ||
shortNames: | ||
- osdpd | ||
- osdpdeployment | ||
- osdpdeployments | ||
singular: openstackdataplanedeployment | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- description: NodeSets | ||
jsonPath: .spec.nodeSets | ||
name: NodeSets | ||
type: string | ||
- description: Status | ||
jsonPath: .status.conditions[0].status | ||
name: Status | ||
type: string | ||
- description: Message | ||
jsonPath: .status.conditions[0].message | ||
name: Message | ||
type: string | ||
name: v1beta1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
apiVersion: | ||
type: string | ||
kind: | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
properties: | ||
ansibleExtraVars: | ||
x-kubernetes-preserve-unknown-fields: true | ||
ansibleLimit: | ||
type: string | ||
ansibleSkipTags: | ||
type: string | ||
ansibleTags: | ||
type: string | ||
deploymentRequeueTime: | ||
default: 15 | ||
minimum: 1 | ||
type: integer | ||
nodeSets: | ||
items: | ||
type: string | ||
type: array | ||
servicesOverride: | ||
items: | ||
type: string | ||
type: array | ||
required: | ||
- deploymentRequeueTime | ||
- nodeSets | ||
type: object | ||
x-kubernetes-validations: | ||
- message: OpenStackDataPlaneDeployment Spec is immutable | ||
rule: self == oldSelf | ||
status: | ||
properties: | ||
conditions: | ||
items: | ||
properties: | ||
lastTransitionTime: | ||
format: date-time | ||
type: string | ||
message: | ||
type: string | ||
reason: | ||
type: string | ||
severity: | ||
type: string | ||
status: | ||
type: string | ||
type: | ||
type: string | ||
required: | ||
- lastTransitionTime | ||
- status | ||
- type | ||
type: object | ||
type: array | ||
configMapHashes: | ||
additionalProperties: | ||
type: string | ||
type: object | ||
containerImages: | ||
additionalProperties: | ||
type: string | ||
type: object | ||
deployed: | ||
type: boolean | ||
deployedVersion: | ||
type: string | ||
nodeSetConditions: | ||
additionalProperties: | ||
items: | ||
properties: | ||
lastTransitionTime: | ||
format: date-time | ||
type: string | ||
message: | ||
type: string | ||
reason: | ||
type: string | ||
severity: | ||
type: string | ||
status: | ||
type: string | ||
type: | ||
type: string | ||
required: | ||
- lastTransitionTime | ||
- status | ||
- type | ||
type: object | ||
type: array | ||
type: object | ||
nodeSetHashes: | ||
additionalProperties: | ||
type: string | ||
type: object | ||
observedGeneration: | ||
format: int64 | ||
type: integer | ||
secretHashes: | ||
additionalProperties: | ||
type: string | ||
type: object | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
Oops, something went wrong.