Skip to content

Commit

Permalink
operators rhoas-operator (0.9.2)
Browse files Browse the repository at this point in the history
  • Loading branch information
secondsun committed Nov 19, 2021
1 parent 8d82fe7 commit 7a880cf
Show file tree
Hide file tree
Showing 7 changed files with 605 additions and 0 deletions.
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

0 comments on commit 7a880cf

Please sign in to comment.