migrate dependencies to collections
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2020-08-19 18:38:59 +02:00
parent 58455acf7c
commit 68d3e6eb97
Signed by: xoxys
GPG Key ID: 65362AE74AF98B61
6 changed files with 29 additions and 22 deletions

View File

@ -39,11 +39,9 @@ local PipelineDeployment(scenario='centos7') = {
image: 'xoxys/molecule:3', image: 'xoxys/molecule:3',
environment: { environment: {
DO_API_KEY: { from_secret: 'do_api_key' }, DO_API_KEY: { from_secret: 'do_api_key' },
MOLECULE_CUSTOM_MODULES_REPO: 'https://gitea.rknet.org/ansible/custom_modules',
MOLECULE_CUSTOM_FILTERS_REPO: 'https://gitea.rknet.org/ansible/custom_filters',
}, },
commands: [ commands: [
'molecule test -s' + scenario, 'molecule test -s ' + scenario,
], ],
}, },
], ],

View File

@ -37,12 +37,10 @@ steps:
- name: ansible-molecule - name: ansible-molecule
image: xoxys/molecule:3 image: xoxys/molecule:3
commands: commands:
- molecule test -scentos7 - molecule test -s centos7
environment: environment:
DO_API_KEY: DO_API_KEY:
from_secret: do_api_key from_secret: do_api_key
MOLECULE_CUSTOM_FILTERS_REPO: https://gitea.rknet.org/ansible/custom_filters
MOLECULE_CUSTOM_MODULES_REPO: https://gitea.rknet.org/ansible/custom_modules
trigger: trigger:
ref: ref:
@ -146,6 +144,6 @@ depends_on:
--- ---
kind: signature kind: signature
hmac: 5a7311f090669d6f0a40c3f5ada513d6a0b9610e395e92b7ac40ee461453be9d hmac: 49f7392472cf10ac08ba9223bcd1bb103975adf118281959a6dd02a229ba00a4
... ...

View File

@ -3,9 +3,10 @@ ansible:
custom_modules: custom_modules:
- iptables_raw - iptables_raw
- openssl_pkcs12 - openssl_pkcs12
- proxmox_kvm2 - proxmox_kvm
- ucr - ucr
- yum_versionlock - corenetworks_dns
- corenetworks_token
rules: rules:
exclude_files: exclude_files:
@ -13,6 +14,6 @@ rules:
- "LICENSE*" - "LICENSE*"
- "**/*.md" - "**/*.md"
- "**/*.ini" - "**/*.ini"
exclude_filter: exclude_filter:
- LINT0009 - LINT0009

View File

@ -1,18 +1,18 @@
# Standards: 0.1 # Standards: 0.1
--- ---
galaxy_info: galaxy_info:
# @meta author:value: [Robert Kaussow](https://gitea.rknet.org/xoxys) # @meta author:value: [Robert Kaussow](https://gitea.rknet.org/xoxys)
author: Robert Kaussow <mail@geeklabor.de> author: Robert Kaussow <mail@geeklabor.de>
# @meta description: > # @meta description: >
# [![Source Code](https://img.shields.io/badge/gitea-source%20code-blue?logo=gitea&logoColor=white)](https://gitea.rknet.org/ansible/xoxys.nginx) # [![Source Code](https://img.shields.io/badge/gitea-source%20code-blue?logo=gitea&logoColor=white)](https://gitea.rknet.org/ansible/xoxys.nginx)
# [![Build Status](https://img.shields.io/drone/build/ansible/xoxys.nginx?logo=drone&server=https%3A%2F%2Fdrone.rknet.org)](https://drone.rknet.org/ansible/xoxys.nginx) # [![Build Status](https://img.shields.io/drone/build/ansible/xoxys.nginx?logo=drone&server=https%3A%2F%2Fdrone.rknet.org)](https://drone.rknet.org/ansible/xoxys.nginx)
# [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://gitea.rknet.org/ansible/xoxys.nginx/src/branch/master/LICENSE) # [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://gitea.rknet.org/ansible/xoxys.nginx/src/branch/master/LICENSE)
# #
# Setup [nginx](https://www.nginx.com/) webserver. Nginx is an open source reverse proxy server # Setup [nginx](https://www.nginx.com/) webserver. Nginx is an open source reverse proxy server
# for HTTP, HTTPS, SMTP, POP3, and IMAP protocols, as well as a load balancer, HTTP cache, and a # for HTTP, HTTPS, SMTP, POP3, and IMAP protocols, as well as a load balancer, HTTP cache, and a
# web server. The nginx project started with a strong focus on high concurrency, high performance # web server. The nginx project started with a strong focus on high concurrency, high performance
# and low memory usage. # and low memory usage.
# @end # @end
description: Setup nginx webserver description: Setup nginx webserver
license: MIT license: MIT
min_ansible_version: 2.8 min_ansible_version: 2.8
@ -25,3 +25,5 @@ galaxy_info:
- webserver - webserver
- proxy - proxy
dependencies: [] dependencies: []
collections:
- community.general

View File

@ -1,6 +1,9 @@
--- ---
dependency: dependency:
name: galaxy name: galaxy
options:
role-file: molecule/requirements.yml
requirements-file: molecule/requirements.yml
driver: driver:
name: delegated name: delegated
platforms: platforms:
@ -9,7 +12,7 @@ platforms:
image_id: centos-7-x64 image_id: centos-7-x64
size_id: s-1vcpu-1gb size_id: s-1vcpu-1gb
lint: | lint: |
flake8 /usr/local/bin/flake8
provisioner: provisioner:
name: ansible name: ansible
env: env:

View File

@ -0,0 +1,5 @@
---
collections:
- name: https://gitea.rknet.org/ansible/xoxys.general/releases/download/v1.1.0/xoxys-general-1.1.0.tar.gz
- name: community.general