File tree 5 files changed +12
-8
lines changed
5 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 1
- cadencechart -* .tgz
1
+ cadence -* .tgz
2
2
.DS_Store
3
3
template_out.yaml
Original file line number Diff line number Diff line change 4
4
5
5
```
6
6
helm package ./charts/cadence
7
- helm template cadence-release cadencechart -0.1.0 .tgz > template_out.yaml
7
+ helm template cadence-release cadence -0.1.3 .tgz > template_out.yaml
8
8
```
9
9
10
10
## Build and deploy to a k8s cluster
11
11
12
12
```
13
13
helm package ./charts/cadence
14
- helm upgrade --install cadence-release cadencechart -0.1.0 .tgz \
14
+ helm upgrade --install cadence-release cadence -0.1.3 .tgz \
15
15
-n cadencetest \
16
16
--create-namespace
17
17
```
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 0.1.2
18
+ version : 0.1.3
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change @@ -17,13 +17,17 @@ spec:
17
17
spec :
18
18
containers :
19
19
- name : cadence-web
20
- image : ubercadence/ web:latest
20
+ image : {{ $.Values. web.image.repository }}:{{ $.Values.web.image.tag }}
21
21
imagePullPolicy : Always
22
22
ports :
23
23
- containerPort : 8088
24
24
env :
25
- - name : CADENCE_GRPC_PEERS
26
- value : cadence-frontend.{{ .Release.Namespace }}.svc.cluster.local:{{ $.Values.frontend.grpcPort }}
25
+ - name : CADENCE_TCHANNEL_PEERS
26
+ value : cadence-frontend.{{ .Release.Namespace }}.svc.cluster.local:{{ $.Values.frontend.port }}
27
+ # TODO: Switch image version to v4.0.0 and uncomment below after the port forwarding issue is fixed
28
+ # Something must have changed in the way the web service is started in > v3.35.6 which prevents localhost:8088 port forwarding
29
+ # - name: CADENCE_GRPC_PEERS
30
+ # value: cadence-frontend.{{ .Release.Namespace }}.svc.cluster.local:{{ $.Values.frontend.grpcPort }}
27
31
resources :
28
32
limits :
29
33
cpu : {{ $.Values.web.cpu.limit }}
Original file line number Diff line number Diff line change 108
108
# -- Docker image repository to use for the Cadence Web UI
109
109
repository : " docker.io/ubercadence/web"
110
110
# -- Docker image tag to use for the Cadence Web UI
111
- tag : " latest "
111
+ tag : " v3.35.6 "
112
112
cpu :
113
113
limit : " 500m"
114
114
request : " 500m"
You can’t perform that action at this time.
0 commit comments