feat: Include new component argo workflows
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
- import_tasks: init.yml
|
||||
- import_tasks: k3s.yml
|
||||
- import_tasks: assets.yml
|
||||
- import_tasks: workflow.yml
|
||||
- import_tasks: virtualip.yml
|
||||
- import_tasks: metadata.yml
|
||||
- import_tasks: storage.yml
|
||||
|
@ -0,0 +1,20 @@
|
||||
- block:
|
||||
|
||||
- name: Install argo-workflows chart
|
||||
kubernetes.core.helm:
|
||||
name: argo-workflows
|
||||
chart_ref: /opt/metacluster/helm-charts/argo-workflows
|
||||
release_namespace: argo-workflows
|
||||
create_namespace: true
|
||||
wait: false
|
||||
kubeconfig: "{{ kubeconfig.path }}"
|
||||
values: "{{ components['argo-workflows'].chart_values }}"
|
||||
|
||||
# - name: Trigger handlers
|
||||
# ansible.builtin.meta: flush_handlers
|
||||
|
||||
module_defaults:
|
||||
ansible.builtin.uri:
|
||||
validate_certs: no
|
||||
status_code: [200, 201]
|
||||
body_format: json
|
Reference in New Issue
Block a user