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

Commit

Permalink
chore(release): create release v0.8.4 (#3358)
Browse files Browse the repository at this point in the history
* chore(envoy): update envoy to v1.17.3

Signed-off-by: Johnson Shi <[email protected]>

* chore(release): create release v0.8.4

Signed-off-by: Johnson Shi <[email protected]>
  • Loading branch information
johnsonshi committed May 17, 2021
1 parent 3ecafb9 commit 3d923b3
Show file tree
Hide file tree
Showing 10 changed files with 13 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.4-rc.1
version: 0.8.4

# 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-rc.1
appVersion: v0.8.4
4 changes: 2 additions & 2 deletions 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.4-rc.1"` | `osm-controller` image tag |
| OpenServiceMesh.image.tag | string | `"v0.8.4"` | `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 |
Expand All @@ -107,7 +107,7 @@ The following table lists the configurable parameters of the osm chart and their
| OpenServiceMesh.prometheus.retention.time | string | `"15d"` | Prometheus retention time |
| OpenServiceMesh.replicaCount | int | `1` | `osm-controller` replicas |
| OpenServiceMesh.serviceCertValidityDuration | string | `"24h"` | Sets the service certificatevalidity duration |
| OpenServiceMesh.sidecarImage | string | `"envoyproxy/envoy-alpine:v1.17.2"` | Envoy sidecar image |
| OpenServiceMesh.sidecarImage | string | `"envoyproxy/envoy-alpine:v1.17.3"` | Envoy sidecar image |
| OpenServiceMesh.tracing.address | string | `""` | Tracing destination cluster (must contain the namespace). When left empty, this is computed in helper template to "jaeger.<osm-namespace>.svc.cluster.local". Please override for BYO-tracing as documented in tracing.md |
| OpenServiceMesh.tracing.enable | bool | `false` | Toggles Envoy's tracing functionality on/off for all sidecar proxies in the cluster |
| OpenServiceMesh.tracing.endpoint | string | `"/api/v2/spans"` | Destination's API or collector endpoint where the spans will be sent to |
Expand Down
2 changes: 1 addition & 1 deletion charts/osm/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
"title": "The sidecarImage schema",
"description": "The proxy side car image to run.",
"examples": [
"envoyproxy/envoy-alpine:v1.17.2"
"envoyproxy/envoy-alpine:v1.17.3"
]
},
"certificateManager": {
Expand Down
4 changes: 2 additions & 2 deletions charts/osm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ OpenServiceMesh:
# -- `osm-controller` pod PullPolicy
pullPolicy: IfNotPresent
# -- `osm-controller` image tag
tag: v0.8.4-rc.1
tag: v0.8.4
# -- `osm-controller` image pull secret
imagePullSecrets: []
# -- Envoy sidecar image
sidecarImage: envoyproxy/envoy-alpine:v1.17.2
sidecarImage: envoyproxy/envoy-alpine:v1.17.3
osmcontroller:
resource:
limits:
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.4-rc.1"
defaultOsmImageTag = "v0.8.4"
defaultPrometheusRetentionTime = constants.PrometheusDefaultRetentionTime
defaultVaultHost = ""
defaultVaultProtocol = "http"
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.4-rc.1
image: openservicemesh/bookbuyer:v0.8.4
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-rc.1
image: openservicemesh/bookstore:v0.8.4
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.4-rc.1
image: openservicemesh/bookstore:v0.8.4
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.4-rc.1
image: openservicemesh/bookthief:v0.8.4
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.4-rc.1
image: openservicemesh/bookwarehouse:v0.8.4
imagePullPolicy: Always
command: ["/bookwarehouse"]

0 comments on commit 3d923b3

Please sign in to comment.