From aefcad2898f742958ee7258146cd3062e1d1baf3 Mon Sep 17 00:00:00 2001 From: Teodoro Cook Date: Sat, 4 May 2024 07:54:59 -0600 Subject: [PATCH] Move collection to nephelaiio organization (#3) --- .gitignore | 2 +- README.md | 12 ++++++------ galaxy.yml | 12 ++++++------ molecule/common/converge.yml | 2 +- molecule/common/update.yml | 2 +- playbooks/deploy.yml | 2 +- playbooks/install.yml | 4 ++-- playbooks/update.yml | 2 +- pyproject.toml | 2 +- requirements.yml | 2 +- 10 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.gitignore b/.gitignore index 2a02e5b..a29e877 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -pokerops-consul-*.tar.gz +nephelaiio-consul-*.tar.gz *.ymle diff --git a/README.md b/README.md index 7dfb9ec..d37c3ad 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -# Ansible Collection - pokerops.consul +# Ansible Collection - nephelaiio.consul -[![Build Status](https://github.com/pokerops/ansible-collection-consul/actions/workflows/molecule.yml/badge.svg)](https://github.com/pokerops/ansible-collection-consul/actions/wofklows/molecule.yml) -[![Ansible Galaxy](http://img.shields.io/badge/ansible--galaxy-pokerops.consul-blue.svg)](https://galaxy.ansible.com/ui/repo/published/pokerops/consul/) +[![Build Status](https://github.com/nephelaiio/ansible-collection-consul/actions/workflows/molecule.yml/badge.svg)](https://github.com/nephelaiio/ansible-collection-consul/actions/wofklows/molecule.yml) +[![Ansible Galaxy](http://img.shields.io/badge/ansible--galaxy-nephelaiio.consul-blue.svg)](https://galaxy.ansible.com/ui/repo/published/nephelaiio/consul/) -An [ansible collection](https://galaxy.ansible.com/ui/repo/published/pokerops/consul/) to install and manage [Consul](https://www.consul.io/) clusters +An [ansible collection](https://galaxy.ansible.com/ui/repo/published/nephelaiio/consul/) to install and manage [Consul](https://www.consul.io/) clusters ## Collection hostgroups @@ -31,8 +31,8 @@ Cluster wide parameters ## Collection playbooks -* pokerops.consul.install: Install and bootstrap cluster -* pokerops.consul.update: Install and bootstrap cluster +* nephelaiio.consul.install: Install and bootstrap cluster +* nephelaiio.consul.update: Install and bootstrap cluster ## Testing diff --git a/galaxy.yml b/galaxy.yml index 05be929..e0c0d22 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,7 +1,7 @@ --- -namespace: pokerops +namespace: nephelaiio name: consul -version: 0.0.3 +version: 0.0.4 readme: README.md authors: - Ted Cook <358176+teddyphreak@users.noreply.github.com> @@ -12,8 +12,8 @@ tags: - consul dependencies: "nephelaiio.plugins": "*" -repository: http://github.com/pokerops/ansible-collection-consul -documentation: http://github.com/pokerops/ansible-collection-consul -homepage: http://github.com/pokerops/ansible-collection-consul -issues: http://github.com/pokerops/ansible-collection-consul/issues +repository: http://github.com/nephelaiio/ansible-collection-consul +documentation: http://github.com/nephelaiio/ansible-collection-consul +homepage: http://github.com/nephelaiio/ansible-collection-consul +issues: http://github.com/nephelaiio/ansible-collection-consul/issues build_ignore: [] diff --git a/molecule/common/converge.yml b/molecule/common/converge.yml index ea7484b..4aad491 100644 --- a/molecule/common/converge.yml +++ b/molecule/common/converge.yml @@ -1,3 +1,3 @@ --- - name: Import install playbook - ansible.builtin.import_playbook: pokerops.consul.install + ansible.builtin.import_playbook: nephelaiio.consul.install diff --git a/molecule/common/update.yml b/molecule/common/update.yml index 7e89060..cc13787 100644 --- a/molecule/common/update.yml +++ b/molecule/common/update.yml @@ -1,3 +1,3 @@ --- - name: Import install playbook - ansible.builtin.import_playbook: pokerops.consul.update + ansible.builtin.import_playbook: nephelaiio.consul.update diff --git a/playbooks/deploy.yml b/playbooks/deploy.yml index dc17d3c..66012da 100644 --- a/playbooks/deploy.yml +++ b/playbooks/deploy.yml @@ -39,7 +39,7 @@ - name: Deploy Consul cluster ansible.builtin.include_role: - name: pokerops.consul.consul + name: nephelaiio.consul.consul vars: _install_from_repo: "{{ _consul_install_from_repo }}" _release_package: "{{ _consul_release_package }}" diff --git a/playbooks/install.yml b/playbooks/install.yml index d14bd95..a99122b 100644 --- a/playbooks/install.yml +++ b/playbooks/install.yml @@ -1,7 +1,7 @@ --- - name: Prepare stack nodes - ansible.builtin.import_playbook: pokerops.consul.prepare + ansible.builtin.import_playbook: nephelaiio.consul.prepare - name: Deploy proxy nodes - ansible.builtin.import_playbook: pokerops.consul.deploy + ansible.builtin.import_playbook: nephelaiio.consul.deploy diff --git a/playbooks/update.yml b/playbooks/update.yml index 5403bf5..ed66ff8 100644 --- a/playbooks/update.yml +++ b/playbooks/update.yml @@ -10,7 +10,7 @@ update_reboot: false update_cache_valid_time: 1 roles: - - pokerops.consul.update + - nephelaiio.consul.update tasks: - name: Stop Consul service ansible.builtin.service: diff --git a/pyproject.toml b/pyproject.toml index e3e4e5d..27cd113 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.poetry] -name = "pokerops-consul" +name = "nephelaiio-consul" version = "0.1.0" description = "" authors = ["Ted Cook "] diff --git a/requirements.yml b/requirements.yml index 5bd9785..78891e2 100644 --- a/requirements.yml +++ b/requirements.yml @@ -1,7 +1,7 @@ --- roles: [] collections: - - name: pokerops.consul + - name: nephelaiio.consul source: . type: dir - name: nephelaiio.plugins