File tree 2 files changed +13
-1
lines changed
2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,18 @@ generate-testdata: ## Update/generate the testdata in $GOPATH/src/sigs.k8s.io/ku
84
84
rm -rf testdata/
85
85
./test/testdata/generate.sh
86
86
87
+ .PHONY : demo-generate
88
+ demo-generate : # # Generate a new demo recording using Asciinema
89
+ @if ! command -v asciinema & > /dev/null; then \
90
+ echo " asciinema is not installed. Please install it first:" ; \
91
+ echo " https://asciinema.org/docs/installation" ; \
92
+ exit 1; \
93
+ fi
94
+ @echo " Generating new demo recording..."
95
+ @cd scripts/demo && ./run.sh
96
+ @echo " Demo recording completed. The cast file is saved in scripts/demo/demo.cast"
97
+ @echo " You can now upload it to asciinema.org or embed it in the README"
98
+
87
99
.PHONY : generate-docs
88
100
generate-docs : # # Update/generate the docs
89
101
./hack/docs/generate.sh
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ Follow the [instructions](https://book.kubebuilder.io/quick-start.html#installat
47
47
48
48
See the [ Getting Started] ( https://book.kubebuilder.io/quick-start.html ) documentation.
49
49
50
- ![ Quick Start ] ( docs/gif/kb-demo.v3.11.1.svg )
50
+ < script id = " asciicast-id " src = " https://asciinema.org/a/id.js " async ></ script >
51
51
52
52
Also, ensure that you check out the [ Deploy Image] ( ./docs/book/src/plugins/available/deploy-image-plugin-v1-alpha.md )
53
53
Plugin. This plugin allows users to scaffold API/Controllers to deploy and manage an
You can’t perform that action at this time.
0 commit comments