Skip to content

Commit 8f187a9

Browse files
committed
Initial commit
0 parents  commit 8f187a9

31 files changed

+713
-0
lines changed

.ansible-lint

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
warn_list:
3+
- '106'
4+
exclude_paths:
5+
- .github/
6+
- .cache/
7+
- molecule/default
8+
offline: false
9+
use_default_rules: true
10+
parseable: true
11+
verbosity: 1

.github/CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @Appsilon/infrastructure-team

.github/release-drafter.yml

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name-template: 'v$RESOLVED_VERSION'
2+
tag-template: 'v$RESOLVED_VERSION'
3+
categories:
4+
- title: 'Feature'
5+
labels:
6+
- 'feature'
7+
- 'enhancement'
8+
- 'breaking'
9+
- title: 'Bug Fix'
10+
labels:
11+
- 'fix'
12+
- 'bugfix'
13+
- 'bug'
14+
- title: 'Maintenance Update'
15+
labels:
16+
- 'chore'
17+
- 'maintenance'
18+
- title: 'Dependency Upgrade'
19+
labels:
20+
- 'chore'
21+
- 'maintenance'
22+
exclude-labels:
23+
- skip-changelog
24+
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
25+
change-title-escapes: '\<*_&'
26+
version-resolver:
27+
major:
28+
labels:
29+
- 'major'
30+
- 'breaking'
31+
minor:
32+
labels:
33+
- 'minor'
34+
- 'enhancement'
35+
- 'feature'
36+
patch:
37+
labels:
38+
- 'patch'
39+
- 'maintenance'
40+
- 'dependency'
41+
- 'bug'
42+
default: patch
43+
template: |
44+
## Changes
45+
46+
$CHANGES

.github/workflows/ci.yml

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
---
2+
name: CI
3+
'on':
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
schedule:
9+
- cron: '30 1 * * 3'
10+
11+
jobs:
12+
13+
lint:
14+
name: Lint
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Check out the codebase
18+
uses: actions/checkout@v3
19+
20+
- name: Set up Python 3
21+
uses: actions/setup-python@v3
22+
with:
23+
python-version: '3.x'
24+
25+
- name: Install test dependencies
26+
run: pip install ansible-lint[community,yamllint]
27+
28+
- name: Lint code
29+
run: |
30+
yamllint .
31+
ansible-lint
32+
33+
molecule:
34+
name: Molecule
35+
runs-on: ubuntu-latest
36+
defaults:
37+
run:
38+
working-directory: "${{ github.repository }}"
39+
needs:
40+
- lint
41+
strategy:
42+
fail-fast: false
43+
matrix:
44+
include:
45+
- distro: ubuntu2004
46+
ansible-version: '>=2.11.5'
47+
48+
steps:
49+
- name: Check out the codebase
50+
uses: actions/checkout@v3
51+
with:
52+
path: "${{ github.repository }}"
53+
54+
- name: Set up Python 3
55+
uses: actions/setup-python@v3
56+
with:
57+
python-version: '3.x'
58+
59+
- name: Install test dependencies
60+
run: pip install 'ansible${{ matrix.ansible-version }}' molecule[docker] docker
61+
62+
- name: Run Molecule tests
63+
run: |
64+
molecule test
65+
env:
66+
ANSIBLE_FORCE_COLOR: '1'
67+
ANSIBLE_VERBOSITY: '2'
68+
MOLECULE_DEBUG: '1'
69+
MOLECULE_DISTRO: "${{ matrix.distro }}"
70+
PY_COLORS: '1'

.github/workflows/draft_release.yaml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: Draft a Release
3+
'on':
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
10+
draft_release:
11+
name: Draft a Release
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: release-drafter/release-drafter@v5
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Release
3+
'on':
4+
push:
5+
tags:
6+
- '*'
7+
workflow_dispatch:
8+
9+
jobs:
10+
11+
release:
12+
name: Release
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Check out the codebase
16+
uses: actions/checkout@v3
17+
18+
- name: Publish to Galaxy
19+
uses: robertdebock/[email protected]
20+
with:
21+
galaxy_api_key: ${{ secrets.ANSIBLE_GALAXY_TOKEN }}
22+
git_branch: main

.github/workflows/todo.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
name: TODO to GitHub Issue
3+
'on':
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
10+
todo:
11+
name: TODO to GitHub Issue
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Check out the codebase
15+
uses: actions/checkout@v3
16+
17+
- name: Raise GitHub issues for TODOs found
18+
uses: alstr/[email protected]
19+
with:
20+
TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
AUTO_ASSIGN: true

