From b1ff9f90d89231e2d2f43aae64b4041c104249ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabrice=20Flore-Th=C3=A9bault?= Date: Tue, 11 Apr 2023 15:49:54 +0200 Subject: [PATCH] docs: refactoring the kind section to prepare for the additional docs (#1998) --- website/docs/kubernetes/kind.md | 105 ------------------ .../configuring-podman-for-kind-on-windows.md | 35 ++++++ .../kind/creating-a-kind-cluster.md | 34 ++++++ .../kind/deleting-your-kind-cluster.md | 22 ++++ .../kubernetes/kind/img/kind-resource.png | Bin 0 -> 5466 bytes .../kubernetes/kind/img/kind-status-bar.png | Bin 0 -> 1323 bytes website/docs/kubernetes/kind/index.md | 11 ++ .../docs/kubernetes/kind/installing-kind.md | 24 ++++ .../kind/restarting-your-kind-cluster.md | 16 +++ .../working-with-your-local-kind-cluster.md | 25 +++++ 10 files changed, 167 insertions(+), 105 deletions(-) delete mode 100644 website/docs/kubernetes/kind.md create mode 100644 website/docs/kubernetes/kind/configuring-podman-for-kind-on-windows.md create mode 100644 website/docs/kubernetes/kind/creating-a-kind-cluster.md create mode 100644 website/docs/kubernetes/kind/deleting-your-kind-cluster.md create mode 100644 website/docs/kubernetes/kind/img/kind-resource.png create mode 100644 website/docs/kubernetes/kind/img/kind-status-bar.png create mode 100644 website/docs/kubernetes/kind/index.md create mode 100644 website/docs/kubernetes/kind/installing-kind.md create mode 100644 website/docs/kubernetes/kind/restarting-your-kind-cluster.md create mode 100644 website/docs/kubernetes/kind/working-with-your-local-kind-cluster.md diff --git a/website/docs/kubernetes/kind.md b/website/docs/kubernetes/kind.md deleted file mode 100644 index d353a84608c..00000000000 --- a/website/docs/kubernetes/kind.md +++ /dev/null @@ -1,105 +0,0 @@ ---- -sidebar_position: 1 -title: Kind -description: Kind is one way to get Kubernetes running on your workstation. -keywords: [podman desktop, podman, containers, migrating, kubernetes, kind] -tags: [migrating-to-kubernetes, kind] ---- - -# Running Kubernetes on your workstation with Kind and Podman - -[Kind](https://kind.sigs.k8s.io/) is a command line tool for running local Kubernetes clusters on a container engine, such as Podman. - -## Configuring Podman for Kind on Windows Subsystem for Linux (WSL) {#configuring} - -When you create a Podman machine, Podman creates two system connections: - -* The default rootless connection. -* A rootful connection, which has a `-root` suffix. - -With a Podman machine running on WSL, Kind: - -* Uses the default Podman connection. -* Requires the rootful connection. - -Therefore, set the Podman machine default connection to rootful. - -#### Procedure - -1. List the Podman system connections: - - ```shell-session - $ podman system connection ls - ``` - -2. Set the Podman system default connection to connection that has the `-root` suffix: - - ```shell-session - $ podman system connection default podman-machine-default-root - ``` - -#### Next steps - -* [Create your Kind cluster](#kind-create-cluster) - -## Creating a local Kubernetes cluster with Kind {#kind-create-cluster} - -#### Prerequisites - -* [You configured Podman](#configuring). -* [You installed Kind](https://kind.sigs.k8s.io/). - -#### Procedure - -* Create a Kind cluster - - ```shell-session - $ kind create cluster - ``` - -#### Next steps - -* [Work with your Kind cluster](#set-current-context) - -## Working with your local Kind-powered Kubernetes cluster {#set-current-context} - -Set your Kubernetes context to your local Kind-powered Kubernetes cluster. - -#### Procedure - -1. Open the Podman Desktop tray. -2. Go to **Kubernetes**. -3. Click on the Kubernetes context with the `kind` suffix. - -#### Verification - -* The Kubernetes CLI reports that the current context is your cluster with the `kind` suffix: - - ```shell-session - $ kubectl config current-context - ``` - -## Deleting a local Kubernetes cluster with Kind {#kind-delete-cluster} - -#### Prerequisites - -* [You configured Podman](#configuring). -* [You installed Kind](https://kind.sigs.k8s.io/). - -#### Procedure - -* Delete the Kind cluster - - ```shell-session - $ kind delete cluster - ``` - -## Restarting your local Kubernetes cluster with Kind {#restarting-kind} - -Kind has no command to restart a cluster. - - -#### Workaround - -* Consider replacing Kind with a local Kubernetes cluster that you can restart, such as [OpenShift Local](https://developers.redhat.com/products/openshift-local/). -* Consider [deleting your Kind cluster](#kind-delete-cluster), and [creating a Kind cluster](#kind-create-cluster). diff --git a/website/docs/kubernetes/kind/configuring-podman-for-kind-on-windows.md b/website/docs/kubernetes/kind/configuring-podman-for-kind-on-windows.md new file mode 100644 index 00000000000..b842c8a76c2 --- /dev/null +++ b/website/docs/kubernetes/kind/configuring-podman-for-kind-on-windows.md @@ -0,0 +1,35 @@ +--- +sidebar_position: 3 +title: Configuring Podman for Kind +description: Configuring Podman for Kind on Windows Subsystem for Linux (WSL). +keywords: [podman desktop, podman, containers, migrating, kubernetes, kind] +tags: [migrating-to-kubernetes, kind] +--- + +# Configuring Podman for Kind on Windows Subsystem for Linux (WSL) + +When you create a Podman machine, Podman creates two system connections: + +* The default rootless connection. +* A rootful connection, which has a `-root` suffix. + +With a Podman machine running on WSL, Kind: + +* Uses the default Podman connection. +* Requires the rootful connection. + +Therefore, set the Podman machine default connection to rootful. + +#### Procedure + +1. List the Podman system connections: + + ```shell-session + $ podman system connection ls + ``` + +2. Set the Podman system default connection to connection that has the `-root` suffix: + + ```shell-session + $ podman system connection default podman-machine-default-root + ``` diff --git a/website/docs/kubernetes/kind/creating-a-kind-cluster.md b/website/docs/kubernetes/kind/creating-a-kind-cluster.md new file mode 100644 index 00000000000..a7ad3fbddb2 --- /dev/null +++ b/website/docs/kubernetes/kind/creating-a-kind-cluster.md @@ -0,0 +1,34 @@ +--- +sidebar_position: 4 +title: Creating a Kind cluster +description: Creating a local Kind-powered Kubernetes cluster. +keywords: [podman desktop, podman, containers, migrating, kubernetes, kind] +tags: [migrating-to-kubernetes, kind] +--- + +# Creating a local Kind-powered Kubernetes cluster + +You can create multiple local Kind-powered Kubernetes clusters. + +#### Prerequisites + +* [You installed Kind](installing-kind). +* [On Windows, you configured Podman](configuring-podman-for-kind-on-windows). + +#### Procedure +1. Go to **Settings > Resources** +1. In the Kind tile, click on the **Create new ...** button. +1. Choose your options, and click the **Create** button. + + The defaults are: + * Name: `kind-cluster` + * Provider type: `podman` + * HTTP port: `9090` + * HTTPS port: `9443` +1. (Optionally) Click the **Show logs** button to display the logs. +1. After successful creation, click on the **Go back to resources** button + +#### Verification + +1. In **Settings > Resources**, in the **Kind** tile, your `` instance is running. +1. In the Podman Desktop tray, open the **Kubernetes** menu, you can set the context to your Kind cluster: `kind-`. diff --git a/website/docs/kubernetes/kind/deleting-your-kind-cluster.md b/website/docs/kubernetes/kind/deleting-your-kind-cluster.md new file mode 100644 index 00000000000..1e51d399b06 --- /dev/null +++ b/website/docs/kubernetes/kind/deleting-your-kind-cluster.md @@ -0,0 +1,22 @@ +--- +sidebar_position: 6 +title: Deleting your Kind cluster +description: Deleting your local Kind-powered Kubernetes cluster. +keywords: [podman desktop, podman, containers, migrating, kubernetes, kind] +tags: [migrating-to-kubernetes, kind] +--- + +# Deleting your local Kind-powered Kubernetes cluster + +#### Prerequisites + +* [You configured Podman](creating-a-kind-cluster.md). +* [You installed Kind](https://kind.sigs.k8s.io/). + +#### Procedure + +* Delete the Kind cluster + + ```shell-session + $ kind delete cluster + ``` diff --git a/website/docs/kubernetes/kind/img/kind-resource.png b/website/docs/kubernetes/kind/img/kind-resource.png new file mode 100644 index 0000000000000000000000000000000000000000..2a0b5b85559bd7a39686d811a6ca8d0e20fba7d4 GIT binary patch literal 5466 zcmc&&WlS7wkcN+<#i3|%m*VbDaWB630$r@=Qna{3p+I5Lh2l~uU9>=PifoI+B1IN0 zE{iQ(ze_H;T41a&=Fu@U=V4&R5Sh?NB(*=9?rj~ zVN>D1;fbG$mMPv}3&nFz_?y%Et6TV+cmw@|9DH3cT)n(KU0(P(`MS7x`MG)fA7k|> z`~`9T3sUuUaqxHd_F^`5_jJMVbns;s7G`z`^ko(i5)ow<7LgH=k`b4vt5p@pz@Y5V zQd2es7aXpHfK4w8hfh)M6XJP<_*z2LcrVF`?3D(sO9lMNth*Y$l0CngS%0m!J~Zj% zgQZ&t9(on8G(`9|uHE-{;{XEl@eQXQoZWhLAt+`QbIS>gy-FYG(42^0Hs z6UH+{oCmM+4n(jSy^fm@kH8GEnd2L9J0nQ&e#`MCr@^sfP4B(6I_*O_H055_;Hvv^ zX$f=8_Yv4k3SYYD^skwe%T>Cxf!&|o`Ad5Kz}8N1Vs4D2WR!f`h!`wjEp%r*Jn^Q{ z%<*)x${4q3A#!%Fmn$0Ld(1PB06)bFv09zC8i>~fY_h^zMC9_L%-7b;okeMz7yq(yZ+e_tW_~rrib-Q=uwDfGah#kk5%%0c1xi%To zXIy~gmG_4Z&audw&<5zg(V2D3!F5fu*q$;2QosH)LM3!wM*Va8jH+o8l~&i=FAVgX z3)VUHzQc-ePhz+a-D6c~^2HRBpRfZQLN^Ky+UvY*^oKP;@7#J@kDs ztU^Nfheg|&QvqztiC^v-scG`$!JaleSGXvZ0QaVl`{GvP343;e1Ls{+Gi{$I7I%_% zi8GEsy7#!JzF%h>SVO)LQE|S_iJj}@Mrn zQywQtdAb+*0nG_Z z&Hq3>y-${I88$nJHcrlnM-*V5?+JT`FQ8Dev8)hlt${o3|&b~}F$Zb1Wb8dc~Sa}3I45Qy;xO$jMzo!5-+|gwFpXq}rbLzIv z3?#_tkk^q?foW3AuQ>aaS|EB5iC@!M^g5>I=Azz!{silfz>U1+ucj7%AidY7g+WWb zBinJB0($EMuNf$@5ir`9R$`OF2^=1<<4HrCjk10^W{`D!{TR&CgMKvu?))wUmjQ@r zra^MMd$-#~8>MH@f$vb+v!#5zGl^Gc}vRiI`YA0MHUf7sr7fQ^oljcbYHlwjMn1 z=H6g~yeyKMP8q$PTg5ByxtpKN((B{wkX6!X2HQo+hEA3q$RLqOQ?pmbW|mq;%t9MC zs?y)B)e2?j&%w(CD`=|OPcnY#)6z{#gGG$VwA22fUf5%CE-th2)%YSgdfvP`2&Ehb ze5Uoi^M%kp>P7Lpe&X|-wQ8E9x)dLZCin_BpV42cpPKGAGjy> zeE0W%;N;#|hMsEkb{1_FkztDA_uP_3EZ;s9e?SY3)#8q_Q#kWWhRKr|C(<;%qX{o& zN|!|;r^Qkqy2C%LQv|DjCk$FoBK|#Dfx#`Jb6O!MX3EEJ{d>rX`#wCZ03twqGUt`m z;6{~8%%>lC-Zw|-lDBuAg>NiR#%jxe@g%9T?4bS3#4@?HjFxqju+uIiXGQQaTdh1x zeLgffg=;b{XFee|{m;qyyFP=k_%-ato!a@8LAv?FWi(g^5H_vcDBhWnPkM2OOFa&B zu*LK|C@u|t4lhn%%d%72Ko2;|7%1H6tS+^&pb)9T`Lg$K`bV9A>@Qvy>1&D&sk^?F z{yH}ZFJ|oBG`28w@`1CVl@ZQvH!b#L zxph{F^PAgkXU2rKu5VAp2%g^Wc1-@sGb<1ZBK8V8;?8ujZ21E&;t*}McN5C^eDj?R zUALCAfjXd&>k*fv05!_o%p^_zxo0_>)o*-OdS}wV{MEa=s$EmT(0iT zU!sW1q3@XF;hNYnp)Q733dp3l`@L>EU4oxiCr@rRSa%O4e)W?+pHX+~PxJaT<^FKH z6&)Jv61B3ZM$cBk`RR4&0!+`EUxyV7i=jTI zwaeeM$4yQ|SYi#OcNAWioUh~Mbm+RBuJbZK!cP&dad5NTdc5_+<-D5vMH%$SU*LYJ z&;}r>5MML6uqBS0s3|jQmGQOr@KWUbS|;$=qYq~}PFW!7CZJE97W0z(}b4L zC~HTP5@`+}D@D?LxqqASt&m+*qPi}1KJv%na9I`asB_Xp=^;kfJPbE-_2FG9>MJaL zHDs$FdF7+B$;19L_|pq5)~9>0L(qmiWWbk>n4CnIf#nG za4@m9p~TgIZx5`vX!?9i*U6fyUG@WEkKpKU=ywj)b8MFdJJlTnN>f|a*_B;@Vq7Ds zfsf4Lw0=pwsN@H2wGKS=5x{X>UbAIgB}E;e%0GcD1uk+>!fhkDNCz0ZsB_GteeI5# zJddBo$^Q{nePpC0wLjUmip-RytmE$2m*7=1rb4?XdvL1O2&(We>w^&>wR{PNvi>%e zt*vLI80xb>ZM-P;;9-@XQm(M#FMMe$zp`O%6W{2|>=71=gs(VL(F)62>Iq$fuUhK) z^Bj8UF7^nXcJaQFQhq=rH-viS+Z++&Zn zt`Ctb`Py=|86(`g`vYrQ>Y>+L^0;Ih{b~;=-2an!_}}Hl{}Un%`c&%YJrr)p)E47t zeyEnq%BjS@GJe&))?AO8r?4du8vSR=!e6{nujdVPjFh5k!EDTO+8f*2)p|{kv!h^C ze4ys3jnprW1TARkE)!SB6MJ%OHDwO_@q%5E0d_JWAXGQ1ac96>Xkfog3Pn*TXtfH$yPRjE9rBaL!GbUNz_jm#3*UZTXkbyt#29~37A-5c`i)Y(rW_Z~o z^GRsC`XV4YEf>optWPrn=r~4^H9tf0@=d|C_kM-k5!;2K^l_}sM~%45ILz&aeW0an z+)g)B35q6eAZ!RQ>2-0k9EM$ZQ;QcRrZ#;71;OeTW zGwU>OI(;r2O#Adg&VO$z72M=jB+9K<_?Rg^1CT(D ziAcX!oRkChb1QhnC~vLr|IjG#Pk*759Qru>k<&0UwoQMygEe1OCa0+UVINaFS+7MY zWpKV?WJo?H9H1m1HauG%m<{qlv__WYRTs<>cZsc;6+mCX)^ z6gq+1i%MIB_4_|zUFQ=loJK)tBnGJin>+&YJ*pzNspSmk`FekpqB?j9D{&;nf6S72%QbBqa`Stb0nwp*Xh?ew|1otltwX z==X!f$WALMN%XB{+cNuEt4d&3-KKOIgrk;%CR*@~hiF;pM1qltBskE@Ko}HUkdG8j zLV0TUW6TZ`oU+{yR6==HqT8^j78Qs@)Bo!9?9aktZEM`eJ9VEVIv>8I)c+l=Lk@t^ z>Y%GBpSa@71M%JSrc=P$1CEN<$Cb&bArzen zV4f)an0r-_$FM%eFPB~RgGt!BtJ!a+5VDNL=)YBwYmPRbkKIH#yc#{K{`B#*X^n4?B!`&i~(E`(RZ zHnZf2p71-SZtTTpB(PFrYGmtehH%T`w?)0HBzBIDbblv;+F-iQt`#w{k3Stm%Csx* z-t(ZdM-Y?`Vw6yXjk7_biKR_%!^?*kRdGbL*e@~$MLmLHpE4NgWvG5DR71X)SMEhj z8?^Pag0%&orCQ=ii+NbIH`Plf56gN47svk;707f_a1-+A7KxLnry?QymVQR-J}v_} zinopVCLlMKb#0}aL@tmoJJfMR63_FTR7e#wFd%5k$1)}D?jAS2J|Js@mhS!BuS!Q? zt+H|JE`YlHt9OgJg{eTgQ$6JS+C!H&r#%IbBsujLK(Pv;-a|X=A>asdyU+?=9hw3T zscM2^q+JJ?f3wa&?P(RDwYXLCvnn7SR^FW$jgNg<{>+=K7t`))AXfgKrg%&7yzfLX zZV#H@Gms98=C_eh)vlG-0_E+ZqkXl|57axv(=~%y+x*E{kN|G>J5#wYdT~IOckH4y z8pMswoWI3Sj}Z(UU4OvJpBw`u{XkcG`FgxLmnMu-eVz;^5MBlr>R27zlUA@_e_Kra z)ts2$*?W8J zK4UjC90j@hOfy1PG8iBu@g(@jp{JikFS_*@LTrBFbL)w=j{;Vy*$J}l$AVQ#(d+J} zHuUSqJ<~c}Br_?>?83ezj3hVs#nb(ZkBnT19b`5_XE(I`gL#6_nVu)V&@&;A%opLX z7>`}qOn^Ge-*+=%AvqnJ8juLV=`WdTTEq_cxfoi7c8Q}M!>KwHbz3c=kosD@WMUIj zd`gb`RAs3U$z{~rS+BpcjhprFtm6)SjNNQ~j(E09)tyO*Lx(Q33RfIH1@aIsuy+QG z8^y6`G$rDuK8&z*J9or3vg^R$%-K?4=`fko0V$%^G$RPk{%@Ey4FKEkv*#>GS%m>r zEQxmBiF)HD9AVOpOUqJ5e(cY%7(zjZPE=L&)F9mHFQd%{?{Ke6&zzOLNm*L%3FF=V z4DZv{U3q^yvm(MW^zMlo9`1iIl|PD`cyTc*5S@&WcH zzu%*Y0+=72F&C%q)>;Vfga2i%y6R)2)f5G(UoIF~e~c+uI3ZfI(Rjj(|3y6iZgXgFbngSdJ^%m!CUiwubVG7w zVRUJ4ZXi@?ZDjy$VR9fbF(6@fav(A=GBY4CGCDOkIxsg(m`k7l00fIkL_t(oh3%Pt zNE>Gu$3Gp*9cU9QF@ih)h!zskb|b;!K`q6M=?!WJwGNrpjmrieEJTpnbyNqM$%0)A zZ8uOl>L06N&>w@hO;kuwSkulAw?0GlWae+qXCq%-4&Yzn(>T^F zs^G07bZFaBgUv^%xs0uuu(1{3-d=!RTs)XZMYxkwhb#=9_?n+4A#s0#vC%u+o5{pk z_OM1#C2HFgiqly04>h2fTC^NgbaxV|oaT)B34OO80WkZ^1%iir8JslHm5ErBsP_F0 zXg*=?VSJDe*f>TmTDIx4e}dUW*r(@X(Ea$%b2t0Po1 zM9Y@Mc{t&A};LeQ)2&9&B$N;O1R0}Sx5v6F+kS!PMe9&4Q z!XiU1{^kbu7)|_Q9{%ojI=nHu)TM%^T~;K)nRaSwKjytEjd#26Qmh7eyJUWXwT$CE z0oqK7x|t!(5urxsW2(H^5CKUiHj<;`Zul6mf{I=Ig{B_tW|v2BWu_N-n#l zVXQ*b9F(JV?6y5MEDHaLCW=qzCINSS1GOcr9mz>9X%YHoWFpZP6vJ)WLlQF}hyWJc zJ_$xgxVa7olodr4&-tX-(B<;I%onGw#a5&GjkI-)Hc zC^4^~82ftGh80A0a=6vMdyYXPz)%jJ8G|2`9NsMq-4bvO3E4d6hiMfj5B;J?6{L7eaEObDy$yktQO&7+(*a21#XRB;l~~Ye*J@cCKswL z=`N`SImq|X*U2}*N%H5D>K*36_%VrH7Dgt;e{jgA$LsVSx=<4mm&mlp<`|ERKn hO;NLeO;NLee*x&fN^wd_Y<~a%002ovPDHLkV1o4Wb5H;P literal 0 HcmV?d00001 diff --git a/website/docs/kubernetes/kind/index.md b/website/docs/kubernetes/kind/index.md new file mode 100644 index 00000000000..ad218994110 --- /dev/null +++ b/website/docs/kubernetes/kind/index.md @@ -0,0 +1,11 @@ +--- +sidebar_position: 1 +title: Kind +description: Kind is one way to get Kubernetes running on your workstation. +keywords: [podman desktop, podman, containers, migrating, kubernetes, kind] +tags: [migrating-to-kubernetes, kind] +--- + +# Running Kubernetes on your workstation with Kind and Podman + +Podman Desktop can help you run [Kind-powered](https://kind.sigs.k8s.io/) local Kubernetes clusters on a container engine, such as Podman. diff --git a/website/docs/kubernetes/kind/installing-kind.md b/website/docs/kubernetes/kind/installing-kind.md new file mode 100644 index 00000000000..12b767e29f2 --- /dev/null +++ b/website/docs/kubernetes/kind/installing-kind.md @@ -0,0 +1,24 @@ +--- +sidebar_position: 2 +title: Installing the `kind` CLI +description: Kind is one way to get Kubernetes running on your workstation. +keywords: [podman desktop, podman, containers, migrating, kubernetes, kind] +tags: [migrating-to-kubernetes, kind] +--- + +# Installing the `kind` CLI + +#### Procedure + +* In the status bar, click on **Kind**, and follow the prompts. + ![Kind in the status bar](img/kind-status-bar.png) + +#### Verification + +1. The status bar doesn't display **Kind**. +1. **Settings > Resources** contain a **Kind** tile. + ![Kind resource tile](img/kind-resource.png) +1. You can run the `kind` CLI: + ```shell-session + $ kind get clusters + ``` diff --git a/website/docs/kubernetes/kind/restarting-your-kind-cluster.md b/website/docs/kubernetes/kind/restarting-your-kind-cluster.md new file mode 100644 index 00000000000..efb314043cc --- /dev/null +++ b/website/docs/kubernetes/kind/restarting-your-kind-cluster.md @@ -0,0 +1,16 @@ +--- +sidebar_position: 7 +title: Restarting your Kind cluster +description: Restarting your local Kind-powered Kubernetes cluster. +keywords: [podman desktop, podman, containers, migrating, kubernetes, kind] +tags: [migrating-to-kubernetes, kind] +--- + +# Restarting your local Kind-powered Kubernetes cluster + +Kind has no command to restart a cluster. + +#### Workaround + +* Consider replacing Kind with a local Kubernetes cluster that you can restart, such as [OpenShift Local](https://developers.redhat.com/products/openshift-local/). +* Consider [deleting your Kind cluster](deleting-your-kind-cluster), and [creating a Kind cluster](creating-a-kind-cluster). diff --git a/website/docs/kubernetes/kind/working-with-your-local-kind-cluster.md b/website/docs/kubernetes/kind/working-with-your-local-kind-cluster.md new file mode 100644 index 00000000000..f5d1cc318dc --- /dev/null +++ b/website/docs/kubernetes/kind/working-with-your-local-kind-cluster.md @@ -0,0 +1,25 @@ +--- +sidebar_position: 5 +title: Working with your Kind cluster +description: Working with your local Kind-powered Kubernetes cluster. +keywords: [podman desktop, podman, containers, migrating, kubernetes, kind] +tags: [migrating-to-kubernetes, kind] +--- + +# Working with your local Kind-powered Kubernetes cluster + +Set your Kubernetes context to your local Kind-powered Kubernetes cluster. + +#### Procedure + +1. Open the Podman Desktop tray. +2. Go to **Kubernetes**. +3. Click on the Kubernetes context with the `kind` prefix. + +#### Verification + +* The Kubernetes CLI reports that the current context is your cluster with the `kind` suffix: + + ```shell-session + $ kubectl config current-context + ```