Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if eq (include "understack.isEnabled" (list $.Values.site "argo_events")) "true" }}
{{- if or (eq (include "understack.isEnabled" (list $.Values.global "argo_events")) "true") (eq (include "understack.isEnabled" (list $.Values.site "argo_events")) "true") }}
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if eq (include "understack.isEnabled" (list $.Values.site "argo_workflows")) "true" }}
{{- if or (eq (include "understack.isEnabled" (list $.Values.global "argo_workflows")) "true") (eq (include "understack.isEnabled" (list $.Values.site "argo_workflows")) "true") }}
---
apiVersion: argoproj.io/v1alpha1
kind: Application
Expand Down
37 changes: 24 additions & 13 deletions charts/argocd-understack/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,18 @@ global:
# @default -- true
enabled: true

# -- Argo Events configuration for event-driven workflows
argo_events:
# -- Enable/disable deploying Argo Events
# @default -- true
enabled: true

# -- Argo Workflows configuration
argo_workflows:
# -- Enable/disable deploying Argo Workflows
# @default -- true
enabled: true

# -- Cert-Manager
cert_manager:
# -- Enable/disable deploying Cert-Manager
Expand Down Expand Up @@ -123,7 +135,6 @@ global:
# @default -- true
enabled: true


# -- OpenStack Resource Controller operator
openstack_resource_controller:
# -- Enable/disable deploying OpenStack Resource Controller
Expand Down Expand Up @@ -172,6 +183,18 @@ site:
# @default -- true
enabled: true

# -- Argo Events configuration for event-driven workflows
argo_events:
# -- Enable/disable deploying Argo Events
# @default -- true
enabled: true

# -- Argo Workflows configuration
argo_workflows:
# -- Enable/disable deploying Argo Workflows
# @default -- true
enabled: true

# Cilium configurations
cilium:
# -- Enable/disable deploying Cilium configurations
Expand Down Expand Up @@ -372,18 +395,6 @@ site:
# renovate: datasource=helm depName=ovn registryUrl=https://tarballs.opendev.org/openstack/openstack-helm-infra
chartVersion: "2024.2.0"

# -- Argo Events configuration for event-driven workflows
argo_events:
# -- Enable/disable deploying Argo Events
# @default -- true
enabled: true

# -- Argo Workflows configuration
argo_workflows:
# -- Enable/disable deploying Argo Workflows
# @default -- true
enabled: true

# -- Cert-Manager
cert_manager:
# -- Enable/disable deploying Cert-Manager
Expand Down
Loading