17 lines
569 B
YAML
17 lines
569 B
YAML
image: ansible/ansible-runner
|
|
|
|
before_script:
|
|
# from https://docs.gitlab.com/ee/ci/ssh_keys/
|
|
#- 'command -v ssh-agent >/dev/null || ( apt-get update -y && apt-get install openssh-client -y )'
|
|
- eval $(ssh-agent -s)
|
|
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
|
|
- mkdir -p /root/.ssh
|
|
- chmod 700 /root/.ssh
|
|
- echo "$SSH_KNOWN_HOSTS" >> /root/.ssh/known_hosts
|
|
- chmod 644 /root/.ssh/known_hosts
|
|
|
|
deploy:
|
|
script:
|
|
- ansible-galaxy collection install ansible.netcommon
|
|
- pip3 install netaddr
|
|
- ansible-playbook -i config/hosts config/deploy.yml
|