1.7 KiB
title | overview | weight | owner | test |
---|---|---|---|---|
Set up a Local Computer | Set up your local computer for the tutorial. | 3 | istio/wg-docs-maintainers | no |
{{< boilerplate work-in-progress >}}
In this module you prepare your local computer for the tutorial.
-
Install
curl
. -
Install Node.js.
-
Install Docker.
-
Install
kubectl
. -
Set the
KUBECONFIG
environment variable for the configuration file you received from the tutorial instructors, or created yourself in the previous module.{{< text bash >}} $ export KUBECONFIG= {{< /text >}}
-
Verify that the configuration took effect by printing the current namespace:
{{< text bash >}}
kubectl config view -o jsonpath="{.contexts[?(@.name==\"
(kubectl config current-context)")].context.namespace}" tutorial {{< /text >}}You should see in the output the name of the namespace, allocated for you by the instructors or allocated by yourself in the previous module.
-
Download one of the Istio release archives and extract the
istioctl
command line tool from thebin
directory, and verify that you can runistioctl
with the following command:{{< text bash >}} $ istioctl version client version: 1.22.0 control plane version: 1.22.0 data plane version: 1.22.0 (4 proxies) {{< /text >}}
Congratulations, you configured your local computer!
You are ready to run a single service locally.