Skip to content

Commit

Permalink
Make fmt
Browse files Browse the repository at this point in the history
Signed-off-by: Neaj Morshad <[email protected]>
  • Loading branch information
Neaj-Morshad-101 committed Apr 17, 2024
1 parent 5866ae9 commit e0eccde
Show file tree
Hide file tree
Showing 8 changed files with 5,980 additions and 552 deletions.
86 changes: 43 additions & 43 deletions charts/kubedb-crd-manager/README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion charts/kubedb-crd-manager/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ featureGates:
Kafka: false
MariaDB: false
Memcached: false
MicrosoftSQLServer: false
MongoDB: false
MySQL: false
PerconaXtraDB: false
Expand All @@ -95,5 +94,6 @@ featureGates:
Singlestore: false
Solr: false
ZooKeeper: false
MsSQL: true

removeUnusedCRDs: false
2 changes: 1 addition & 1 deletion charts/kubedb-crds/crds/kubedb.com_mssqls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4802,8 +4802,8 @@ spec:
type: object
mode:
enum:
- Standalone
- AvailabilityGroup
- RemoteReplica
type: string
type: object
version:
Expand Down
2 changes: 1 addition & 1 deletion charts/kubedb-ui-server/crds/kubedb.com_mssqls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4802,8 +4802,8 @@ spec:
type: object
mode:
enum:
- Standalone
- AvailabilityGroup
- RemoteReplica
type: string
type: object
version:
Expand Down
2 changes: 1 addition & 1 deletion charts/kubedb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ The following table lists the configurable parameters of the `kubedb` chart and
| global.featureGates.Kafka | | <code>true</code> |
| global.featureGates.MariaDB | | <code>true</code> |
| global.featureGates.Memcached | | <code>false</code> |
| global.featureGates.MicrosoftSQLServer | | <code>false</code> |
| global.featureGates.MongoDB | | <code>true</code> |
| global.featureGates.MySQL | | <code>true</code> |
| global.featureGates.PerconaXtraDB | | <code>false</code> |
Expand All @@ -72,6 +71,7 @@ The following table lists the configurable parameters of the `kubedb` chart and
| global.featureGates.Singlestore | | <code>false</code> |
| global.featureGates.Solr | | <code>false</code> |
| global.featureGates.ZooKeeper | | <code>false</code> |
| global.featureGates.MsSQL | | <code>true</code> |
| global.monitoring.agent | Name of monitoring agent (one of "prometheus.io", "prometheus.io/operator", "prometheus.io/builtin") | <code>""</code> |
| global.monitoring.serviceMonitor.labels | Specify the labels for ServiceMonitor. Prometheus crd will select ServiceMonitor using these labels. Only usable when monitoring agent is `prometheus.io/operator`. | <code>{"monitoring.appscode.com/prometheus":"auto"}</code> |
| petset.enabled | If enabled, installs the petset chart | <code>true</code> |
Expand Down
2 changes: 1 addition & 1 deletion charts/kubedb/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ global:
Kafka: true
MariaDB: true
Memcached: false
MicrosoftSQLServer: false
MongoDB: true
MySQL: true
PerconaXtraDB: false
Expand All @@ -60,6 +59,7 @@ global:
Singlestore: false
Solr: false
ZooKeeper: false
MsSQL: true

monitoring:
# Name of monitoring agent (one of "prometheus.io", "prometheus.io/operator", "prometheus.io/builtin")
Expand Down
156 changes: 156 additions & 0 deletions crds/kubedb-catalog-crds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1256,6 +1256,162 @@ spec:
storage: true
subresources: {}

---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
labels:
app.kubernetes.io/name: kubedb
name: mssqlversions.catalog.kubedb.com
spec:
group: catalog.kubedb.com
names:
categories:
- datastore
- kubedb
- appscode
kind: MsSQLVersion
listKind: MsSQLVersionList
plural: mssqlversions
shortNames:
- msversion
singular: mssqlversion
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:
coordinator:
properties:
image:
type: string
required:
- image
type: object
db:
properties:
image:
type: string
required:
- image
type: object
deprecated:
type: boolean
initContainer:
properties:
image:
type: string
required:
- image
type: object
podSecurityPolicies:
properties:
databasePolicyName:
type: string
required:
- databasePolicyName
type: object
securityContext:
properties:
runAsGroup:
format: int64
type: integer
runAsUser:
format: int64
type: integer
type: object
stash:
properties:
addon:
properties:
backupTask:
properties:
name:
type: string
params:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
required:
- name
type: object
restoreTask:
properties:
name:
type: string
params:
items:
properties:
name:
type: string
value:
type: string
required:
- name
- value
type: object
type: array
required:
- name
type: object
required:
- backupTask
- restoreTask
type: object
type: object
updateConstraints:
properties:
allowlist:
items:
type: string
type: array
denylist:
items:
type: string
type: array
type: object
version:
type: string
required:
- db
- initContainer
- version
type: object
type: object
served: true
storage: true
subresources: {}

---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
Expand Down
Loading

0 comments on commit e0eccde

Please sign in to comment.