summaryrefslogtreecommitdiffhomepage
path: root/docs/untrusted-workload-quickstart.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/untrusted-workload-quickstart.md')
-rw-r--r--docs/untrusted-workload-quickstart.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/untrusted-workload-quickstart.md b/docs/untrusted-workload-quickstart.md
index a85eb5add..fb4441845 100644
--- a/docs/untrusted-workload-quickstart.md
+++ b/docs/untrusted-workload-quickstart.md
@@ -22,20 +22,20 @@ are using containerd 1.2, please consider using runtime handler.*
[embedmd]:# (../test/e2e/shim-install.sh shell /{ # Step 1/ /^}/)
```shell
{ # Step 1(release): Install gvisor-containerd-shim
-LATEST_RELEASE=$(wget -qO - https://api.github.com/repos/google/gvisor-containerd-shim/releases | grep -oP '(?<="browser_download_url": ")https://[^"]*' | head -1)
-wget -O gvisor-containerd-shim
+LATEST_RELEASE=$(wget -qO - https://api.github.com/repos/google/gvisor-containerd-shim/releases | grep -oP '(?<="browser_download_url": ")https://[^"]*gvisor-containerd-shim.linux-amd64' | head -1)
+wget -O gvisor-containerd-shim ${LATEST_RELEASE}
chmod +x gvisor-containerd-shim
sudo mv gvisor-containerd-shim /usr/local/bin/gvisor-containerd-shim
}
```
2. Create the configuration for the gvisor shim in
- `/etc/containerd/gvisor-containerd-shim.yaml`:
+ `/etc/containerd/gvisor-containerd-shim.toml`:
[embedmd]:# (../test/e2e/shim-install.sh shell /{ # Step 2/ /^}/)
```shell
-{ # Step 2: Create the gvisor-containerd-shim.yaml
-cat <<EOF | sudo tee /etc/containerd/gvisor-containerd-shim.yaml
+{ # Step 2: Create the gvisor-containerd-shim.toml
+cat <<EOF | sudo tee /etc/containerd/gvisor-containerd-shim.toml
# This is the path to the default runc containerd-shim.
runc_shim = "/usr/local/bin/containerd-shim"
EOF