From 130746e6a1f184f4dece8142a234235ca97480e1 Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Fri, 21 Aug 2026 16:44:59 -0700 Subject: [PATCH] Add Temporal worker for production task queue --- k8s/apps/temporal/worker-production.yaml | 18 ++++++++++++++++++ k8s/argocd/apps/60-applications.yaml | 3 +++ 2 files changed, 21 insertions(+) create mode 100644 k8s/apps/temporal/worker-production.yaml diff --git a/k8s/apps/temporal/worker-production.yaml b/k8s/apps/temporal/worker-production.yaml new file mode 100644 index 0000000..f8bde2e --- /dev/null +++ b/k8s/apps/temporal/worker-production.yaml @@ -0,0 +1,18 @@ +apiVersion: kmsvc.io/v1 +kind: TemporalWorker +metadata: + name: worker-production + namespace: temporal +spec: + namespace: production + taskQueue: worker-production + concurrency: 10 + workflowTypes: + - HelloWorldWorkflow + - GreeterWorkflow + - ProcessOrderWorkflow + activityTypes: + - GreetActivity + - ValidateOrderActivity + - ProcessPaymentActivity + - NotifyCustomerActivity diff --git a/k8s/argocd/apps/60-applications.yaml b/k8s/argocd/apps/60-applications.yaml index aa996f0..b4fcc84 100644 --- a/k8s/argocd/apps/60-applications.yaml +++ b/k8s/argocd/apps/60-applications.yaml @@ -22,6 +22,9 @@ spec: - repoURL: https://github.com/Riotpiaole/riotpiao.homelab.com.git targetRevision: main ref: values + - repoURL: https://github.com/Riotpiaole/riotpiao.homelab.com.git + targetRevision: main + path: k8s/apps/temporal destination: server: https://kubernetes.default.svc namespace: temporal