From b7f19c816b4c053f1d0e5943bd2c18a23f6ef303 Mon Sep 17 00:00:00 2001 From: jaellio Date: Thu, 1 Jul 2021 14:33:28 -0700 Subject: [PATCH] chore(release): create release v0.9.1 Signed-off-by: jaellio --- charts/osm/Chart.yaml | 4 ++-- charts/osm/README.md | 2 +- charts/osm/crds/meshconfig.yaml | 2 +- charts/osm/values.yaml | 2 +- cmd/cli/mesh_upgrade.go | 2 +- cmd/init-osm-controller/init-osm-controller_test.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 +- docs/example/manifests/meshconfig/mesh-config.yaml | 2 +- pkg/configurator/methods_test.go | 2 +- pkg/constants/constants.go | 2 +- 14 files changed, 15 insertions(+), 15 deletions(-) diff --git a/charts/osm/Chart.yaml b/charts/osm/Chart.yaml index c552f99098..2a47d88a48 100644 --- a/charts/osm/Chart.yaml +++ b/charts/osm/Chart.yaml @@ -14,11 +14,11 @@ 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.9.1-rc.1 +version: 0.9.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.9.1-rc.1 +appVersion: v0.9.1 # This specifies a particular range of k8s versions that the application is compatible with. kubeVersion: ">= 1.18.0" diff --git a/charts/osm/README.md b/charts/osm/README.md index 4bc28c4937..9b36f23736 100644 --- a/charts/osm/README.md +++ b/charts/osm/README.md @@ -94,7 +94,7 @@ The following table lists the configurable parameters of the osm chart and their | OpenServiceMesh.grafana.port | int | `3000` | Grafana service's port | | OpenServiceMesh.image.pullPolicy | string | `"IfNotPresent"` | Container image pull policy | | OpenServiceMesh.image.registry | string | `"openservicemesh"` | Container image registry | -| OpenServiceMesh.image.tag | string | `"v0.9.1-rc.1"` | Container image tag | +| OpenServiceMesh.image.tag | string | `"v0.9.1"` | Container image tag | | OpenServiceMesh.imagePullSecrets | list | `[]` | `osm-controller` image pull secret | | OpenServiceMesh.inboundPortExclusionList | list | `[]` | Specifies a global list of ports to exclude from inbound traffic interception by the sidecar proxy. If specified, must be a list of positive integers. | | OpenServiceMesh.injector.autoScale | object | `{"enable":false,"maxReplicas":5,"minReplicas":1,"targetAverageUtilization":80}` | Auto scale configuration | diff --git a/charts/osm/crds/meshconfig.yaml b/charts/osm/crds/meshconfig.yaml index 88c2b2a219..1af242113b 100644 --- a/charts/osm/crds/meshconfig.yaml +++ b/charts/osm/crds/meshconfig.yaml @@ -71,7 +71,7 @@ spec: initContainerImage: description: Image for the init container type: string - default: "openservicemesh/init:v0.9.1-rc.1" + default: "openservicemesh/init:v0.9.1" resources: type: object properties: diff --git a/charts/osm/values.yaml b/charts/osm/values.yaml index dd52969f12..3dc0977087 100644 --- a/charts/osm/values.yaml +++ b/charts/osm/values.yaml @@ -12,7 +12,7 @@ OpenServiceMesh: # -- Container image pull policy pullPolicy: IfNotPresent # -- Container image tag - tag: v0.9.1-rc.1 + tag: v0.9.1 # -- `osm-controller` image pull secret imagePullSecrets: [] diff --git a/cmd/cli/mesh_upgrade.go b/cmd/cli/mesh_upgrade.go index b94fca7ff7..f6cc9ad7e2 100644 --- a/cmd/cli/mesh_upgrade.go +++ b/cmd/cli/mesh_upgrade.go @@ -16,7 +16,7 @@ import ( const ( defaultContainerRegistry = "openservicemesh" - defaultOsmImageTag = "v0.9.1-rc.1" + defaultOsmImageTag = "v0.9.1" ) const upgradeDesc = ` diff --git a/cmd/init-osm-controller/init-osm-controller_test.go b/cmd/init-osm-controller/init-osm-controller_test.go index 60169ec7e0..a3837b5704 100644 --- a/cmd/init-osm-controller/init-osm-controller_test.go +++ b/cmd/init-osm-controller/init-osm-controller_test.go @@ -24,7 +24,7 @@ func TestCreateDefaultMeshConfig(t *testing.T) { Sidecar: v1alpha1.SidecarSpec{ LogLevel: "error", EnvoyImage: "envoyproxy/envoy-alpine:v1.18.3", - InitContainerImage: "openservicemesh/init:v0.9.1-rc.1", + InitContainerImage: "openservicemesh/init:v0.9.1", EnablePrivilegedInitContainer: false, MaxDataPlaneConnections: 0, ConfigResyncInterval: "2s", diff --git a/docs/example/manifests/apps/bookbuyer.yaml b/docs/example/manifests/apps/bookbuyer.yaml index 4eff0babd4..d1213cbc85 100644 --- a/docs/example/manifests/apps/bookbuyer.yaml +++ b/docs/example/manifests/apps/bookbuyer.yaml @@ -31,7 +31,7 @@ spec: kubernetes.io/os: linux containers: - name: bookbuyer - image: openservicemesh/bookbuyer:v0.9.1-rc.1 + image: openservicemesh/bookbuyer:v0.9.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 ca714a002d..1f0d30c77f 100644 --- a/docs/example/manifests/apps/bookstore-v2.yaml +++ b/docs/example/manifests/apps/bookstore-v2.yaml @@ -46,7 +46,7 @@ spec: kubernetes.io/os: linux containers: - name: bookstore - image: openservicemesh/bookstore:v0.9.1-rc.1 + image: openservicemesh/bookstore:v0.9.1 imagePullPolicy: Always ports: - containerPort: 14001 diff --git a/docs/example/manifests/apps/bookstore.yaml b/docs/example/manifests/apps/bookstore.yaml index 4a2599a264..7c75d7df32 100644 --- a/docs/example/manifests/apps/bookstore.yaml +++ b/docs/example/manifests/apps/bookstore.yaml @@ -46,7 +46,7 @@ spec: kubernetes.io/os: linux containers: - name: bookstore - image: openservicemesh/bookstore:v0.9.1-rc.1 + image: openservicemesh/bookstore:v0.9.1 imagePullPolicy: Always ports: - containerPort: 14001 diff --git a/docs/example/manifests/apps/bookthief.yaml b/docs/example/manifests/apps/bookthief.yaml index fb95b2270f..949a8452b6 100644 --- a/docs/example/manifests/apps/bookthief.yaml +++ b/docs/example/manifests/apps/bookthief.yaml @@ -30,7 +30,7 @@ spec: kubernetes.io/os: linux containers: - name: bookthief - image: openservicemesh/bookthief:v0.9.1-rc.1 + image: openservicemesh/bookthief:v0.9.1 imagePullPolicy: Always command: ["/bookthief"] env: diff --git a/docs/example/manifests/apps/bookwarehouse.yaml b/docs/example/manifests/apps/bookwarehouse.yaml index de29e202d8..712ff00046 100644 --- a/docs/example/manifests/apps/bookwarehouse.yaml +++ b/docs/example/manifests/apps/bookwarehouse.yaml @@ -47,6 +47,6 @@ spec: kubernetes.io/os: linux containers: - name: bookwarehouse - image: openservicemesh/bookwarehouse:v0.9.1-rc.1 + image: openservicemesh/bookwarehouse:v0.9.1 imagePullPolicy: Always command: ["/bookwarehouse"] diff --git a/docs/example/manifests/meshconfig/mesh-config.yaml b/docs/example/manifests/meshconfig/mesh-config.yaml index b97c1bd500..d0b83c3b95 100644 --- a/docs/example/manifests/meshconfig/mesh-config.yaml +++ b/docs/example/manifests/meshconfig/mesh-config.yaml @@ -8,7 +8,7 @@ spec: logLevel: error maxDataPlaneConnections: 0 envoyImage: "envoyproxy/envoy-alpine:v1.18.3" - initContainerImage: "openservicemesh/init:v0.9.1-rc.1" + initContainerImage: "openservicemesh/init:v0.9.1" configResyncInterval: "0s" traffic: enableEgress: false diff --git a/pkg/configurator/methods_test.go b/pkg/configurator/methods_test.go index e2661aa2bd..802b6f4153 100644 --- a/pkg/configurator/methods_test.go +++ b/pkg/configurator/methods_test.go @@ -249,7 +249,7 @@ func TestCreateUpdateConfig(t *testing.T) { name: "GetInitContainerImage", initialMeshConfigData: &v1alpha1.MeshConfigSpec{}, checkCreate: func(assert *tassert.Assertions, cfg Configurator) { - assert.Equal("openservicemesh/init:v0.9.1-rc.1", cfg.GetInitContainerImage()) + assert.Equal("openservicemesh/init:v0.9.1", cfg.GetInitContainerImage()) }, updatedMeshConfigData: &v1alpha1.MeshConfigSpec{ Sidecar: v1alpha1.SidecarSpec{ diff --git a/pkg/constants/constants.go b/pkg/constants/constants.go index c425e0c104..cd96dd6935 100644 --- a/pkg/constants/constants.go +++ b/pkg/constants/constants.go @@ -62,7 +62,7 @@ const ( DefaultEnvoyImage = "envoyproxy/envoy-alpine:v1.18.3" // DefaultInitContainerImage is the default init container image if not defined in the osm MeshConfig - DefaultInitContainerImage = "openservicemesh/init:v0.9.1-rc.1" + DefaultInitContainerImage = "openservicemesh/init:v0.9.1" // EnvoyPrometheusInboundListenerPort is Envoy's inbound listener port number for prometheus EnvoyPrometheusInboundListenerPort = 15010