mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-22 16:23:25 +01:00
43 lines
1.3 KiB
YAML
43 lines
1.3 KiB
YAML
---
|
|
# Kestra ansible-playbook Template
|
|
# ---
|
|
#
|
|
# Run an ansible playbook defined inline the kestra flow.
|
|
#
|
|
id: ansible_job
|
|
namespace: # your-namespace
|
|
|
|
tasks:
|
|
- id: ansible
|
|
type: io.kestra.plugin.core.flow.WorkingDirectory
|
|
tasks:
|
|
- id: local_files
|
|
type: io.kestra.core.tasks.storages.LocalFiles
|
|
inputs:
|
|
inventory.ini: |
|
|
srv-demo-1.home.clcreative.de
|
|
# --> replace with your playbook
|
|
myplaybook.yaml: |
|
|
---
|
|
- hosts: srv-demo-1.home.clcreative.de
|
|
tasks:
|
|
- name: upgrade apt packages
|
|
become: true
|
|
apt:
|
|
upgrade: yes
|
|
update_cache: yes
|
|
# <--
|
|
id_rsa: "{{ secret('SSH_KEY') }}"
|
|
- id: ansible_task
|
|
type: io.kestra.plugin.ansible.cli.AnsibleCLI
|
|
docker:
|
|
image: cytopia/ansible:latest-tools
|
|
user: "1000" # required to set ssh key permissions
|
|
env:
|
|
"ANSIBLE_HOST_KEY_CHECKING": "false"
|
|
# --> (optional) when using a different remote user
|
|
# "ANSIBLE_REMOTE_USER": "your-remote-user"
|
|
# <--
|
|
commands:
|
|
- ansible-playbook -i inventory.ini --key-file id_rsa myplaybook.yaml
|