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

Commit

Permalink
Cut v0.5.0 (#2031)
Browse files Browse the repository at this point in the history
* Cut v0.5.0

* Regenerate charts/osm/README.md
  • Loading branch information
nojnhuh authored Nov 12, 2020
1 parent 7823ddd commit c614ca2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 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.5.0-rc.1
version: 0.5.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.5.0-rc.1
appVersion: v0.5.0
13 changes: 9 additions & 4 deletions charts/osm/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# osm

![Version: 0.4.2](https://img.shields.io/badge/Version-0.4.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.4.2](https://img.shields.io/badge/AppVersion-v0.4.2-informational?style=flat-square)
![Version: 0.5.0](https://img.shields.io/badge/Version-0.5.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.5.0](https://img.shields.io/badge/AppVersion-v0.5.0-informational?style=flat-square)

A Helm chart to install the OSM control plane on Kubernetes

Expand All @@ -17,15 +17,20 @@ A Helm chart to install the OSM control plane on Kubernetes
| OpenServiceMesh.enableBackpressureExperimental | bool | `false` | |
| OpenServiceMesh.enableDebugServer | bool | `false` | |
| OpenServiceMesh.enableEgress | bool | `false` | |
| OpenServiceMesh.enableGrafana | bool | `false` | |
| OpenServiceMesh.enableFluentbit | bool | `false` | |
| OpenServiceMesh.enableGrafana | bool | `false` | |
| OpenServiceMesh.enablePermissiveTrafficPolicy | bool | `false` | |
| OpenServiceMesh.enablePrometheus | bool | `true` | |
| OpenServiceMesh.enforceSingleMesh | bool | `false` | |
| OpenServiceMesh.envoyLogLevel | string | `"error"` | |
| OpenServiceMesh.fluentBitImage.name | string | `"fluentbit-logger"` | |
| OpenServiceMesh.fluentBitImage.pullPolicy | string | `"IfNotPresent"` | |
| OpenServiceMesh.fluentBitImage.registry | string | `"fluent"` | |
| OpenServiceMesh.fluentBitImage.tag | float | `1.5` | |
| OpenServiceMesh.grafana.port | int | `3000` | |
| OpenServiceMesh.image.pullPolicy | string | `"IfNotPresent"` | |
| OpenServiceMesh.image.registry | string | `"openservicemesh"` | |
| OpenServiceMesh.image.tag | string | `"v0.4.2"` | |
| OpenServiceMesh.image.tag | string | `"v0.5.0"` | |
| OpenServiceMesh.imagePullSecrets | list | `[]` | |
| OpenServiceMesh.meshName | string | `"osm"` | |
| OpenServiceMesh.prometheus.port | int | `7070` | |
Expand All @@ -42,4 +47,4 @@ A Helm chart to install the OSM control plane on Kubernetes
| OpenServiceMesh.vault.protocol | string | `"http"` | |
| OpenServiceMesh.vault.role | string | `"openservicemesh"` | |
| OpenServiceMesh.vault.token | string | `nil` | |
| OpenServiceMesh.enforceSingleMesh | bool | `"false"` | |

2 changes: 1 addition & 1 deletion charts/osm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ OpenServiceMesh:
image:
registry: openservicemesh
pullPolicy: IfNotPresent
tag: v0.5.0-rc.1
tag: v0.5.0
imagePullSecrets: []
sidecarImage: envoyproxy/envoy-alpine:v1.15.0
prometheus:
Expand Down
2 changes: 1 addition & 1 deletion cmd/cli/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ func newInstallCmd(config *helm.Configuration, out io.Writer) *cobra.Command {
f.StringVar(&inst.containerRegistry, "container-registry", "openservicemesh", "container registry that hosts control plane component images")
f.StringVar(&inst.chartPath, "osm-chart-path", "", "path to osm chart to override default chart")
f.StringVar(&inst.certificateManager, "certificate-manager", defaultCertManager, "certificate manager to use one of (tresor, vault, cert-manager)")
f.StringVar(&inst.osmImageTag, "osm-image-tag", "v0.5.0-rc.1", "osm image tag")
f.StringVar(&inst.osmImageTag, "osm-image-tag", "v0.5.0", "osm image tag")
f.StringVar(&inst.osmImagePullPolicy, "osm-image-pull-policy", defaultOsmImagePullPolicy, "osm image pull policy")
f.StringVar(&inst.containerRegistrySecret, "container-registry-secret", "", "name of Kubernetes secret for container registry credentials to be created if it doesn't already exist")
f.StringVar(&inst.vaultHost, "vault-host", "", "Hashicorp Vault host/service - where Vault is installed")
Expand Down

0 comments on commit c614ca2

Please sign in to comment.