Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

operators rhoas-operator (0.9.2) #461

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: cloudserviceaccountrequests.rhoas.redhat.com
spec:
group: rhoas.redhat.com
names:
kind: CloudServiceAccountRequest
plural: cloudserviceaccountrequests
shortNames:
- csar
singular: cloudserviceaccountrequest
scope: Namespaced
versions:
- name: v1alpha1
served: true
storage: true
subresources:
status: {}
schema:
openAPIV3Schema:
properties:
spec:
properties:
serviceAccountName:
type: string
serviceAccountDescription:
type: string
serviceAccountSecretName:
type: string
accessTokenSecretName:
type: string
type: object
## temporary required to workaround lack of scheduling issue with the operator SDK
x-kubernetes-preserve-unknown-fields: true
status:
properties:
message:
nullable: true
type: string
updated:
nullable: true
type: string
serviceAccountSecretName:
nullable: true
type: string
conditions:
type: array
nullable: true
items:
type: object
properties:
type:
type: string
reason:
type: string
message:
type: string
status:
type: string
lastTransitionTime:
type: string
lastTransitionGeneration:
type: integer
format: int64
nullable: true
type: object
type: object
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: cloudservicesrequests.rhoas.redhat.com
spec:
group: rhoas.redhat.com
names:
kind: CloudServicesRequest
plural: cloudservicesrequests
shortNames:
- cscr
singular: cloudservicesrequest
scope: Namespaced
versions:
- name: v1alpha1
served: true
storage: true
subresources:
status: {}
schema:
openAPIV3Schema:
properties:
spec:
properties:
accessTokenSecretName:
type: string
type: object
## temporary required to workaround lack of scheduling issue with the operator SDK
x-kubernetes-preserve-unknown-fields: true
status:
properties:
message:
type: string
nullable: true
updated:
type: string
nullable: true
lastUpdate:
type: string
nullable: true
conditions:
type: array
nullable: true
items:
type: object
properties:
type:
type: string
reason:
type: string
message:
type: string
status:
type: string
lastTransitionTime:
type: string
lastTransitionGeneration:
type: integer
format: int64
nullable: true
userKafkas:
type: array
nullable: true
items:
type: object
properties:
id:
type: string
name:
type: string
created:
type: string
provider:
type: string
region:
type: string
owner:
type: string
bootstrapServerHost:
type: string
updatedAt:
type: string
createdAt:
type: string
status:
type: string
serviceRegistries:
type: array
nullable: true
items:
type: object
properties:
id:
type: string
registryStatus:
type: string
registryUrl:
type: string
name:
type: string
lastUpdated:
type: string
type: object
type: object
Loading