-
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
128 changed files
with
12,829 additions
and
23 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
content/docs/v2024.9.30/examples/singlestore/autoscaling/compute/sdb-cluster-autoscaler.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,21 @@ | ||
apiVersion: autoscaling.kubedb.com/v1alpha1 | ||
kind: SinglestoreAutoscaler | ||
metadata: | ||
name: sdb-cluster-autoscaler | ||
namespace: demo | ||
spec: | ||
databaseRef: | ||
name: sdb-sample | ||
compute: | ||
aggregator: | ||
trigger: "On" | ||
podLifeTimeThreshold: 5m | ||
minAllowed: | ||
cpu: 900m | ||
memory: 3Gi | ||
maxAllowed: | ||
cpu: 2000m | ||
memory: 6Gi | ||
controlledResources: ["cpu", "memory"] | ||
containerControlledValues: "RequestsAndLimits" | ||
resourceDiffPercentage: 10 |
52 changes: 52 additions & 0 deletions
52
content/docs/v2024.9.30/examples/singlestore/autoscaling/compute/sdb-compute.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-sample | ||
namespace: demo | ||
spec: | ||
version: 8.7.10 | ||
topology: | ||
aggregator: | ||
replicas: 2 | ||
podTemplate: | ||
spec: | ||
containers: | ||
- name: singlestore | ||
resources: | ||
limits: | ||
memory: "2Gi" | ||
cpu: "0.7" | ||
requests: | ||
memory: "2Gi" | ||
cpu: "0.7" | ||
storage: | ||
storageClassName: "standard" | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 1Gi | ||
leaf: | ||
replicas: 3 | ||
podTemplate: | ||
spec: | ||
containers: | ||
- name: singlestore | ||
resources: | ||
limits: | ||
memory: "2Gi" | ||
cpu: "0.7" | ||
requests: | ||
memory: "2Gi" | ||
cpu: "0.7" | ||
storage: | ||
storageClassName: "standard" | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 10Gi | ||
licenseSecret: | ||
name: license-secret | ||
storageType: Durable | ||
deletionPolicy: WipeOut |
52 changes: 52 additions & 0 deletions
52
content/docs/v2024.9.30/examples/singlestore/autoscaling/storage/sdb-compute.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-sample | ||
namespace: demo | ||
spec: | ||
version: 8.7.10 | ||
topology: | ||
aggregator: | ||
replicas: 2 | ||
podTemplate: | ||
spec: | ||
containers: | ||
- name: singlestore | ||
resources: | ||
limits: | ||
memory: "2Gi" | ||
cpu: "0.7" | ||
requests: | ||
memory: "2Gi" | ||
cpu: "0.7" | ||
storage: | ||
storageClassName: "standard" | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 1Gi | ||
leaf: | ||
replicas: 3 | ||
podTemplate: | ||
spec: | ||
containers: | ||
- name: singlestore | ||
resources: | ||
limits: | ||
memory: "2Gi" | ||
cpu: "0.7" | ||
requests: | ||
memory: "2Gi" | ||
cpu: "0.7" | ||
storage: | ||
storageClassName: "standard" | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 10Gi | ||
licenseSecret: | ||
name: license-secret | ||
storageType: Durable | ||
deletionPolicy: WipeOut |
15 changes: 15 additions & 0 deletions
15
content/docs/v2024.9.30/examples/singlestore/autoscaling/storage/sdb-storage-autoscaler.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: autoscaling.kubedb.com/v1alpha1 | ||
kind: SinglestoreAutoscaler | ||
metadata: | ||
name: sdb-cluster-autoscaler | ||
namespace: demo | ||
spec: | ||
databaseRef: | ||
name: sdb-sample | ||
storage: | ||
leaf: | ||
trigger: "On" | ||
usageThreshold: 30 | ||
scalingThreshold: 50 | ||
expansionMode: "Online" | ||
upperBound: "100Gi" |
11 changes: 11 additions & 0 deletions
11
content/docs/v2024.9.30/examples/zookeeper/restart/ops.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,11 @@ | ||
apiVersion: ops.kubedb.com/v1alpha1 | ||
kind: ZooKeeperOpsRequest | ||
metadata: | ||
name: zk-restart | ||
namespace: demo | ||
spec: | ||
type: Restart | ||
databaseRef: | ||
name: zk-quickstart | ||
timeout: 3m | ||
apply: Always |
17 changes: 17 additions & 0 deletions
17
content/docs/v2024.9.30/examples/zookeeper/restart/zookeeper.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.8.3" | ||
adminServerPort: 8080 | ||
replicas: 3 | ||
storage: | ||
resources: | ||
requests: | ||
storage: "1Gi" | ||
storageClassName: "standard" | ||
accessModes: | ||
- ReadWriteOnce | ||
deletionPolicy: "WipeOut" |
13 changes: 13 additions & 0 deletions
13
content/docs/v2024.9.30/examples/zookeeper/update-version/zk-version-upgrade-ops.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,13 @@ | ||
apiVersion: ops.kubedb.com/v1alpha1 | ||
kind: ZooKeeperOpsRequest | ||
metadata: | ||
name: upgrade-topology | ||
namespace: demo | ||
spec: | ||
databaseRef: | ||
name: zk-quickstart | ||
type: UpdateVersion | ||
updateVersion: | ||
targetVersion: 3.9.1 | ||
timeout: 5m | ||
apply: IfReady |
17 changes: 17 additions & 0 deletions
17
content/docs/v2024.9.30/examples/zookeeper/update-version/zookeeper.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.8.3" | ||
adminServerPort: 8080 | ||
replicas: 3 | ||
storage: | ||
resources: | ||
requests: | ||
storage: "1Gi" | ||
storageClassName: "standard" | ||
accessModes: | ||
- ReadWriteOnce | ||
deletionPolicy: "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
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
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
22 changes: 22 additions & 0 deletions
22
content/docs/v2024.9.30/guides/singlestore/autoscaler/_index.md
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,22 @@ | ||
--- | ||
title: Autoscaling | ||
menu: | ||
docs_v2024.9.30: | ||
identifier: sdb-auto-scaling | ||
name: Autoscaling | ||
parent: guides-singlestore | ||
weight: 46 | ||
menu_name: docs_v2024.9.30 | ||
info: | ||
autoscaler: v0.33.0 | ||
cli: v0.48.0 | ||
dashboard: v0.24.0 | ||
installer: v2024.9.30 | ||
ops-manager: v0.35.0 | ||
provisioner: v0.48.0 | ||
schema-manager: v0.24.0 | ||
ui-server: v0.24.0 | ||
version: v2024.9.30 | ||
webhook-server: v0.24.0 | ||
--- | ||
|
22 changes: 22 additions & 0 deletions
22
content/docs/v2024.9.30/guides/singlestore/autoscaler/compute/_index.md
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,22 @@ | ||
--- | ||
title: Compute Autoscaling | ||
menu: | ||
docs_v2024.9.30: | ||
identifier: sdb-compute-auto-scaling | ||
name: Compute Autoscaling | ||
parent: sdb-auto-scaling | ||
weight: 46 | ||
menu_name: docs_v2024.9.30 | ||
info: | ||
autoscaler: v0.33.0 | ||
cli: v0.48.0 | ||
dashboard: v0.24.0 | ||
installer: v2024.9.30 | ||
ops-manager: v0.35.0 | ||
provisioner: v0.48.0 | ||
schema-manager: v0.24.0 | ||
ui-server: v0.24.0 | ||
version: v2024.9.30 | ||
webhook-server: v0.24.0 | ||
--- | ||
|
Oops, something went wrong.