-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add a proper description to enable developers (#357)
add a proper description to enable developers Reviewed-by: Anton Sidelnikov Reviewed-by: SebastianGode
- Loading branch information
Showing
2 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -140,3 +140,33 @@ ok: [localhost] => { | |
"gw.nat_gateways": [] | ||
} | ||
``` | ||
|
||
## For Developers: additional steps | ||
|
||
Create a path where you place your development files e.g.: | ||
|
||
```bash | ||
mkdir -p ~/ansible/ansible_collections/opentelekomcloud/ | ||
``` | ||
|
||
Clone the development files into your path and rename it to cloud. | ||
|
||
```bash | ||
cd ~/ansible/ansible_collections/opentelekomcloud/ | ||
git clone [email protected]:opentelekomcloud/ansible-collection-cloud.git cloud | ||
``` | ||
|
||
Export the path variable and make it available for your system: | ||
|
||
```bash | ||
pwd | ||
> /path/to/your/ansible/ansible_collections/ | ||
export ANSIBLE_COLLECTIONS_PATHS=/path/to/your/ansible/ansible_collections/ | ||
``` | ||
|
||
Validate the entry of your development environment by running the following command. | ||
|
||
```bash | ||
source ~/youransiblevenv/bin/activate | ||
ansible-galaxy collection list | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
namespace: opentelekomcloud | ||
name: cloud | ||
version: 0.14.5 | ||
version: 0.14.6 | ||
readme: README.md | ||
authors: | ||
- Artem Goncharov <[email protected]> | ||
|