diff --git a/README.md b/README.md index 0610292eb..963e03c49 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ With Sandbox, we provide a tool that automatically provisions a new demo cluster Click the Cloud Shell button for automated one-click installation of a new Sandbox cluster in a new Google Cloud Project. -[![Open in Cloud Shell](http://www.gstatic.com/cloudssh/images/open-btn.svg)](https://console.cloud.google.com/cloudshell/editor?cloudshell_git_repo=https://github.com/GoogleCloudPlatform/cloud-ops-sandbox.git&cloudshell_git_branch=v0.7.3&shellonly=true&cloudshell_image=gcr.io/stackdriver-sandbox-230822/cloudshell-image/uncertified:v0.7.3&cloudshell_tutorial=docs/tutorial.md) +[![Open in Cloud Shell](http://www.gstatic.com/cloudssh/images/open-btn.svg)](https://console.cloud.google.com/cloudshell/editor?cloudshell_git_repo=https://github.com/GoogleCloudPlatform/cloud-ops-sandbox.git&cloudshell_git_branch=v0.7.4&shellonly=true&cloudshell_image=gcr.io/stackdriver-sandbox-230822/cloudshell-image/uncertified:v0.7.4&cloudshell_tutorial=docs/tutorial.md) __Note__: If installation stops due to billing account errors, set up the billing account and type: `sandboxctl create`. diff --git a/cloud-shell/Dockerfile b/cloud-shell/Dockerfile index e7b3cd081..02604e812 100644 --- a/cloud-shell/Dockerfile +++ b/cloud-shell/Dockerfile @@ -29,7 +29,7 @@ RUN python3 -m pip install click==8.0.1 RUN python3 -m pip install google-cloud-monitoring==2.4.0 # set env var -RUN echo "VERSION=v0.7.3" >> /etc/environment +RUN echo "VERSION=v0.7.4" >> /etc/environment # Change "Open in Cloudshell" script to run `sandboxctl create` using local file and changing it COPY cloudshell_open_cp.sh /google/devshell/bashrc.google.d/cloudshell_open.sh diff --git a/kubernetes-manifests/adservice.yaml b/kubernetes-manifests/adservice.yaml index 85ad74834..aa37a8425 100644 --- a/kubernetes-manifests/adservice.yaml +++ b/kubernetes-manifests/adservice.yaml @@ -28,7 +28,7 @@ spec: terminationGracePeriodSeconds: 5 containers: - name: adservice - image: gcr.io/stackdriver-sandbox-230822/sandbox/adservice:v0.7.3 + image: gcr.io/stackdriver-sandbox-230822/sandbox/adservice:v0.7.4 ports: - containerPort: 9555 env: diff --git a/kubernetes-manifests/cartservice.yaml b/kubernetes-manifests/cartservice.yaml index 739610223..78d903206 100644 --- a/kubernetes-manifests/cartservice.yaml +++ b/kubernetes-manifests/cartservice.yaml @@ -32,7 +32,7 @@ spec: command: ['bin/sh', '-c', 'until nslookup redis-cart; do echo waiting for redis; sleep 2; done;'] containers: - name: cartservice - image: gcr.io/stackdriver-sandbox-230822/sandbox/cartservice:v0.7.3 + image: gcr.io/stackdriver-sandbox-230822/sandbox/cartservice:v0.7.4 ports: - containerPort: 7070 env: diff --git a/kubernetes-manifests/checkoutservice.yaml b/kubernetes-manifests/checkoutservice.yaml index 63ec3520e..49c476f06 100644 --- a/kubernetes-manifests/checkoutservice.yaml +++ b/kubernetes-manifests/checkoutservice.yaml @@ -27,7 +27,7 @@ spec: spec: containers: - name: checkoutservice - image: gcr.io/stackdriver-sandbox-230822/sandbox/checkoutservice:v0.7.3 + image: gcr.io/stackdriver-sandbox-230822/sandbox/checkoutservice:v0.7.4 ports: - containerPort: 5050 readinessProbe: diff --git a/kubernetes-manifests/currencyservice.yaml b/kubernetes-manifests/currencyservice.yaml index 2dff9789f..15f7f76d0 100644 --- a/kubernetes-manifests/currencyservice.yaml +++ b/kubernetes-manifests/currencyservice.yaml @@ -28,7 +28,7 @@ spec: terminationGracePeriodSeconds: 5 containers: - name: currencyservice - image: gcr.io/stackdriver-sandbox-230822/sandbox/currencyservice:v0.7.3 + image: gcr.io/stackdriver-sandbox-230822/sandbox/currencyservice:v0.7.4 ports: - name: grpc containerPort: 7000 diff --git a/kubernetes-manifests/emailservice.yaml b/kubernetes-manifests/emailservice.yaml index 660b115ea..743a3d5f9 100644 --- a/kubernetes-manifests/emailservice.yaml +++ b/kubernetes-manifests/emailservice.yaml @@ -28,7 +28,7 @@ spec: terminationGracePeriodSeconds: 5 containers: - name: emailservice - image: gcr.io/stackdriver-sandbox-230822/sandbox/emailservice:v0.7.3 + image: gcr.io/stackdriver-sandbox-230822/sandbox/emailservice:v0.7.4 ports: - containerPort: 8080 readinessProbe: diff --git a/kubernetes-manifests/frontend.yaml b/kubernetes-manifests/frontend.yaml index 386b46999..ba830301c 100644 --- a/kubernetes-manifests/frontend.yaml +++ b/kubernetes-manifests/frontend.yaml @@ -27,7 +27,7 @@ spec: spec: containers: - name: frontend - image: gcr.io/stackdriver-sandbox-230822/sandbox/frontend:v0.7.3 + image: gcr.io/stackdriver-sandbox-230822/sandbox/frontend:v0.7.4 ports: - containerPort: 8080 readinessProbe: diff --git a/kubernetes-manifests/paymentservice.yaml b/kubernetes-manifests/paymentservice.yaml index 801979dda..74541a827 100644 --- a/kubernetes-manifests/paymentservice.yaml +++ b/kubernetes-manifests/paymentservice.yaml @@ -28,7 +28,7 @@ spec: terminationGracePeriodSeconds: 5 containers: - name: paymentservice - image: gcr.io/stackdriver-sandbox-230822/sandbox/paymentservice:v0.7.3 + image: gcr.io/stackdriver-sandbox-230822/sandbox/paymentservice:v0.7.4 ports: - containerPort: 50051 readinessProbe: diff --git a/kubernetes-manifests/productcatalogservice.yaml b/kubernetes-manifests/productcatalogservice.yaml index f90ca9555..36fb26a6f 100644 --- a/kubernetes-manifests/productcatalogservice.yaml +++ b/kubernetes-manifests/productcatalogservice.yaml @@ -28,7 +28,7 @@ spec: terminationGracePeriodSeconds: 5 containers: - name: productcatalogservice - image: gcr.io/stackdriver-sandbox-230822/sandbox/productcatalogservice:v0.7.3 + image: gcr.io/stackdriver-sandbox-230822/sandbox/productcatalogservice:v0.7.4 ports: - containerPort: 3550 readinessProbe: diff --git a/kubernetes-manifests/recommendationservice.yaml b/kubernetes-manifests/recommendationservice.yaml index 53f7454bb..f362c62db 100644 --- a/kubernetes-manifests/recommendationservice.yaml +++ b/kubernetes-manifests/recommendationservice.yaml @@ -28,7 +28,7 @@ spec: terminationGracePeriodSeconds: 5 containers: - name: recommendationservice - image: gcr.io/stackdriver-sandbox-230822/sandbox/recommendationservice:v0.7.3 + image: gcr.io/stackdriver-sandbox-230822/sandbox/recommendationservice:v0.7.4 ports: - containerPort: 8080 env: diff --git a/kubernetes-manifests/shippingservice.yaml b/kubernetes-manifests/shippingservice.yaml index 466ca2e75..27a30ea5f 100644 --- a/kubernetes-manifests/shippingservice.yaml +++ b/kubernetes-manifests/shippingservice.yaml @@ -27,7 +27,7 @@ spec: spec: containers: - name: shippingservice - image: gcr.io/stackdriver-sandbox-230822/sandbox/shippingservice:v0.7.3 + image: gcr.io/stackdriver-sandbox-230822/sandbox/shippingservice:v0.7.4 ports: - containerPort: 50051 readinessProbe: diff --git a/loadgenerator-manifests/loadgenerator.yaml b/loadgenerator-manifests/loadgenerator.yaml index 610de680a..1070f58e2 100644 --- a/loadgenerator-manifests/loadgenerator.yaml +++ b/loadgenerator-manifests/loadgenerator.yaml @@ -30,7 +30,7 @@ spec: spec: containers: - name: locust-main - image: gcr.io/stackdriver-sandbox-230822/sandbox/loadgenerator/gke:v0.7.3 + image: gcr.io/stackdriver-sandbox-230822/sandbox/loadgenerator/gke:v0.7.4 imagePullPolicy: Always env: - name: LOCUST_MODE diff --git a/website/config.toml b/website/config.toml index 7d9857acd..12d6dd92e 100644 --- a/website/config.toml +++ b/website/config.toml @@ -96,7 +96,7 @@ archived_version = false # The version number for the version of the docs represented in this doc set. # Used in the "version-banner" partial to display a version number for the # current doc set. -version = "v0.7.3" +version = "v0.7.4" # A link to latest version of the docs. Used in the "version-banner" partial to # point people to the main doc site. diff --git a/website/deploy/index.html b/website/deploy/index.html index 2fb49e84a..7718ffd6f 100644 --- a/website/deploy/index.html +++ b/website/deploy/index.html @@ -60,7 +60,7 @@