Some checks reported errors
continuous-integration/drone/push Build encountered an error
35 lines
703 B
YAML
35 lines
703 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: CentOS_9-Ansible-Pipeline
|
|
|
|
|
|
environment:
|
|
ANSIBLE_IMAGE : "gitea.thezengarden.net/podman/ansible-dev/centos9:release"
|
|
ANSIBLE_INVENTORY : *ansible_inventory
|
|
ANSIBLE_PLAYBOOK : *ansible_playbook
|
|
|
|
|
|
trigger:
|
|
branch:
|
|
exclude:
|
|
- main
|
|
event: [push]
|
|
|
|
steps:
|
|
- name: "ansible_environment_verify"
|
|
image: gitea.thezengarden.net/podman/ansible-dev/centos9:release
|
|
commands:
|
|
- echo $ANSIBLE_IMAGE
|
|
- echo $ANSIBLE_INVENTORY
|
|
- echo $ANSIBLE_PLAYBOOK
|
|
|
|
|
|
- name: "ansible_environment_verify"
|
|
image: "${ANSIBLE_IMAGE}"
|
|
commands:
|
|
- echo $ANSIBLE_IMAGE
|
|
- echo $ANSIBLE_INVENTORY
|
|
- echo $ANSIBLE_PLAYBOOK
|
|
|