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

release: Update versions to 0.9.0 #3592

Merged
merged 1 commit into from
Jun 14, 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.8.4
version: 0.9.0

# 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.4
appVersion: v0.9.0

# 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 @@ -96,7 +96,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.8.4"` | Container image tag |
| OpenServiceMesh.image.tag | string | `"v0.9.0"` | Container image tag |
| OpenServiceMesh.imagePullSecrets | list | `[]` | `osm-controller` image pull secret |
| OpenServiceMesh.injector.autoScale | object | `{"enable":false,"maxReplicas":5,"minReplicas":1,"targetAverageUtilization":80}` | Auto scale configuration |
| OpenServiceMesh.injector.autoScale.enable | bool | `false` | Enable Autoscale |
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.8.4"
default: "openservicemesh/init:v0.9.0"
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.8.4
tag: v0.9.0

# -- `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 @@ -15,7 +15,7 @@ import (

const (
defaultContainerRegistry = "openservicemesh"
defaultOsmImageTag = "v0.8.4"
defaultOsmImageTag = "v0.9.0"
)

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.8.4",
InitContainerImage: "openservicemesh/init:v0.9.0",
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 @@ -28,7 +28,7 @@ spec:
serviceAccountName: bookbuyer
containers:
- name: bookbuyer
image: openservicemesh/bookbuyer:v0.8.4
image: openservicemesh/bookbuyer:v0.9.0
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 @@ -43,7 +43,7 @@ spec:
serviceAccountName: bookstore-v2
containers:
- name: bookstore
image: openservicemesh/bookstore:v0.8.4
image: openservicemesh/bookstore:v0.9.0
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 @@ -43,7 +43,7 @@ spec:
serviceAccountName: bookstore
containers:
- name: bookstore
image: openservicemesh/bookstore:v0.8.4
image: openservicemesh/bookstore:v0.9.0
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 @@ -27,7 +27,7 @@ spec:
serviceAccountName: bookthief
containers:
- name: bookthief
image: openservicemesh/bookthief:v0.8.4
image: openservicemesh/bookthief:v0.9.0
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 @@ -44,6 +44,6 @@ spec:
serviceAccountName: bookwarehouse
containers:
- name: bookwarehouse
image: openservicemesh/bookwarehouse:v0.8.4
image: openservicemesh/bookwarehouse:v0.9.0
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.8.4"
initContainerImage: "openservicemesh/init:v0.9.0"
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 @@ -246,7 +246,7 @@ func TestCreateUpdateConfig(t *testing.T) {
name: "GetInitContainerImage",
initialMeshConfigData: &v1alpha1.MeshConfigSpec{},
checkCreate: func(assert *tassert.Assertions, cfg Configurator) {
assert.Equal("openservicemesh/init:v0.8.4", cfg.GetInitContainerImage())
assert.Equal("openservicemesh/init:v0.9.0", 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 @@ -59,7 +59,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.8.4"
DefaultInitContainerImage = "openservicemesh/init:v0.9.0"

// EnvoyPrometheusInboundListenerPort is Envoy's inbound listener port number for prometheus
EnvoyPrometheusInboundListenerPort = 15010
Expand Down