Skip to content

Commit

Permalink
Merge pull request #8 from orkes-io/additional-service
Browse files Browse the repository at this point in the history
2.1.89 Release
  • Loading branch information
boney9 authored Dec 5, 2022
2 parents 2969e02 + e81e757 commit da225e5
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 6 deletions.
4 changes: 2 additions & 2 deletions charts/orkes-conductor-standalone/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 2.2.9
appVersion: "2.2.9"
version: 2.2.91
appVersion: "2.1.89"
4 changes: 2 additions & 2 deletions charts/orkes-conductor/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ description: Helm Chart for Deploying Orkes Conductor

type: application

version: 2.2.9
appVersion: "2.2.9"
version: 2.2.91
appVersion: "2.1.89"
4 changes: 4 additions & 0 deletions charts/orkes-conductor/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@ spec:
value: {{ .Values.app.apiRateLimiterEnabled | quote }}
- name: conductor.archive.db.document.store.s3.s3BucketName
value: {{ .Values.app.documentStoreS3BucketName | quote }}
- name: conductor.archive.db.document.store.type.azureblob.containerName
value: {{ .Values.app.documentStoreAzureBlobContainerName | quote }}
- name: conductor.archive.db.document.store.type.azureblob.endpoint
value: {{ .Values.app.documentStoreAzureBlobEndpoint | quote }}
- name: conductor.archive.db.document.store.type
value: {{ .Values.app.archiveStoreType | quote }}
- name: LOCAL_HOST_IP
Expand Down
17 changes: 17 additions & 0 deletions charts/orkes-conductor/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,20 @@ spec:
name: default-port
selector:
{{- include "orkes-conductor.selectorLabels" . | nindent 4 }}
---
apiVersion: v1
kind: Service
metadata:
name: {{ include "orkes-conductor.fullname" . }}-app
labels:
serviceName: {{ include "orkes-conductor.fullname" . }}-app
{{- include "orkes-conductor.labels" . | nindent 4 }}-app
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.appPort }}
protocol: TCP
targetPort: 8080
name: default-app-port
selector:
{{- include "orkes-conductor.selectorLabels" . | nindent 4 }}
11 changes: 9 additions & 2 deletions charts/orkes-conductor/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@ replicaCount: 3

service:
port: 5000
appPort: 8080

image:
repository: orkesio/orkes-conductor-server
tag: 2.2.9
tag: 2.1.89
pullPolicy: Always
livenessPort: 5000

workerImage:
repository: orkesio/orkes-conductor-workers
tag: 2.2.9
tag: 2.1.89
pullPolicy: Always

app:
Expand All @@ -34,7 +35,13 @@ app:
secretsType: "memory"
workflowExecutionLockEnabled: "true"
apiRateLimiterEnabled: "true"
# Required if archiveStoreType = s3
documentStoreS3BucketName: "s3-bucket-name"
# Required if archiveStoreType = azureblob
documentStoreAzureBlobContainerName: "azure-blob-container"
# Required if archiveStoreType = azureblob
documentStoreAzureBlobEndpoint: "azure-blob-endpoint"
# postgres, s3, azureblob, gcp
archiveStoreType: "postgres"
resources:
cpuLimit: "3"
Expand Down

0 comments on commit da225e5

Please sign in to comment.