Skip to content

Commit

Permalink
feat: adding configuration for temporal cloud (#18)
Browse files Browse the repository at this point in the history
* feat: adding configuration for temporal cloud

* chore: upgraded chart version
  • Loading branch information
RafaelOAiSquared authored May 8, 2024
1 parent a74be7c commit f7db214
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/multiwoven/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: multiwoven
description: Open-source reverse ETL, an alternative to Hightouch, Census etc. 🔥
type: application
version: 0.9.0
appVersion: "0.9.0"
version: 0.10.0
appVersion: "0.10.0"
maintainers:
- name: subintp
- name: RafaelOAiSquared
Expand Down
15 changes: 15 additions & 0 deletions charts/multiwoven/templates/multiwoven-server-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,19 @@ spec:
initialDelaySeconds: 5
periodSeconds: 10
resources: {{- toYaml .Values.multiwovenServer.multiwovenServer.resources | nindent 10 }}
{{ if not .Values.temporal.enabled }}
volumeMounts:
- name: ssl
mountPath: /certs
readOnly: false
volumes:
- name: ssl
secret:
secretName: temporal-cloud
items:
- key: temporal-client-key
path: ./temporal.pem
- key: temporal-root-cert
path: ./temporal.key
{{ end }}
restartPolicy: Always
15 changes: 15 additions & 0 deletions charts/multiwoven/templates/multiwoven-worker-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,19 @@ spec:
initialDelaySeconds: 5
periodSeconds: 10
resources: {{- toYaml .Values.multiwovenWorker.multiwovenWorker.resources | nindent 10 }}
{{ if not .Values.temporal.enabled }}
volumeMounts:
- name: ssl
mountPath: /certs
readOnly: false
volumes:
- name: ssl
secret:
secretName: temporal-cloud
items:
- key: temporal-client-key
path: ./temporal.pem
- key: temporal-root-cert
path: ./temporal.key
{{ end }}
restartPolicy: Always

0 comments on commit f7db214

Please sign in to comment.