Skip to content

Commit cd13276

Browse files
authored
Minor changes (#33)
1 parent 5b2f3c6 commit cd13276

6 files changed

Lines changed: 37 additions & 5 deletions

File tree

charts/cadence/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: cadence
3-
version: 0.1.8
4-
appVersion: "1.2.16"
3+
version: 0.1.9
4+
appVersion: "1.3.1"
55

66
description: |
77
Cadence is a distributed, scalable, durable, and highly available orchestration engine

charts/cadence/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# cadence
22

3-
![Version: 0.1.8](https://img.shields.io/badge/Version-0.1.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.2.16](https://img.shields.io/badge/AppVersion-1.2.16-informational?style=flat-square)
3+
![Version: 0.1.9](https://img.shields.io/badge/Version-0.1.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.3.1](https://img.shields.io/badge/AppVersion-1.3.1-informational?style=flat-square)
44

55
Cadence is a distributed, scalable, durable, and highly available orchestration engine
66
to execute asynchronous long-running business logic in a scalable and resilient way.
@@ -59,7 +59,7 @@ This chart deploys Uber Cadence server components and web UI.
5959
| global.affinity | object | `{}` | Global affinity rules |
6060
| global.containerSecurityContext | object | `{}` | Global container security context |
6161
| global.env | list | `[{"name":"ENABLE_ES","value":"false"},{"name":"SKIP_SCHEMA_SETUP","value":"true"},{"name":"RINGPOP_BOOTSTRAP_MODE","value":"dns"},{"name":"BIND_ON_IP","value":"0.0.0.0"}]` | Global environment variables (shared only by Cadence Server services [frontend, worker, matching and history]) |
62-
| global.image | object | `{"pullPolicy":"IfNotPresent","repository":"docker.io/ubercadence/server","tag":"v1.2.16-auto-setup"}` | Global image configuration (shared only by Cadence Server services [frontend, worker, matching and history]) |
62+
| global.image | object | `{"pullPolicy":"IfNotPresent","repository":"docker.io/ubercadence/server","tag":"v1.3.1-auto-setup"}` | Global image configuration (shared only by Cadence Server services [frontend, worker, matching and history]) |
6363
| global.imagePullSecrets | list | `[]` | Image pull secrets for private registries |
6464
| global.log | object | `{"level":"info","stdout":true}` | Global logging configuration (shared only by Cadence Server services [frontend, worker, matching and history]) |
6565
| global.log.level | string | `"info"` | Logging level (debug, info, warn, error) |

charts/cadence/templates/NOTES.txt

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
1. Get the Cadence Web UI URL by running these commands:
2+
{{- if .Values.web.ingress.enabled }}
3+
{{- range .Values.web.ingress.hosts }}
4+
http{{ if $.Values.web.ingress.tls }}s{{ end }}://{{ .host }}{{ if .paths }}{{ (index .paths 0).path }}{{ end }}
5+
{{- end }}
6+
{{- else if contains "NodePort" .Values.web.service.type }}
7+
export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "cadence.fullname" . }}-web)
8+
export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
9+
echo http://$NODE_IP:$NODE_PORT
10+
{{- else if contains "LoadBalancer" .Values.web.service.type }}
11+
NOTE: It may take a few minutes for the LoadBalancer IP to be available.
12+
You can watch the status by running 'kubectl get svc -w {{ include "cadence.fullname" . }}-web'
13+
export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "cadence.fullname" . }}-web -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
14+
echo http://$SERVICE_IP:{{ .Values.web.service.port }}
15+
{{- else if contains "ClusterIP" .Values.web.service.type }}
16+
echo "Visit http://127.0.0.1:8088 to use Cadence Web UI"
17+
kubectl port-forward service/{{ include "cadence.fullname" . }}-web 8088:{{ .Values.web.service.port }} --namespace {{ .Release.Namespace }}
18+
{{- end }}
19+
20+
2. Default credentials and configuration:
21+
- Cadence Web UI will be available at the URL shown above
22+
- The web interface connects to the Cadence server automatically
23+
- No default authentication is configured
24+
25+
3. To check the status of your Cadence deployment:
26+
kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/instance={{ .Release.Name }}"
27+
28+
4. To view logs from the Cadence Web UI:
29+
kubectl logs --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/instance={{ .Release.Name }},app.kubernetes.io/component=web"
30+
31+
5. For more information about Cadence, visit:
32+
https://cadenceworkflow.io/docs/get-started
File renamed without changes.
File renamed without changes.

charts/cadence/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ cassandra:
643643

644644
schema:
645645
# -- Cassandra schema version of the Cadence keyspace to use
646-
version: "0.40"
646+
version: "0.42"
647647
# -- Cassandra schema version of the Cadence visibility keyspace to use
648648
visibility_version: "0.9"
649649

0 commit comments

Comments
 (0)