.gitignore

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
.DS_Store
2+
*/**.DS_Store
3+
._*
4+
.*.sw*
5+
*~
6+
.idea/
7+
.vscode/
8+
*.retry
9+
10+
__pycache__/
11+
*.py[cod]
12+
*$py.class
13+
htmlcov/
14+
.tox/
15+
.nox/
16+
.coverage
17+
.coverage.*
18+
.cache
19+
nosetests.xml
20+
coverage.xml
21+
*.cover
22+
.hypothesis/
23+
.pytest_cache/
24+
*venv

.markdownlintrc

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"default": true,
3+
"first-header-h1": false,
4+
"first-line-h1": false,
5+
"line_length": false,
6+
"no-multiple-blanks": false,
7+
"fenced-code-language": true,
8+
"no-duplicate-header": {
9+
"siblings_only": true
10+
},
11+
"code-block-style": {
12+
"style": "fenced"
13+
},
14+
"single-trailing-newline": false,
15+
"MD033": {
16+
"allowed_elements": ["a", "pre", "br"]
17+
}
18+
}

.pre-commit-config.yaml

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
repos:
3+
- repo: https://github.com/pre-commit/pre-commit-hooks
4+
rev: v4.1.0
5+
hooks:
6+
- id: fix-byte-order-marker
7+
- id: check-executables-have-shebangs
8+
- id: check-merge-conflict
9+
- id: check-yaml
10+
- id: detect-private-key
11+
- id: end-of-file-fixer
12+
- id: mixed-line-ending
13+
- id: trailing-whitespace
14+
args: [--markdown-linebreak-ext=md]
15+
16+
- repo: https://github.com/jorisroovers/gitlint
17+
rev: v0.17.0
18+
hooks:
19+
- id: gitlint
20+
args: [--contrib=contrib-title-conventional-commits, --ignore=body-is-missing, --msg-filename]
21+
22+
- repo: https://github.com/igorshubovych/markdownlint-cli
23+
rev: v0.31.1
24+
hooks:
25+
- id: markdownlint
26+
exclude: .github/ISSUE_TEMPLATE
27+
28+
- repo: https://github.com/detailyang/pre-commit-shell
29+
rev: v1.0.6
30+
hooks:
31+
- id: shell-lint
32+
33+
- repo: https://github.com/ansible-community/ansible-lint
34+
rev: v6.0.0
35+
hooks:
36+
- id: ansible-lint
37+
38+
- repo: https://github.com/adrienverge/yamllint
39+
rev: v1.26.3
40+
hooks:
41+
- id: yamllint
42+
name: yamllint
43+
description: This hook runs yamllint.
44+
entry: yamllint
45+
language: python
46+
types: [file, yaml]
47+
48+
- repo: https://github.com/robertdebock/pre-commit
49+
rev: v1.4.5
50+
hooks:
51+
- id: ansible_role_find_unused_variable
52+
- id: ansible_role_find_empty_directories
53+
- id: ansible_role_fix_readability
54+
- id: ansible_role_find_undefined_handlers

.whitesource

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"scanSettings": {
3+
"baseBranches": []
4+
},
5+
"checkRunSettings": {
6+
"vulnerableCheckRunConclusionLevel": "failure",
7+
"displayMode": "diff"
8+
},
9+
"issueSettings": {
10+
"minSeverityLevel": "LOW",
11+
"issueType": "DEPENDENCY"
12+
}
13+
}

.yamllint

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
# Based on ansible-lint config
3+
4+
extends: default
5+
6+
rules:
7+
braces:
8+
max-spaces-inside: 1
9+
level: error
10+
brackets:
11+
max-spaces-inside: 1
12+
level: error
13+
colons:
14+
max-spaces-after: -1
15+
level: error
16+
commas:
17+
max-spaces-after: -1
18+
level: error
19+
comments: disable
20+
comments-indentation: disable
21+
document-start: disable
22+
empty-lines:
23+
max: 3
24+
level: error
25+
hyphens:
26+
level: error
27+
indentation: disable
28+
key-duplicates: enable
29+
line-length: disable
30+
new-line-at-end-of-file: disable
31+
new-lines:
32+
type: unix
33+
trailing-spaces: disable
34+
truthy: disable
35+
36+
ignore: |
37+
.tox/
38+
venv

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 Appsilon
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)