From ba9a2484445b3076306cd0153221dfe7d0b063a8 Mon Sep 17 00:00:00 2001 From: jiazhiguang Date: Tue, 1 Sep 2020 19:42:50 +0800 Subject: [PATCH] docs: update the version number #2 --- ..._computing_kubernetes_cluster_with_inclavare_containers.md | 2 +- ...nd_deploy_hello_world_application_in_kubernetes_cluster.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/create_a_confidential_computing_kubernetes_cluster_with_inclavare_containers.md b/docs/create_a_confidential_computing_kubernetes_cluster_with_inclavare_containers.md index 6676427..b65aa9f 100644 --- a/docs/create_a_confidential_computing_kubernetes_cluster_with_inclavare_containers.md +++ b/docs/create_a_confidential_computing_kubernetes_cluster_with_inclavare_containers.md @@ -63,7 +63,7 @@ Note that you should install the OOT SGX driver that without ECDSA attestation. - On Ubuntu ```bash - version=0.15.1 + version=0.15.1-1 sudo dpkg -i occlum-pal_${version}_amd64.deb ``` diff --git a/docs/develop_and_deploy_hello_world_application_in_kubernetes_cluster.md b/docs/develop_and_deploy_hello_world_application_in_kubernetes_cluster.md index a9b6a82..a681179 100644 --- a/docs/develop_and_deploy_hello_world_application_in_kubernetes_cluster.md +++ b/docs/develop_and_deploy_hello_world_application_in_kubernetes_cluster.md @@ -37,14 +37,14 @@ You can choose one suitable occlum SDK image from the list in [this page](https: - command: - sleep - infinity - image: docker.io/occlum/occlum:0.15.1-centos7.5 + image: docker.io/occlum/occlum:0.15.1-centos8.1 imagePullPolicy: IfNotPresent securityContext: privileged: true name: occlum-app-builder EOF ``` - This will create a Pod with image `docker.io/occlum/occlum:0.15.1-centos7.5` and the filed `securityContext.privileged` should be set to `true`  in order to build and push docker image in container.
+ This will create a Pod with image `docker.io/occlum/occlum:0.15.1-centos8.1` and the filed `securityContext.privileged` should be set to `true`  in order to build and push docker image in container.
- Step 2. Wait for the pod status to `Ready` -- GitLab