-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tamal Saha <[email protected]>
- Loading branch information
Showing
124 changed files
with
8,231 additions
and
203 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
content/docs/v2024.4.27/examples/druid/quickstart/deep-storage-config.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,15 @@ | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: deep-storage-config | ||
namespace: demo | ||
stringData: | ||
druid.storage.type: "s3" | ||
druid.storage.bucket: "druid" | ||
druid.storage.baseKey: "druid/segments" | ||
druid.s3.accessKey: "minio" | ||
druid.s3.secretKey: "minio123" | ||
druid.s3.protocol: "http" | ||
druid.s3.endpoint.signingRegion: "us-east-1" | ||
druid.s3.endpoint.url: "http://myminio-hl.demo.svc.cluster.local:9000/" | ||
|
52 changes: 52 additions & 0 deletions
52
content/docs/v2024.4.27/examples/druid/quickstart/druid-quickstart.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,52 @@ | ||
apiVersion: kubedb.com/v1alpha2 | ||
kind: Druid | ||
metadata: | ||
name: druid-quickstart | ||
namespace: demo | ||
spec: | ||
version: 28.0.1 | ||
deepStorage: | ||
type: s3 | ||
configSecret: | ||
name: deep-storage-config | ||
metadataStorage: | ||
name: mysql-demo | ||
namespace: demo | ||
createTables: true | ||
zookeeperRef: | ||
name: zk-demo | ||
namespace: demo | ||
topology: | ||
coordinators: | ||
replicas: 1 | ||
brokers: | ||
replicas: 1 | ||
historicals: | ||
replicas: 1 | ||
storage: | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 1Gi | ||
storageClassName: standard | ||
middleManagers: | ||
replicas: 1 | ||
storage: | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 1Gi | ||
storageClassName: standard | ||
routers: | ||
replicas: 1 | ||
storageType: Durable | ||
terminationPolicy: Delete | ||
serviceTemplates: | ||
- alias: primary | ||
spec: | ||
type: LoadBalancer | ||
ports: | ||
- name: routers | ||
port: 8888 |
18 changes: 18 additions & 0 deletions
18
content/docs/v2024.4.27/examples/druid/quickstart/mysql-demo.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,18 @@ | ||
apiVersion: kubedb.com/v1alpha2 | ||
kind: MySQL | ||
metadata: | ||
name: mysql-demo | ||
namespace: demo | ||
spec: | ||
version: "8.0.35" | ||
storage: | ||
storageClassName: "standard" | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 100Mi | ||
init: | ||
script: | ||
configMap: | ||
name: my-init-script |
1 change: 1 addition & 0 deletions
1
content/docs/v2024.4.27/examples/druid/quickstart/mysql-init-script.sql
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 @@ | ||
CREATE DATABASE druid; |
17 changes: 17 additions & 0 deletions
17
content/docs/v2024.4.27/examples/druid/quickstart/zk-demo.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,17 @@ | ||
apiVersion: kubedb.com/v1alpha2 | ||
kind: ZooKeeper | ||
metadata: | ||
name: zk-demo | ||
namespace: demo | ||
spec: | ||
version: "3.7.2" | ||
adminServerPort: 8080 | ||
replicas: 1 | ||
storage: | ||
resources: | ||
requests: | ||
storage: "100Mi" | ||
storageClassName: "standard" | ||
accessModes: | ||
- ReadWriteOnce | ||
terminationPolicy: "WipeOut" |
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
8 changes: 8 additions & 0 deletions
8
content/docs/v2024.4.27/examples/kafka/connectcluster/config.properties
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,8 @@ | ||
key.converter.schemas.enable=true | ||
value.converter.schemas.enable=true | ||
internal.key.converter.schemas.enable=true | ||
internal.value.converter.schemas.enable=true | ||
internal.key.converter=org.apache.kafka.connect.json.JsonConverter | ||
internal.value.converter=org.apache.kafka.connect.json.JsonConverter | ||
key.converter=org.apache.kafka.connect.json.JsonConverter | ||
value.converter=org.apache.kafka.connect.json.JsonConverter |
23 changes: 23 additions & 0 deletions
23
content/docs/v2024.4.27/examples/kafka/connectcluster/kcc-distributed.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,23 @@ | ||
apiVersion: kafka.kubedb.com/v1alpha1 | ||
kind: ConnectCluster | ||
metadata: | ||
name: connectcluster-distributed | ||
namespace: demo | ||
spec: | ||
version: 3.6.1 | ||
enableSSL: true | ||
tls: | ||
issuerRef: | ||
apiGroup: cert-manager.io | ||
kind: Issuer | ||
name: connectcluster-ca-issuer | ||
configSecret: | ||
name: connectcluster-custom-config | ||
replicas: 3 | ||
connectorPlugins: | ||
- postgres-2.4.2.final | ||
- jdbc-2.6.1.final | ||
kafkaRef: | ||
name: kafka-prod | ||
namespace: demo | ||
terminationPolicy: WipeOut |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
apiVersion: cert-manager.io/v1 | ||
kind: Issuer | ||
metadata: | ||
name: connectcluster-ca-issuer | ||
namespace: demo | ||
spec: | ||
ca: | ||
secretName: connectcluster-ca |
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
15 changes: 15 additions & 0 deletions
15
content/docs/v2024.4.27/examples/pgpool/quickstart/quick-pgpool.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,15 @@ | ||
apiVersion: kubedb.com/v1alpha2 | ||
kind: Pgpool | ||
metadata: | ||
name: quick-pgpool | ||
namespace: pool | ||
spec: | ||
version: "4.5.0" | ||
replicas: 1 | ||
postgresRef: | ||
name: quick-postgres | ||
namespace: demo | ||
sslMode: disable | ||
clientAuthMode: md5 | ||
syncUsers: true | ||
terminationPolicy: WipeOut |
19 changes: 19 additions & 0 deletions
19
content/docs/v2024.4.27/examples/pgpool/quickstart/quick-postgres.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,19 @@ | ||
apiVersion: kubedb.com/v1alpha2 | ||
kind: Postgres | ||
metadata: | ||
name: quick-postgres | ||
namespace: demo | ||
spec: | ||
replicas: 3 | ||
version: "13.13" | ||
configSecret: | ||
name: pg-configuration | ||
storageType: Durable | ||
storage: | ||
storageClassName: "standard" | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 50Mi | ||
terminationPolicy: WipeOut |
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 @@ | ||
max_connections=400 |
32 changes: 24 additions & 8 deletions
32
content/docs/v2024.4.27/examples/postgres/custom-version/postgresversion.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 |
---|---|---|
@@ -1,23 +1,39 @@ | ||
apiVersion: catalog.kubedb.com/v1alpha1 | ||
kind: PostgresVersion | ||
metadata: | ||
name: timescaledb-2.1.0-pg13 | ||
name: timescaledb-2.14.2-pg14 | ||
spec: | ||
archiver: | ||
addon: | ||
name: postgres-addon | ||
tasks: | ||
manifestBackup: | ||
name: manifest-backup | ||
manifestRestore: | ||
name: manifest-restore | ||
volumeSnapshot: | ||
name: volume-snapshot | ||
walg: | ||
image: ghcr.io/kubedb/postgres-archiver:(v0.6.0)_14.10-alpine | ||
coordinator: | ||
image: kubedb/pg-coordinator:v0.1.0 | ||
image: ghcr.io/kubedb/pg-coordinator:v0.29.0 | ||
db: | ||
image: timescale/timescaledb:2.1.0-pg13-oss | ||
baseOS: alpine | ||
image: timescale/timescaledb:2.14.2-pg14-oss | ||
distribution: TimescaleDB | ||
exporter: | ||
image: prometheuscommunity/postgres-exporter:v0.9.0 | ||
image: prometheuscommunity/postgres-exporter:v0.15.0 | ||
initContainer: | ||
image: kubedb/postgres-init:0.1.0 | ||
image: ghcr.io/kubedb/postgres-init:0.12.0 | ||
podSecurityPolicies: | ||
databasePolicyName: postgres-db | ||
securityContext: | ||
runAsAnyNonRoot: false | ||
runAsUser: 70 | ||
stash: | ||
addon: | ||
backupTask: | ||
name: postgres-backup-13.1 | ||
name: postgres-backup-14.0 | ||
restoreTask: | ||
name: postgres-restore-13.1 | ||
version: "13.13" | ||
name: postgres-restore-14.0 | ||
version: "14.11" |
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
52 changes: 52 additions & 0 deletions
52
content/docs/v2024.4.27/examples/singlestore/quickstart/quickstart.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,52 @@ | ||
apiVersion: kubedb.com/v1alpha2 | ||
kind: Singlestore | ||
metadata: | ||
name: sdb-quickstart | ||
namespace: demo | ||
spec: | ||
version: 8.5.7 | ||
topology: | ||
aggregator: | ||
replicas: 3 | ||
podTemplate: | ||
spec: | ||
containers: | ||
- name: singlestore | ||
resources: | ||
limits: | ||
memory: "2Gi" | ||
cpu: "0.5" | ||
requests: | ||
memory: "2Gi" | ||
cpu: "0.5" | ||
storage: | ||
storageClassName: "standard" | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 1Gi | ||
leaf: | ||
replicas: 2 | ||
podTemplate: | ||
spec: | ||
containers: | ||
- name: singlestore | ||
resources: | ||
limits: | ||
memory: "2Gi" | ||
cpu: "0.5" | ||
requests: | ||
memory: "2Gi" | ||
cpu: "0.5" | ||
storage: | ||
storageClassName: "standard" | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 10Gi | ||
licenseSecret: | ||
name: license-secret | ||
storageType: Durable | ||
terminationPolicy: WipeOut |
17 changes: 17 additions & 0 deletions
17
content/docs/v2024.4.27/examples/zookeeper/quickstart/zoo.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,17 @@ | ||
apiVersion: kubedb.com/v1alpha2 | ||
kind: ZooKeeper | ||
metadata: | ||
name: zk-quickstart | ||
namespace: demo | ||
spec: | ||
version: "3.9.1" | ||
adminServerPort: 8080 | ||
replicas: 3 | ||
storage: | ||
resources: | ||
requests: | ||
storage: "1Gi" | ||
storageClassName: "standard" | ||
accessModes: | ||
- ReadWriteOnce | ||
terminationPolicy: "WipeOut" |
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
Oops, something went wrong.