Skip to content

Commit 4d51cb1

Browse files
authored
merge(#1312): updated Cadence server 0.22.3->0.23.2, web 3.28.7->3.29.5
Updated Cadence server 0.22.3 -> 0.23.2, web 3.28.7 -> 3.29.5
2 parents 159960e + a1834e7 commit 4d51cb1

File tree

4 files changed

+20
-19
lines changed

4 files changed

+20
-19
lines changed

cadence/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: cadence
2-
version: 0.22.1
3-
appVersion: 0.22.3
2+
version: 0.23.0
3+
appVersion: 0.23.2
44
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.
55
icon: https://raw.githubusercontent.com/uber/cadence-web/master/client/assets/logo.svg
66
apiVersion: v1

cadence/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This chart bootstraps a [Cadence](https://github.com/uber/cadence) and a [Cadenc
1919
## Prerequisites
2020

2121
- Kubernetes 1.7+ with Beta APIs enabled
22-
- Cadence 0.22.0+
22+
- Cadence 0.23.0+
2323

2424

2525
## Installing the Chart
@@ -328,7 +328,7 @@ Global options overridable per service are marked with an asterisk.
328328
| `nameOverride` | Override name of the application | `` |
329329
| `fullnameOverride` | Override full name of the application | `` |
330330
| `server.image.repository` | Server image repository | `ubercadence/server` |
331-
| `server.image.tag` | Server image tag | `0.22.3` |
331+
| `server.image.tag` | Server image tag | `0.23.2` |
332332
| `server.image.pullPolicy` | Server image pull policy | `IfNotPresent` |
333333
| `server.replicaCount`* | Server replica count | `1` |
334334
| `server.metrics.annotations.enabled`* | Annotate pods with Prometheus annotations | `false` |
@@ -365,7 +365,7 @@ Global options overridable per service are marked with an asterisk.
365365
| `web.enabled` | Enable WebUI service | `true` |
366366
| `web.replicaCount` | Number of WebUI service Replicas | `1` |
367367
| `web.image.repository` | WebUI image repository | `ubercadence/web` |
368-
| `web.image.tag` | WebUI image tag | `3.28.7` |
368+
| `web.image.tag` | WebUI image tag | `3.29.5` |
369369
| `web.image.pullPolicy` | WebUI image pull policy | `IfNotPresent` |
370370
| `web.service.annotations` | WebUI service annotations | `{}` |
371371
| `web.service.type` | WebUI service type | `ClusterIP` |

cadence/templates/server-configmap.yaml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -153,12 +153,12 @@ data:
153153
prefix: {{ `{{ default .Env.STATSD_WORKER_PREFIX "cadence.worker" }}` }}
154154
{{- end}}
155155
156-
clusterMetadata:
157-
enableGlobalDomain: {{ .Values.server.config.clusterMetadata.enableGlobalDomains }}
156+
clusterGroupMetadata:
157+
enableGlobalDomain: {{ .Values.server.config.clusterMetadata.enableGlobalDomain }}
158158
failoverVersionIncrement: {{ .Values.server.config.clusterMetadata.maximumClusterCount }}
159-
masterClusterName: {{ .Values.server.config.clusterMetadata.masterClusterName }}
159+
primaryClusterName: {{ .Values.server.config.clusterMetadata.masterClusterName }}
160160
currentClusterName: {{ .Values.server.config.clusterMetadata.currentClusterName }}
161-
clusterInformation:
161+
clusterGroup:
162162
{{- $currentClusterName := .Values.server.config.clusterMetadata.currentClusterName }}
163163
{{- $currentClusterIndex := 0 }}
164164
{{- $frontendComponentName := (include "cadence.componentname" (list . "frontend")) }}
@@ -177,15 +177,16 @@ data:
177177
toDC: ""
178178
179179
archival:
180-
status: "disabled"
181-
182-
publicClient:
183-
{{- $currentClusterInfo := (index .Values.server.config.clusterMetadata.clusterInformation $currentClusterIndex) }}
184-
hostPort: "{{ $currentClusterInfo.rpcAddress | default (printf "%s%s%.0f" $frontendComponentName ":" $serverFrontendServicePort ) }}"
180+
history:
181+
status: "disabled"
182+
visibility:
183+
status: "disabled"
185184
186-
dynamicConfigClient:
187-
filepath: "/etc/cadence/config/dynamicconfig/config.yaml"
188-
pollInterval: {{ .Values.dynamicConfig.pollInterval | default "10s" | quote }}
185+
dynamicconfig:
186+
client: filebased
187+
filebased:
188+
filepath: "/etc/cadence/config/dynamicconfig/config.yaml"
189+
pollInterval: {{ .Values.dynamicConfig.pollInterval | default "10s" | quote }}
189190
190191
dynamic_config.yaml: |-
191192
{{- toYaml .Values.dynamicConfig.values | nindent 12 }}

cadence/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ debug: false
88
server:
99
image:
1010
repository: ubercadence/server
11-
tag: 0.22.3
11+
tag: 0.23.2
1212
pullPolicy: IfNotPresent
1313

1414
# Global default settings (can be overridden per service)
@@ -312,7 +312,7 @@ web:
312312

313313
image:
314314
repository: ubercadence/web
315-
tag: v3.28.7
315+
tag: v3.29.5
316316
pullPolicy: IfNotPresent
317317

318318
tcheck:

0 commit comments

Comments
 (0)