From 7d44264d19926d44961bf8bc049d2c4e7b538836 Mon Sep 17 00:00:00 2001 From: Eduard Serra Date: Fri, 7 May 2021 16:51:56 -0700 Subject: [PATCH] chore(release): Creating release v0.8.4-rc.1 This commit updates version and reference numbers to v0.8.4-rc.1. Signed-off-by: Eduard Serra --- charts/osm/Chart.yaml | 4 ++-- charts/osm/README.md | 2 +- charts/osm/values.yaml | 2 +- cmd/cli/install.go | 2 +- docs/example/manifests/apps/bookbuyer.yaml | 2 +- docs/example/manifests/apps/bookstore-v2.yaml | 2 +- docs/example/manifests/apps/bookstore.yaml | 2 +- docs/example/manifests/apps/bookthief.yaml | 2 +- docs/example/manifests/apps/bookwarehouse.yaml | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/charts/osm/Chart.yaml b/charts/osm/Chart.yaml index 853c06d6b8..b5f93ec3e4 100644 --- a/charts/osm/Chart.yaml +++ b/charts/osm/Chart.yaml @@ -14,8 +14,8 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. -version: 0.8.3 +version: 0.8.4-rc.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. -appVersion: v0.8.3 +appVersion: v0.8.4-rc.1 diff --git a/charts/osm/README.md b/charts/osm/README.md index 5b46d2f008..b8569c7ef2 100644 --- a/charts/osm/README.md +++ b/charts/osm/README.md @@ -91,7 +91,7 @@ The following table lists the configurable parameters of the osm chart and their | OpenServiceMesh.grafana.port | int | `3000` | Grafana port | | OpenServiceMesh.image.pullPolicy | string | `"IfNotPresent"` | `osm-controller` pod PullPolicy | | OpenServiceMesh.image.registry | string | `"openservicemesh"` | `osm-controller` image registry | -| OpenServiceMesh.image.tag | string | `"v0.8.3"` | `osm-controller` image tag | +| OpenServiceMesh.image.tag | string | `"v0.8.4-rc.1"` | `osm-controller` image tag | | OpenServiceMesh.imagePullSecrets | list | `[]` | `osm-controller` image pull secret | | OpenServiceMesh.inbound_extauthz | object | `{"address":"","enable":false,"failureModeAllow":false,"port":0,"statPrefix":"","timeout":"1s"}` | Inbound external authorization, allows configuring a remote service to provide external authorization upon request | | OpenServiceMesh.injector | object | `{"podLabels":{},"replicaCount":1,"resource":{"limits":{"cpu":"0.5","memory":"64M"},"requests":{"cpu":"0.3","memory":"64M"}}}` | Sidecar injector configuration | diff --git a/charts/osm/values.yaml b/charts/osm/values.yaml index 3f913a5dc3..2a907e5903 100644 --- a/charts/osm/values.yaml +++ b/charts/osm/values.yaml @@ -11,7 +11,7 @@ OpenServiceMesh: # -- `osm-controller` pod PullPolicy pullPolicy: IfNotPresent # -- `osm-controller` image tag - tag: v0.8.3 + tag: v0.8.4-rc.1 # -- `osm-controller` image pull secret imagePullSecrets: [] # -- Envoy sidecar image diff --git a/cmd/cli/install.go b/cmd/cli/install.go index c9fb865741..ba21ab1578 100644 --- a/cmd/cli/install.go +++ b/cmd/cli/install.go @@ -63,7 +63,7 @@ const ( defaultContainerRegistrySecret = "" defaultMeshName = "osm" defaultOsmImagePullPolicy = "IfNotPresent" - defaultOsmImageTag = "v0.8.3" + defaultOsmImageTag = "v0.8.4-rc.1" defaultPrometheusRetentionTime = constants.PrometheusDefaultRetentionTime defaultVaultHost = "" defaultVaultProtocol = "http" diff --git a/docs/example/manifests/apps/bookbuyer.yaml b/docs/example/manifests/apps/bookbuyer.yaml index 0b636af002..059b54cf04 100644 --- a/docs/example/manifests/apps/bookbuyer.yaml +++ b/docs/example/manifests/apps/bookbuyer.yaml @@ -36,7 +36,7 @@ spec: serviceAccountName: bookbuyer containers: - name: bookbuyer - image: openservicemesh/bookbuyer:v0.8.3 + image: openservicemesh/bookbuyer:v0.8.4-rc.1 imagePullPolicy: Always command: ["/bookbuyer"] env: diff --git a/docs/example/manifests/apps/bookstore-v2.yaml b/docs/example/manifests/apps/bookstore-v2.yaml index 2bfb6752e0..8056188b02 100644 --- a/docs/example/manifests/apps/bookstore-v2.yaml +++ b/docs/example/manifests/apps/bookstore-v2.yaml @@ -43,7 +43,7 @@ spec: serviceAccountName: bookstore-v2 containers: - name: bookstore - image: openservicemesh/bookstore:v0.8.3 + image: openservicemesh/bookstore:v0.8.4-rc.1 imagePullPolicy: Always ports: - containerPort: 14001 diff --git a/docs/example/manifests/apps/bookstore.yaml b/docs/example/manifests/apps/bookstore.yaml index e4a0aebdb3..cda7fa1dcd 100644 --- a/docs/example/manifests/apps/bookstore.yaml +++ b/docs/example/manifests/apps/bookstore.yaml @@ -51,7 +51,7 @@ spec: serviceAccountName: bookstore containers: - name: bookstore - image: openservicemesh/bookstore:v0.8.3 + image: openservicemesh/bookstore:v0.8.4-rc.1 imagePullPolicy: Always ports: - containerPort: 14001 diff --git a/docs/example/manifests/apps/bookthief.yaml b/docs/example/manifests/apps/bookthief.yaml index 1e60aeab08..c16dabbb97 100644 --- a/docs/example/manifests/apps/bookthief.yaml +++ b/docs/example/manifests/apps/bookthief.yaml @@ -35,7 +35,7 @@ spec: serviceAccountName: bookthief containers: - name: bookthief - image: openservicemesh/bookthief:v0.8.3 + image: openservicemesh/bookthief:v0.8.4-rc.1 imagePullPolicy: Always command: ["/bookthief"] env: diff --git a/docs/example/manifests/apps/bookwarehouse.yaml b/docs/example/manifests/apps/bookwarehouse.yaml index 74fa3e62a5..ebba38739e 100644 --- a/docs/example/manifests/apps/bookwarehouse.yaml +++ b/docs/example/manifests/apps/bookwarehouse.yaml @@ -52,6 +52,6 @@ spec: serviceAccountName: bookwarehouse containers: - name: bookwarehouse - image: openservicemesh/bookwarehouse:v0.8.3 + image: openservicemesh/bookwarehouse:v0.8.4-rc.1 imagePullPolicy: Always command: ["/bookwarehouse"]