setup ci
This commit is contained in:
parent
bf5b28933c
commit
6a092d33d7
4
.ansible-lint.yml
Normal file
4
.ansible-lint.yml
Normal file
@ -0,0 +1,4 @@
|
||||
---
|
||||
skip_list:
|
||||
- fqcn-builtins
|
||||
- experimental
|
16
.drone.yml
Normal file
16
.drone.yml
Normal file
@ -0,0 +1,16 @@
|
||||
----
|
||||
kind: pipeline
|
||||
name: default
|
||||
steps:
|
||||
- name: integration test
|
||||
image: python:3.9-buster
|
||||
environment:
|
||||
REMOTE_USER: molecule
|
||||
HCLOUD_TOKEN:
|
||||
from_secret: HCLOUD_TOKEN
|
||||
commands:
|
||||
- apt update && apt install -y pwgen
|
||||
- mkdir -p /root/.ansible/roles && ln -sr . /root/.ansible/roles/autonomic.netdata
|
||||
- export INSTANCE_UUID=$(pwgen 8 1)
|
||||
- pip install -r requirements.txt
|
||||
- molecule test
|
18
.envrc.sample
Normal file
18
.envrc.sample
Normal file
@ -0,0 +1,18 @@
|
||||
# Your username that you use for accounts on our machines.
|
||||
export REMOTE_USER=
|
||||
export ANSIBLE_USER=$REMOTE_USER
|
||||
|
||||
# The path to our pass credentials store
|
||||
export PASSWORD_STORE_DIR=
|
||||
|
||||
# The Hetzner Cloud API token for managing our instances
|
||||
# Uncomment the prod/test line below depending on what you're doing
|
||||
# export HCLOUD_TOKEN=$(pass show logins/hetzner/prod/api_key)
|
||||
# export HCLOUD_TOKEN=$(pass show logins/hetzner/test/api_key)
|
||||
export HCLOUD_TOKEN=$(pass show logins/hetzner/cicd/api_key)
|
||||
|
||||
# For molecule role testing
|
||||
export INSTANCE_UUID=$RANDOM
|
||||
|
||||
# So molecule will show credentials in the logs
|
||||
export MOLECULE_NO_LOG=False
|
16
.yamllint.yml
Executable file
16
.yamllint.yml
Executable file
@ -0,0 +1,16 @@
|
||||
---
|
||||
extends: default
|
||||
|
||||
yaml-files:
|
||||
- "*.yaml"
|
||||
- "*.yml"
|
||||
|
||||
ignore: |
|
||||
.venv
|
||||
.drone.yml
|
||||
|
||||
rules:
|
||||
line-length: disable
|
||||
braces:
|
||||
max-spaces-inside: 1
|
||||
level: error
|
@ -2,9 +2,10 @@
|
||||
dependencies: []
|
||||
|
||||
galaxy_info:
|
||||
role_name: netdata
|
||||
namespace: autonomic
|
||||
author: autonomic
|
||||
description: |
|
||||
Install and configure Netdata how we need it.
|
||||
description: Install and configure Netdata how we need it.
|
||||
company: Autonomic
|
||||
license: GPLv3
|
||||
min_ansible_version: 2.9
|
||||
|
@ -1,18 +1,23 @@
|
||||
---
|
||||
dependency:
|
||||
name: galaxy
|
||||
|
||||
driver:
|
||||
name: hetznercloud
|
||||
|
||||
platforms:
|
||||
- name: "autonomic.netdata-${INSTANCE_UUID}"
|
||||
server_type: "cx11"
|
||||
image: "debian-10"
|
||||
|
||||
provisioner:
|
||||
name: ansible
|
||||
|
||||
lint: |
|
||||
set -e
|
||||
yamllint -c ../../.yamllint.yml .
|
||||
ansible-lint -c ../../.ansible-lint.yml .
|
||||
yamllint -c .yamllint.yml .
|
||||
ansible-lint --exclude .drone.yml -c .ansible-lint.yml .
|
||||
|
||||
scenario:
|
||||
test_sequence:
|
||||
- lint
|
||||
|
4
requirements.txt
Normal file
4
requirements.txt
Normal file
@ -0,0 +1,4 @@
|
||||
ansible-lint==6.0.0
|
||||
ansible==5.4.0
|
||||
molecule-hetznercloud==1.3.0
|
||||
molecule==3.6.1
|
Reference in New Issue
Block a user