Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

chore(release): create release v0.9.1 #3719

Merged
merged 1 commit into from
Jul 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/osm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion charts/osm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion charts/osm/crds/meshconfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion charts/osm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: []
Expand Down
2 changes: 1 addition & 1 deletion cmd/cli/mesh_upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (

const (
defaultContainerRegistry = "openservicemesh"
defaultOsmImageTag = "v0.9.1-rc.1"
defaultOsmImageTag = "v0.9.1"
)

const upgradeDesc = `
Expand Down
2 changes: 1 addition & 1 deletion cmd/init-osm-controller/init-osm-controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion docs/example/manifests/apps/bookbuyer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion docs/example/manifests/apps/bookstore-v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/example/manifests/apps/bookstore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/example/manifests/apps/bookthief.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion docs/example/manifests/apps/bookwarehouse.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
2 changes: 1 addition & 1 deletion docs/example/manifests/meshconfig/mesh-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pkg/configurator/methods_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down
2 changes: 1 addition & 1 deletion pkg/constants/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down