Skip to content

Commit a4fd025

Browse files
authored
Merge pull request #1658 from rackerlabs/argo-wf-argo-events
feat(argocd-understack): enable argo-workflows and argo-events on global
2 parents 00a070c + 75b5740 commit a4fd025

3 files changed

Lines changed: 26 additions & 15 deletions

File tree

charts/argocd-understack/templates/application-argo-events.yaml.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{- if eq (include "understack.isEnabled" (list $.Values.site "argo_events")) "true" }}
1+
{{- if or (eq (include "understack.isEnabled" (list $.Values.global "argo_events")) "true") (eq (include "understack.isEnabled" (list $.Values.site "argo_events")) "true") }}
22
apiVersion: argoproj.io/v1alpha1
33
kind: Application
44
metadata:

charts/argocd-understack/templates/application-argo-workflows.yaml.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{- if eq (include "understack.isEnabled" (list $.Values.site "argo_workflows")) "true" }}
1+
{{- if or (eq (include "understack.isEnabled" (list $.Values.global "argo_workflows")) "true") (eq (include "understack.isEnabled" (list $.Values.site "argo_workflows")) "true") }}
22
---
33
apiVersion: argoproj.io/v1alpha1
44
kind: Application

charts/argocd-understack/values.yaml

Lines changed: 24 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,18 @@ global:
3333
# @default -- true
3434
enabled: true
3535

36+
# -- Argo Events configuration for event-driven workflows
37+
argo_events:
38+
# -- Enable/disable deploying Argo Events
39+
# @default -- true
40+
enabled: true
41+
42+
# -- Argo Workflows configuration
43+
argo_workflows:
44+
# -- Enable/disable deploying Argo Workflows
45+
# @default -- true
46+
enabled: true
47+
3648
# -- Cert-Manager
3749
cert_manager:
3850
# -- Enable/disable deploying Cert-Manager
@@ -123,7 +135,6 @@ global:
123135
# @default -- true
124136
enabled: true
125137

126-
127138
# -- OpenStack Resource Controller operator
128139
openstack_resource_controller:
129140
# -- Enable/disable deploying OpenStack Resource Controller
@@ -172,6 +183,18 @@ site:
172183
# @default -- true
173184
enabled: true
174185

186+
# -- Argo Events configuration for event-driven workflows
187+
argo_events:
188+
# -- Enable/disable deploying Argo Events
189+
# @default -- true
190+
enabled: true
191+
192+
# -- Argo Workflows configuration
193+
argo_workflows:
194+
# -- Enable/disable deploying Argo Workflows
195+
# @default -- true
196+
enabled: true
197+
175198
# Cilium configurations
176199
cilium:
177200
# -- Enable/disable deploying Cilium configurations
@@ -372,18 +395,6 @@ site:
372395
# renovate: datasource=helm depName=ovn registryUrl=https://tarballs.opendev.org/openstack/openstack-helm-infra
373396
chartVersion: "2024.2.0"
374397

375-
# -- Argo Events configuration for event-driven workflows
376-
argo_events:
377-
# -- Enable/disable deploying Argo Events
378-
# @default -- true
379-
enabled: true
380-
381-
# -- Argo Workflows configuration
382-
argo_workflows:
383-
# -- Enable/disable deploying Argo Workflows
384-
# @default -- true
385-
enabled: true
386-
387398
# -- Cert-Manager
388399
cert_manager:
389400
# -- Enable/disable deploying Cert-Manager

0 commit comments

Comments
 (0)