Skip to content

Commit

Permalink
merge(#1236): Cadence server 0.19.1, chart 0.17.0
Browse files Browse the repository at this point in the history
Upgraded Cadence server 0.18.2->0.19.1, chart 0.16.2->0.17.0
#1236
  • Loading branch information
pregnor authored Apr 12, 2021
2 parents cd719b6 + b520f9c commit 7999319
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions cadence/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: cadence
version: 0.16.2
appVersion: 0.18.2
version: 0.17.0
appVersion: 0.19.1
description: Cadence is a distributed, scalable, durable, and highly available orchestration engine to execute asynchronous long-running business logic in a scalable and resilient way.
icon: https://raw.githubusercontent.com/uber/cadence-web/master/client/assets/logo.svg
apiVersion: v1
Expand Down
4 changes: 2 additions & 2 deletions cadence/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This chart bootstraps a [Cadence](https://github.com/uber/cadence) and a [Cadenc
## Prerequisites

- Kubernetes 1.7+ with Beta APIs enabled
- Cadence 0.18.0+
- Cadence 0.19.0+


## Installing the Chart
Expand Down Expand Up @@ -231,7 +231,7 @@ Global options overridable per service are marked with an asterisk.
| `nameOverride` | Override name of the application | `` |
| `fullnameOverride` | Override full name of the application | `` |
| `server.image.repository` | Server image repository | `ubercadence/server` |
| `server.image.tag` | Server image tag | `0.18.2` |
| `server.image.tag` | Server image tag | `0.19.1` |
| `server.image.pullPolicy` | Server image pull policy | `IfNotPresent` |
| `server.replicaCount`* | Server replica count | `1` |
| `server.metrics.annotations.enabled`* | Annotate pods with Prometheus annotations | `false` |
Expand Down
10 changes: 5 additions & 5 deletions cadence/templates/server-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,19 +141,19 @@ data:
{{- end}}
clusterMetadata:
enableGlobalDomain: false
enableGlobalDomain: {{ `{{ default .Env.ENABLE_GLOBAL_DOMAIN "false" }}` }}
failoverVersionIncrement: 10
masterClusterName: "active"
currentClusterName: "active"
masterClusterName: "master"
currentClusterName: "master"
clusterInformation:
active:
master:
enabled: true
initialFailoverVersion: 0
rpcName: "cadence-frontend"
rpcAddress: "127.0.0.1:7933"
dcRedirectionPolicy:
policy: "noop"
policy: {{ `{{ default .Env.DC_REDIRECT_POLICY "selected-apis-forwarding" }}` }}
toDC: ""
archival:
Expand Down
2 changes: 1 addition & 1 deletion cadence/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ debug: false
server:
image:
repository: ubercadence/server
tag: 0.18.2
tag: 0.19.1
pullPolicy: IfNotPresent

# Global default settings (can be overridden per service)
Expand Down

0 comments on commit 7999319

Please sign in to comment.