feat(core): change namespace
All checks were successful
test / Linting (push) Successful in 7s
test / Molecule tests (default, debian11) (push) Successful in 1m10s
test / Molecule tests (default, debian12) (push) Successful in 1m14s
test / Molecule tests (default, ubuntu2004) (push) Successful in 1m18s
test / Molecule tests (default, ubuntu2204) (push) Successful in 1m17s
test / Molecule tests (with_custom_config, debian11) (push) Successful in 1m11s
test / Molecule tests (with_custom_config, debian12) (push) Successful in 1m8s
test / Molecule tests (with_custom_config, ubuntu2204) (push) Successful in 1m17s
test / Molecule tests (with_custom_config, ubuntu2004) (push) Successful in 1m21s
All checks were successful
test / Linting (push) Successful in 7s
test / Molecule tests (default, debian11) (push) Successful in 1m10s
test / Molecule tests (default, debian12) (push) Successful in 1m14s
test / Molecule tests (default, ubuntu2004) (push) Successful in 1m18s
test / Molecule tests (default, ubuntu2204) (push) Successful in 1m17s
test / Molecule tests (with_custom_config, debian11) (push) Successful in 1m11s
test / Molecule tests (with_custom_config, debian12) (push) Successful in 1m8s
test / Molecule tests (with_custom_config, ubuntu2204) (push) Successful in 1m17s
test / Molecule tests (with_custom_config, ubuntu2004) (push) Successful in 1m21s
This commit is contained in:
parent
38717dcd80
commit
bd9474428f
4
.github/workflows/publish.yml
vendored
4
.github/workflows/publish.yml
vendored
@ -13,6 +13,8 @@ jobs:
|
|||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Publish
|
- name: Publish
|
||||||
uses: ednxzu/galaxy-import-role@v1
|
uses: ednxzu/galaxy-import-role@v2
|
||||||
with:
|
with:
|
||||||
galaxy-api-key: ${{ secrets.GALAXY_API_TOKEN }}
|
galaxy-api-key: ${{ secrets.GALAXY_API_TOKEN }}
|
||||||
|
repository-owner: ednxzu
|
||||||
|
repository-name: renew_nomad_certificates
|
||||||
|
@ -92,8 +92,8 @@ This variable defines whether or not to start the service after creating it. By
|
|||||||
Dependencies
|
Dependencies
|
||||||
------------
|
------------
|
||||||
|
|
||||||
`ednxzu.manage_repositories` to configure hashicorp apt repository.
|
`ednz_cloud.manage_repositories` to configure hashicorp apt repository.
|
||||||
`ednxzu.manage_apt_packages` to install consul-template.
|
`ednz_cloud.manage_apt_packages` to install consul-template.
|
||||||
|
|
||||||
Example Playbook
|
Example Playbook
|
||||||
----------------
|
----------------
|
||||||
@ -103,7 +103,7 @@ Including an example of how to use your role (for instance, with variables passe
|
|||||||
# calling the role inside a playbook with either the default or group_vars/host_vars
|
# calling the role inside a playbook with either the default or group_vars/host_vars
|
||||||
- hosts: servers
|
- hosts: servers
|
||||||
roles:
|
roles:
|
||||||
- ednxzu.renew_nomad_certificates
|
- ednz_cloud.renew_nomad_certificates
|
||||||
```
|
```
|
||||||
|
|
||||||
License
|
License
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
---
|
---
|
||||||
# meta file for renew_nomad_certificates
|
# meta file for renew_nomad_certificates
|
||||||
galaxy_info:
|
galaxy_info:
|
||||||
namespace: 'ednxzu'
|
namespace: "ednz_cloud"
|
||||||
role_name: 'renew_nomad_certificates'
|
role_name: "renew_nomad_certificates"
|
||||||
author: 'Bertrand Lanson'
|
author: "Bertrand Lanson"
|
||||||
description: 'Install and configure consul-template to renew nomad TLS certificates for debian-based distros.'
|
description: "Install and configure consul-template to renew nomad TLS certificates for debian-based distros."
|
||||||
license: 'license (BSD, MIT)'
|
license: "license (BSD, MIT)"
|
||||||
min_ansible_version: '2.10'
|
min_ansible_version: "2.10"
|
||||||
platforms:
|
platforms:
|
||||||
- name: Ubuntu
|
- name: Ubuntu
|
||||||
versions:
|
versions:
|
||||||
@ -17,9 +17,9 @@ galaxy_info:
|
|||||||
- bullseye
|
- bullseye
|
||||||
- bookworm
|
- bookworm
|
||||||
galaxy_tags:
|
galaxy_tags:
|
||||||
- 'ubuntu'
|
- "ubuntu"
|
||||||
- 'debian'
|
- "debian"
|
||||||
- 'hashicorp'
|
- "hashicorp"
|
||||||
- 'nomad'
|
- "nomad"
|
||||||
|
|
||||||
dependencies: []
|
dependencies: []
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
hosts: all
|
hosts: all
|
||||||
become: true
|
become: true
|
||||||
tasks:
|
tasks:
|
||||||
- name: "Include ednxzu.renew_nomad_certificates"
|
- name: "Include ednz_cloud.renew_nomad_certificates"
|
||||||
ansible.builtin.include_role:
|
ansible.builtin.include_role:
|
||||||
name: "ednxzu.renew_nomad_certificates"
|
name: "ednz_cloud.renew_nomad_certificates"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
# requirements file for molecule
|
# requirements file for molecule
|
||||||
roles:
|
roles:
|
||||||
- name: ednxzu.manage_repositories
|
- name: ednz_cloud.manage_repositories
|
||||||
- name: ednxzu.manage_apt_packages
|
- name: ednz_cloud.manage_apt_packages
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
hosts: all
|
hosts: all
|
||||||
become: true
|
become: true
|
||||||
tasks:
|
tasks:
|
||||||
- name: "Include ednxzu.renew_nomad_certificates"
|
- name: "Include ednz_cloud.renew_nomad_certificates"
|
||||||
ansible.builtin.include_role:
|
ansible.builtin.include_role:
|
||||||
name: "ednxzu.renew_nomad_certificates"
|
name: "ednz_cloud.renew_nomad_certificates"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
# requirements file for molecule
|
# requirements file for molecule
|
||||||
roles:
|
roles:
|
||||||
- name: ednxzu.manage_repositories
|
- name: ednz_cloud.manage_repositories
|
||||||
- name: ednxzu.manage_apt_packages
|
- name: ednz_cloud.manage_apt_packages
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
hosts: all
|
hosts: all
|
||||||
become: true
|
become: true
|
||||||
tasks:
|
tasks:
|
||||||
- name: "Include ednxzu.renew_nomad_certificates"
|
- name: "Include ednz_cloud.renew_nomad_certificates"
|
||||||
ansible.builtin.include_role:
|
ansible.builtin.include_role:
|
||||||
name: "ednxzu.renew_nomad_certificates"
|
name: "ednz_cloud.renew_nomad_certificates"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
# requirements file for molecule
|
# requirements file for molecule
|
||||||
roles:
|
roles:
|
||||||
- name: ednxzu.manage_repositories
|
- name: ednz_cloud.manage_repositories
|
||||||
- name: ednxzu.manage_apt_packages
|
- name: ednz_cloud.manage_apt_packages
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
hosts: all
|
hosts: all
|
||||||
become: true
|
become: true
|
||||||
tasks:
|
tasks:
|
||||||
- name: "Include ednxzu.renew_nomad_certificates"
|
- name: "Include ednz_cloud.renew_nomad_certificates"
|
||||||
ansible.builtin.include_role:
|
ansible.builtin.include_role:
|
||||||
name: "ednxzu.renew_nomad_certificates"
|
name: "ednz_cloud.renew_nomad_certificates"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
# requirements file for molecule
|
# requirements file for molecule
|
||||||
roles:
|
roles:
|
||||||
- name: ednxzu.manage_repositories
|
- name: ednz_cloud.manage_repositories
|
||||||
- name: ednxzu.manage_apt_packages
|
- name: ednz_cloud.manage_apt_packages
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
# task/install file for renew_nomad_certificates
|
# task/install file for renew_nomad_certificates
|
||||||
- name: "Configure hashicorp repository"
|
- name: "Configure hashicorp repository"
|
||||||
ansible.builtin.include_role:
|
ansible.builtin.include_role:
|
||||||
name: ednxzu.manage_repositories
|
name: ednz_cloud.manage_repositories
|
||||||
vars:
|
vars:
|
||||||
manage_repositories_enable_default_repo: false
|
manage_repositories_enable_default_repo: false
|
||||||
manage_repositories_enable_custom_repo: true
|
manage_repositories_enable_custom_repo: true
|
||||||
@ -10,6 +10,6 @@
|
|||||||
|
|
||||||
- name: "Install nomad-template"
|
- name: "Install nomad-template"
|
||||||
ansible.builtin.include_role:
|
ansible.builtin.include_role:
|
||||||
name: ednxzu.manage_apt_packages
|
name: ednz_cloud.manage_apt_packages
|
||||||
vars:
|
vars:
|
||||||
manage_apt_packages_list: "{{ renew_nomad_certificates_packages }}"
|
manage_apt_packages_list: "{{ renew_nomad_certificates_packages }}"
|
||||||
|
Loading…
Reference in New Issue
Block a user