-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: PUC-113 Add Argo Workflow as Component
As part of the install process for dev and production, we need to add Argo Workflows as a component. This adds the kustomize template to create the helm charts. This is barebones. We may need to update with proper values we want for prod.
- Loading branch information
Amir Chatur
committed
Feb 12, 2024
1 parent
f58c023
commit 2282aa1
Showing
4 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: Namespace | ||
metadata: | ||
name: argo | ||
labels: | ||
kubernetes.io/metadata.name: argo | ||
name: argo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ kind: Kustomization | |
resources: | ||
- nautobot.yaml | ||
- openstack.yaml | ||
- argo-workflow.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
|
||
helmGlobals: | ||
chartHome: ../../charts/ | ||
|
||
helmCharts: | ||
- name: argo-workflows | ||
includeCRDs: true | ||
namespace: argo | ||
valuesFile: values.yaml | ||
releaseName: argo-workflow | ||
version: 0.40.10 | ||
repo: https://argoproj.github.io/argo-helm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
controller.workflowNamespaces: argo | ||
workflow.serviceAccount.create: True | ||
workflow.serviceAccount.name: wf-tester | ||
server.enabled: True | ||
Check warning on line 4 in components/11-argo-workflow/values.yaml GitHub Actions / lint-yaml
|