Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Signed-off-by: 1gtm <[email protected]>
  • Loading branch information
1gtm authored Sep 16, 2024
1 parent a248f8b commit 76187fe
Show file tree
Hide file tree
Showing 5 changed files with 13,472 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
labels:
app.kubernetes.io/name: kubedb
name: cassandraversions.catalog.kubedb.com
spec:
group: catalog.kubedb.com
names:
categories:
- catalog
- kubedb
- appscode
kind: CassandraVersion
listKind: CassandraVersionList
plural: cassandraversions
shortNames:
- casversion
singular: cassandraversion
scope: Cluster
versions:
- additionalPrinterColumns:
- jsonPath: .spec.version
name: Version
type: string
- jsonPath: .spec.db.image
name: DB_IMAGE
type: string
- jsonPath: .spec.deprecated
name: Deprecated
type: boolean
- jsonPath: .metadata.creationTimestamp
name: Age
type: date
name: v1alpha1
schema:
openAPIV3Schema:
properties:
apiVersion:
type: string
kind:
type: string
metadata:
type: object
spec:
properties:
db:
properties:
image:
type: string
required:
- image
type: object
initContainer:
properties:
image:
type: string
required:
- image
type: object
securityContext:
properties:
runAsUser:
format: int64
type: integer
type: object
ui:
items:
properties:
disable:
type: boolean
name:
type: string
values:
x-kubernetes-preserve-unknown-fields: true
version:
type: string
required:
- name
type: object
type: array
version:
type: string
required:
- db
- initContainer
- version
type: object
status:
type: object
type: object
served: true
storage: true
subresources: {}
94 changes: 94 additions & 0 deletions charts/kubedb-crds/crds/catalog.kubedb.com_cassandraversions.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
labels:
app.kubernetes.io/name: kubedb
name: cassandraversions.catalog.kubedb.com
spec:
group: catalog.kubedb.com
names:
categories:
- catalog
- kubedb
- appscode
kind: CassandraVersion
listKind: CassandraVersionList
plural: cassandraversions
shortNames:
- casversion
singular: cassandraversion
scope: Cluster
versions:
- additionalPrinterColumns:
- jsonPath: .spec.version
name: Version
type: string
- jsonPath: .spec.db.image
name: DB_IMAGE
type: string
- jsonPath: .spec.deprecated
name: Deprecated
type: boolean
- jsonPath: .metadata.creationTimestamp
name: Age
type: date
name: v1alpha1
schema:
openAPIV3Schema:
properties:
apiVersion:
type: string
kind:
type: string
metadata:
type: object
spec:
properties:
db:
properties:
image:
type: string
required:
- image
type: object
initContainer:
properties:
image:
type: string
required:
- image
type: object
securityContext:
properties:
runAsUser:
format: int64
type: integer
type: object
ui:
items:
properties:
disable:
type: boolean
name:
type: string
values:
x-kubernetes-preserve-unknown-fields: true
version:
type: string
required:
- name
type: object
type: array
version:
type: string
required:
- db
- initContainer
- version
type: object
status:
type: object
type: object
served: true
storage: true
subresources: {}
Loading

0 comments on commit 76187fe

Please sign in to comment.