@@ -53,6 +53,8 @@ The sections below show examples of this.
53
53
54
54
<p align =" center " ><img alt =" sysbox " src =" ../figures/kind-sysbox.png " width =" 800x " /></p >
55
55
56
+ ** Check out this [ video] ( https://asciinema.org/a/veCPJJtf0D38Cet2iLOY4j8ry?speed=1.75 ) .**
57
+
56
58
The [ K8s.io KinD] ( https://kind.sigs.k8s.io ) project produces a CLI tool called
57
59
` kind ` that enables deployment of Kubernetes clusters inside Docker containers.
58
60
@@ -218,7 +220,7 @@ The [K8s.io KinD website](https://kind.sigs.k8s.io/) for more info on how to use
218
220
[ Kindbox] ( https://github.com/nestybox/kindbox ) is a simple open-source tool created by Nestybox
219
221
to easily create K8s clusters with Docker + Sysbox.
220
222
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 ) .**
222
224
223
225
Kindbox does some of the same things that the K8s.io KinD tool does (e.g., cluster
224
226
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
480
482
It's also possible to deploy a K8s cluster directly with Docker + Sysbox,
481
483
without using the K8s.io ` kind ` or Nestybox's ` kindbox ` tools.
482
484
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 ) .**
484
486
485
487
The upside is that you get full control of the cluster deployment. The drawback
486
488
is that you need to manage the K8s cluster creation sequence. But it's pretty
@@ -802,11 +804,6 @@ K8s.io KinD + Sysbox).
802
804
required during the image build process (i.e, you can revert the config
803
805
once the build completes if you wish).
804
806
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
-
810
807
``` console
811
808
# more /etc/docker/daemon.json
812
809
{
@@ -821,9 +818,6 @@ snap package if `which docker` yields `/snap/bin/docker`.
821
818
822
819
2 ) Stop all containers and restart the Docker service:
823
820
824
- NOTE: if using the Ubuntu Docker snap package, do ` $ sudo snap restart docker `
825
- instead of ` systemctl restart docker.service ` below.
826
-
827
821
``` console
828
822
$ docker stop $( docker ps -aq)
829
823
$ sudo systemctl restart docker.service
0 commit comments