Skip to content

Commit 093fde3

Browse files
committed
Rename components for influxdata namespace
1 parent 7bf1191 commit 093fde3

File tree

18 files changed

+49
-25
lines changed

18 files changed

+49
-25
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
syndr-molecule-*.tar.gz
1+
influxdata-molecule-*.tar.gz

LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Vincent
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.
22+

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Ansible Collection - syndr.molecule
1+
# Ansible Collection - influxdata.molecule
22

3-
[![Molecule Test](https://github.com/syndr/ansible-collection-molecule/actions/workflows/main.yml/badge.svg)](https://github.com/syndr/ansible-collection-molecule/actions/workflows/main.yml)
3+
[![Molecule Test](https://github.com/influxdata/ansible-collection-molecule/actions/workflows/main.yml/badge.svg)](https://github.com/influxdata/ansible-collection-molecule/actions/workflows/main.yml)
44

55
This collection facilitates the creation and use of test environments using the Ansible [Molecule project](https://ansible.readthedocs.io/projects/molecule/).
66

@@ -138,7 +138,7 @@ collections_path = ./collections:/usr/share/ansible/collections:~/.ansible/colle
138138

139139
or this collection should be installed locally with:
140140
```bash
141-
ansible-galaxy collection install -p ./collections syndr.molecule
141+
ansible-galaxy collection install -p ./collections influxdata.molecule
142142
```
143143

144144
or if your `collections/requirements.yml` includes this collection:

galaxy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# The namespace of the collection. This can be a company/brand/organization or product namespace under which all
33
# content lives. May only contain alphanumeric lowercase characters and underscores. Namespaces cannot start with
44
# underscores or numbers and cannot contain consecutive underscores
5-
namespace: syndr
5+
namespace: influxdata
66

77
# The name of the collection. Has the same character restrictions as 'namespace'
88
name: molecule
@@ -47,7 +47,7 @@ tags:
4747
dependencies: {}
4848

4949
# The URL of the originating SCM repository
50-
repository: https://github.com/syndr/ansible-collection-molecule
50+
repository: https://github.com/influxdata/ansible-collection-molecule
5151

5252
# The URL to any online docs
5353
#documentation: http://docs.example.com
@@ -56,7 +56,7 @@ repository: https://github.com/syndr/ansible-collection-molecule
5656
#homepage: http://example.com
5757

5858
# The URL to the collection issue tracker
59-
issues: https://github.com/syndr/ansible-collection-molecule/issues
59+
#issues: https://github.com/influxdata/ansible-collection-molecule/issues
6060

6161
# A list of file glob-like patterns used to filter any files or directories that should not be included in the build
6262
# artifact. A pattern is matched from the relative path of the file or directory of the collection directory. This

molecule/default/collections.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
---
22

33
collections:
4-
- community.docker
5-
- syndr.molecule
4+
- name: community.docker
5+
- name: git+https://github.com/influxdata/ansible-collection-molecule.git
6+
type: git
7+
version: main
68

molecule/default/create.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
tasks:
66
- name: Create platform
77
ansible.builtin.include_role:
8-
name: syndr.molecule.docker_platform
8+
name: influxdata.molecule.docker_platform
99
vars:
1010
docker_platform_name: "{{ item.name }}"
1111
docker_platform_image: "{{ item.image }}"

molecule/default/destroy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
tasks:
77
- name: Remove platform
88
ansible.builtin.include_role:
9-
name: syndr.molecule.docker_platform
9+
name: influxdata.molecule.docker_platform
1010
vars:
1111
docker_platform_name: "{{ inventory_hostname }}"
1212
docker_platform_state: absent

molecule/default/init.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
tasks:
77
- name: Launch provisioner
88
ansible.builtin.include_role:
9-
name: syndr.molecule.init
9+
name: influxdata.molecule.init
1010

molecule/default/prepare.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
tasks:
66
- name: Configure for standalone role testing
77
ansible.builtin.include_role:
8-
name: syndr.molecule.prepare_controller
8+
name: influxdata.molecule.prepare_controller
99
vars:
1010
prepare_controller_project_type: collection
1111

roles/docker_platform/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Example Playbook
7373
tasks:
7474
- name: Create platform
7575
ansible.builtin.include_role:
76-
name: syndr.molecule.docker_platform
76+
name: influxdata.molecule.docker_platform
7777
vars:
7878
docker_platform_name: "{{ item.name }}"
7979
docker_platform_image: "{{ item.image }}"

roles/init/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
syndr.molecule.init
1+
influxdata.molecule.init
22
=========
33

44
Initialize the Molecule testing framework for a project.
@@ -165,7 +165,7 @@ Dependencies
165165
166166
**Collections**
167167
* community.docker
168-
* syndr.molecule
168+
* influxdata.molecule
169169
170170
Example Playbook
171171
----------------
@@ -179,7 +179,7 @@ Example Playbook
179179
tasks:
180180
- name: Launch provisioner
181181
ansible.builtin.include_role:
182-
name: syndr.molecule.init
182+
name: influxdata.molecule.init
183183
vars:
184184
init_project_type: auto
185185
init_platforms:

roles/init/files/create.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
tasks:
66
- name: Create platform
77
ansible.builtin.include_role:
8-
name: syndr.molecule.docker_platform
8+
name: influxdata.molecule.docker_platform
99
vars:
1010
docker_platform_name: "{{ item.name }}"
1111
docker_platform_image: "{{ item.image }}"

roles/init/files/destroy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
tasks:
77
- name: Remove platform
88
ansible.builtin.include_role:
9-
name: syndr.molecule.docker_platform
9+
name: influxdata.molecule.docker_platform
1010
vars:
1111
docker_platform_name: "{{ inventory_hostname }}"
1212
docker_platform_state: absent

roles/init/files/init.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
tasks:
77
- name: Launch provisioner
88
ansible.builtin.include_role:
9-
name: syndr.molecule.init
9+
name: influxdata.molecule.init
1010

roles/init/templates/collections.yml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
collections:
44
- community.docker
5-
- syndr.molecule
5+
- influxdata.molecule
66

roles/init/templates/create.yml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
tasks:
77
- name: Create platform
88
ansible.builtin.include_role:
9-
name: syndr.molecule.docker_platform
9+
name: influxdata.molecule.docker_platform
1010
vars:
1111
docker_platform_name: "{{ item.name }}"
1212
docker_platform_image: "{{ item.image }}"

roles/init/templates/prepare.yml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
tasks:
66
- name: Configure for standalone role testing
77
ansible.builtin.include_role:
8-
name: syndr.molecule.prepare_controller
8+
name: influxdata.molecule.prepare_controller
99
vars:
1010
prepare_controller_project_type: {{ init_project_type }}
1111

roles/prepare_controller/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
syndr.molecule.prepare_controller
1+
influxdata.molecule.prepare_controller
22
=========
33

44
Prepare a Molecule controller to run tests using local project repositories.
@@ -53,7 +53,7 @@ Example Playbook
5353
tasks:
5454
- name: Configure for standalone role testing
5555
ansible.builtin.include_role:
56-
name: syndr.molecule.prepare_controller
56+
name: influxdata.molecule.prepare_controller
5757
vars:
5858
prepare_controller_project_type: role
5959
```

0 commit comments

Comments
 (0)