-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1560 from tnozicka/demo
Add Scylla Operator demo
- Loading branch information
Showing
5 changed files
with
9,444 additions
and
0 deletions.
There are no files selected for viewing
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 @@ | ||
*.cast binary |
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,25 @@ | ||
all: run | ||
|
||
script=./run.sh | ||
OUTPUT?=./run.cast | ||
|
||
run-fast: | ||
$(strip CUSTOM_PS1_SLEEP_SEC=0 CUSTOM_CHAR_SLEEP_SEC=0 CUSTOM_ECHO_SLEEP_SEC=0 CUSTOM_ECHO_MIN_SLEEP_SEC=0 CUSTOM_COMMAND_SLEEP_SEC=0 SKIP_MANUAL_SLEEPS="true" \ | ||
./run.sh) | ||
.PHONY: run-fast | ||
|
||
run-fast-local: export SCYLLA_OPERATOR_REPO:=../../. | ||
run-fast-local: run-fast | ||
.PHONY: run-fast-local | ||
|
||
run: | ||
./run.sh | ||
.PHONY: run | ||
|
||
run-local: export SCYLLA_OPERATOR_REPO:=../../. | ||
run-local: run | ||
.PHONY: run-local | ||
|
||
record: | ||
asciinema rec --idle-time-limit=5 --rows=25 --cols=100 --overwrite --command "$(script)" "$(OUTPUT)" | ||
.PHONY: record |
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,7 @@ | ||
# Basic setup demo | ||
|
||
This demo shows how you can deploy Scylla Operator with all the related components from scratch and walks over the basic concepts like ScyllaClusters, rolling updates or monitoring. | ||
|
||
## Requirements | ||
|
||
Have a Kubernetes cluster with at least one local NVMe, or adjust the NodeConfig accordingly. This has been tested to run on GKE with 1 local NVMe and libvirt with local NVMe. |
Oops, something went wrong.