Samuli Silvius | e687cc7 | 2019-02-12 15:05:55 +0200 | [diff] [blame] | 1 | --- |
| 2 | # |
| 3 | # Master playbook to run offline installer. |
Petr OspalĂ˝ | 89ee9e4 | 2019-02-15 03:36:10 +0100 | [diff] [blame] | 4 | # Run this playbook e.g. with command: ./run_playbook.sh -e @application/application_configuration.yml site.yml |
Samuli Silvius | e687cc7 | 2019-02-12 15:05:55 +0200 | [diff] [blame] | 5 | # |
| 6 | |
Petr OspalĂ˝ | 89ee9e4 | 2019-02-15 03:36:10 +0100 | [diff] [blame] | 7 | # the setup.yml playbook is excluded from this list for the following reasons: |
| 8 | # 1. setup.yml playbook requires either already deployed ssh key or |
| 9 | # --ask-pass argument to interactively distribute a new key, which may |
| 10 | # be a redundant effort if you already secured passwordless login |
| 11 | # 2. Also, the setup.yml playbook is not mandatory and can be replaced with |
| 12 | # manual or semi-manual steps with ssh-copy-id command or other |
| 13 | # 3. playbooks here are more or less batch jobs and the ssh authentication |
| 14 | # is a precondition, which should be done during configuration of the |
| 15 | # installer |
Samuli Silvius | 29886f0 | 2019-02-19 16:00:37 +0200 | [diff] [blame] | 16 | - import_playbook: resources.yml |
Samuli Silvius | e687cc7 | 2019-02-12 15:05:55 +0200 | [diff] [blame] | 17 | - import_playbook: infrastructure.yml |
Bartek Grzybowski | cf6797c | 2019-05-22 14:53:31 +0200 | [diff] [blame] | 18 | - import_playbook: rke.yml |
Bartek Grzybowski | cacb2eb | 2021-06-11 13:16:10 +0200 | [diff] [blame] | 19 | - import_playbook: nfs.yml |
Bartek Grzybowski | 74ff05d | 2021-06-01 13:14:39 +0200 | [diff] [blame] | 20 | - import_playbook: kube_prometheus.yml |
| 21 | when: kube_prometheus_stack_enabled |
Bartek Grzybowski | d17900b | 2021-11-10 12:23:07 +0100 | [diff] [blame] | 22 | - import_playbook: cert_manager.yml |
Bartek Grzybowski | 7cbde01 | 2022-04-08 14:09:36 +0200 | [diff] [blame] | 23 | - import_playbook: strimzi_kafka.yml |
Samuli Silvius | e687cc7 | 2019-02-12 15:05:55 +0200 | [diff] [blame] | 24 | - import_playbook: application.yml |