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

Commit

Permalink
Merge pull request #3203 from openservicemesh/finalReleasev0.8.3
Browse files Browse the repository at this point in the history
chore(release) : cutting release v0.8.3
  • Loading branch information
snehachhabria committed Apr 20, 2021
2 parents 4da887b + 55280d4 commit 6fa4a57
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 13 deletions.
4 changes: 2 additions & 2 deletions charts/osm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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-rc.1
version: 0.8.3

# 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-rc.1
appVersion: v0.8.3
2 changes: 1 addition & 1 deletion charts/osm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-rc.1"` | `osm-controller` image tag |
| OpenServiceMesh.image.tag | string | `"v0.8.3"` | `osm-controller` image tag |
| OpenServiceMesh.imagePullSecrets | list | `[]` | `osm-controller` image pull secret |
| OpenServiceMesh.injector | object | `{"podLabels":{},"replicaCount":1,"resource":{"limits":{"cpu":"0.5","memory":"64M"},"requests":{"cpu":"0.3","memory":"64M"}}}` | Sidecar injector configuration |
| OpenServiceMesh.meshName | string | `"osm"` | Name for the new control plane instance |
Expand Down
2 changes: 1 addition & 1 deletion charts/osm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ OpenServiceMesh:
# -- `osm-controller` pod PullPolicy
pullPolicy: IfNotPresent
# -- `osm-controller` image tag
tag: v0.8.3-rc.1
tag: v0.8.3
# -- `osm-controller` image pull secret
imagePullSecrets: []
# -- Envoy sidecar image
Expand Down
2 changes: 1 addition & 1 deletion cmd/cli/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const (
defaultContainerRegistrySecret = ""
defaultMeshName = "osm"
defaultOsmImagePullPolicy = "IfNotPresent"
defaultOsmImageTag = "v0.8.3-rc.1"
defaultOsmImageTag = "v0.8.3"
defaultPrometheusRetentionTime = constants.PrometheusDefaultRetentionTime
defaultVaultHost = ""
defaultVaultProtocol = "http"
Expand Down
5 changes: 2 additions & 3 deletions docs/content/docs/install/manual_demo/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ In a browser, open up the following urls:
- [http://localhost:8080](http://localhost:8080) - **bookbuyer**
- [http://localhost:8083](http://localhost:8083) - **bookthief**
- [http://localhost:8084](http://localhost:8084) - **bookstore**
- _Note: This page will not be available at this time in the demo. This will become available during the SMI Traffic Split configuration set up_
- [http://localhost:8082](http://localhost:8082) - **bookstore-v2**
- _Note: This page will not be available at this time in the demo. This will become available during the SMI Traffic Split configuration set up_

Expand Down Expand Up @@ -211,7 +210,7 @@ kubectl apply -f https://raw.githubusercontent.com/openservicemesh/osm/main/docs
The counters should now be incrementing for the `bookbuyer`, and `bookstore` applications:

- [http://localhost:8080](http://localhost:8080) - **bookbuyer**
- [http://localhost:8081](http://localhost:8084) - **bookstore**
- [http://localhost:8084](http://localhost:8084) - **bookstore**

Note that the counter is _not_ incrementing for the `bookthief` application:

Expand Down Expand Up @@ -362,7 +361,7 @@ Wait for the changes to propagate and observe the counters increment for `bookst
browser windows:

- [http://localhost:8082](http://localhost:8082) - **bookstore-v2**
- [http://localhost:8083](http://localhost:8083) - **bookstore**
- [http://localhost:8083](http://localhost:8084) - **bookstore**

Now, all traffic directed to the `bookstore` service is flowing to `bookstore-v2`.

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 @@ -36,7 +36,7 @@ spec:
serviceAccountName: bookbuyer
containers:
- name: bookbuyer
image: openservicemesh/bookbuyer:v0.8.3-rc.1
image: openservicemesh/bookbuyer:v0.8.3
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.3-rc.1
image: openservicemesh/bookstore:v0.8.3
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 @@ -51,7 +51,7 @@ spec:
serviceAccountName: bookstore
containers:
- name: bookstore
image: openservicemesh/bookstore:v0.8.3-rc.1
image: openservicemesh/bookstore:v0.8.3
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 @@ -35,7 +35,7 @@ spec:
serviceAccountName: bookthief
containers:
- name: bookthief
image: openservicemesh/bookthief:v0.8.3-rc.1
image: openservicemesh/bookthief:v0.8.3
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 @@ -52,6 +52,6 @@ spec:
serviceAccountName: bookwarehouse
containers:
- name: bookwarehouse
image: openservicemesh/bookwarehouse:v0.8.3-rc.1
image: openservicemesh/bookwarehouse:v0.8.3
imagePullPolicy: Always
command: ["/bookwarehouse"]

0 comments on commit 6fa4a57

Please sign in to comment.