Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit c357144

Browse files
ctalledorodnymolina
authored andcommitted
Updated references to asciinema videos.
1 parent 92c7946 commit c357144

File tree

3 files changed

+9
-13
lines changed

3 files changed

+9
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ We have some sample videos showing Sysbox in action:
6060

6161
- [Docker Sandboxing](https://asciinema.org/a/kkTmOxl8DhEZiM2fLZNFlYzbo?speed=2)
6262

63-
- [Kubernetes-in-Docker](https://asciinema.org/a/VCgF094wb4CuVeI8h3iDKhh5m?speed=2)
63+
- [Kubernetes-in-Docker](https://asciinema.org/a/V1UFSxz6JHb3rdHpGrnjefFIt?speed=1.75)
6464

6565
## Download
6666

docs/quickstart/kind.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ The sections below show examples of this.
5353

5454
<p align="center"><img alt="sysbox" src="../figures/kind-sysbox.png" width="800x" /></p>
5555

56+
**Check out this [video](https://asciinema.org/a/veCPJJtf0D38Cet2iLOY4j8ry?speed=1.75).**
57+
5658
The [K8s.io KinD](https://kind.sigs.k8s.io) project produces a CLI tool called
5759
`kind` that enables deployment of Kubernetes clusters inside Docker containers.
5860

@@ -218,7 +220,7 @@ The [K8s.io KinD website](https://kind.sigs.k8s.io/) for more info on how to use
218220
[Kindbox](https://github.com/nestybox/kindbox) is a simple open-source tool created by Nestybox
219221
to easily create K8s clusters with Docker + Sysbox.
220222

221-
**Check out this [video](https://asciinema.org/a/VCgF094wb4CuVeI8h3iDKhh5m?speed=2).**
223+
**Check out this [video](https://asciinema.org/a/Vw8fwWwRJ26dNdMpaU8m5oaTQ?speed=1.75).**
222224

223225
Kindbox does some of the same things that the K8s.io KinD tool does (e.g., cluster
224226
creation, destruction, etc.) but it's much simpler, more flexible, does not
@@ -480,7 +482,7 @@ If you would like Nestybox to add more functionality, please file an
480482
It's also possible to deploy a K8s cluster directly with Docker + Sysbox,
481483
without using the K8s.io `kind` or Nestybox's `kindbox` tools.
482484

483-
**Check out this [video](https://asciinema.org/a/bTN4oykrDRZGDIkDg7rngyP5b?speed=2).**
485+
**Check out this [video](https://asciinema.org/a/V1UFSxz6JHb3rdHpGrnjefFIt?speed=1.75).**
484486

485487
The upside is that you get full control of the cluster deployment. The drawback
486488
is that you need to manage the K8s cluster creation sequence. But it's pretty
@@ -802,11 +804,6 @@ K8s.io KinD + Sysbox).
802804
required during the image build process (i.e, you can revert the config
803805
once the build completes if you wish).
804806

805-
NOTE: if using the Ubuntu Docker snap package, edit the
806-
`/var/snap/docker/current/etc/docker/daemon.json` file instead of
807-
`/etc/docker/daemon.json` below. You can tell if you are using the Docker
808-
snap package if `which docker` yields `/snap/bin/docker`.
809-
810807
```console
811808
# more /etc/docker/daemon.json
812809
{
@@ -821,9 +818,6 @@ snap package if `which docker` yields `/snap/bin/docker`.
821818

822819
2) Stop all containers and restart the Docker service:
823820

824-
NOTE: if using the Ubuntu Docker snap package, do `$ sudo snap restart docker`
825-
instead of `systemctl restart docker.service` below.
826-
827821
```console
828822
$ docker stop $(docker ps -aq)
829823
$ sudo systemctl restart docker.service

docs/user-guide/kind.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ as without them (through simple `docker run` commands).
9797

9898
<p align="center"><img alt="sysbox" src="../figures/kind-sysbox.png" width="800x" /></p>
9999

100+
**Check out this [video](https://asciinema.org/a/veCPJJtf0D38Cet2iLOY4j8ry?speed=1.75).**
101+
100102
The [K8s.io KinD](https://kind.sigs.k8s.io) project produces a CLI tool called
101103
"kind" that enables deployment of Kubernetes clusters inside Docker containers.
102104

@@ -175,7 +177,7 @@ Start Guide for step-by-step instructions.
175177
[Kindbox](https://github.com/nestybox/kindbox) is a simple open-source tool created by Nestybox
176178
to easily create K8s clusters with Docker + Sysbox.
177179

178-
Check out this [video](https://asciinema.org/a/VCgF094wb4CuVeI8h3iDKhh5m?speed=1.75).
180+
**Check out this [video](https://asciinema.org/a/Vw8fwWwRJ26dNdMpaU8m5oaTQ?speed=1.75).**
179181

180182
Kindbox does some of the same things that the K8s.io KinD tool does (e.g., cluster
181183
creation, destruction, etc.) but it's much simpler, more flexible, does not
@@ -216,7 +218,7 @@ up the k8s nodes, as well as the process for launching the K8s cluster.
216218
It's also possible to deploy a K8s cluster directly with Docker + Sysbox,
217219
without using the K8s.io `kind` or Nestybox's `kindbox` tools.
218220

219-
Check out this [video](https://asciinema.org/a/bTN4oykrDRZGDIkDg7rngyP5b?speed=1.75).
221+
**Check out this [video](https://asciinema.org/a/V1UFSxz6JHb3rdHpGrnjefFIt?speed=1.75).**
220222

221223
The upside is that you get full control of the cluster deployment. The drawback
222224
is that you need to manage the K8s cluster creation sequence. But it's pretty

0 commit comments

Comments
 (0)