Skip to content

Commit

Permalink
Merge pull request #9 from Multiwoven/rafaeloneill/infra-25-ability-t…
Browse files Browse the repository at this point in the history
…o-configure-in-house-temporalpostgresql-or-cloud

feat: added flag to disable temporal deployment
  • Loading branch information
subintp authored May 1, 2024
2 parents 18a720e + 1ecb6a7 commit 0c6134b
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 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.3.0
appVersion: "0.3.0"
version: 0.4.0
appVersion: "0.4.0"
maintainers:
- name: subintp
- name: RafaelOAiSquared
Expand Down
4 changes: 3 additions & 1 deletion charts/multiwoven/templates/temporal-deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{{ if .Values.temporal.enabled }}
apiVersion: apps/v1
kind: Deployment
metadata:
Expand Down Expand Up @@ -50,4 +51,5 @@ spec:
ports:
- containerPort: 7233
resources: {{- toYaml .Values.temporal.temporal.resources | nindent 10 }}
restartPolicy: Always
restartPolicy: Always
{{ end }}
4 changes: 3 additions & 1 deletion charts/multiwoven/templates/temporal-service.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{{ if .Values.temporal.enabled }}
apiVersion: v1
kind: Service
metadata:
Expand All @@ -16,4 +17,5 @@ spec:
io.kompose.service: temporal
{{- include "chart.selectorLabels" . | nindent 4 }}
ports:
{{- .Values.temporal.ports | toYaml | nindent 2 -}}
{{- .Values.temporal.ports | toYaml | nindent 2 -}}
{{ end }}
4 changes: 3 additions & 1 deletion charts/multiwoven/templates/temporal-ui-deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{{ if .Values.temporal.enabled }}
apiVersion: apps/v1
kind: Deployment
metadata:
Expand Down Expand Up @@ -43,4 +44,5 @@ spec:
hostPort: 8080
protocol: TCP
resources: {}
restartPolicy: Always
restartPolicy: Always
{{ end }}
4 changes: 3 additions & 1 deletion charts/multiwoven/templates/temporal-ui-service.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{{ if .Values.temporal.enabled }}
apiVersion: v1
kind: Service
metadata:
Expand All @@ -15,4 +16,5 @@ spec:
io.kompose.service: temporal-ui
{{- include "chart.selectorLabels" . | nindent 4 }}
ports:
{{- .Values.temporalUi.ports | toYaml | nindent 2 -}}
{{- .Values.temporalUi.ports | toYaml | nindent 2 -}}
{{ end }}
1 change: 1 addition & 0 deletions charts/multiwoven/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ pvc:
pvc:
storageRequest: 100Mi
temporal:
enabled: true
ports:
- name: "7233"
port: 7233
Expand Down

0 comments on commit 0c6134b

Please sign in to comment.