Skip to content

Commit f49821f

Browse files
authored
add a proper description to enable developers (#357)
add a proper description to enable developers Reviewed-by: Anton Sidelnikov Reviewed-by: SebastianGode
1 parent b4aede3 commit f49821f

2 files changed

Lines changed: 31 additions & 1 deletion

File tree

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,3 +140,33 @@ ok: [localhost] => {
140140
"gw.nat_gateways": []
141141
}
142142
```
143+
144+
## For Developers: additional steps
145+
146+
Create a path where you place your development files e.g.:
147+
148+
```bash
149+
mkdir -p ~/ansible/ansible_collections/opentelekomcloud/
150+
```
151+
152+
Clone the development files into your path and rename it to cloud.
153+
154+
```bash
155+
cd ~/ansible/ansible_collections/opentelekomcloud/
156+
git clone git@github.com:opentelekomcloud/ansible-collection-cloud.git cloud
157+
```
158+
159+
Export the path variable and make it available for your system:
160+
161+
```bash
162+
pwd
163+
> /path/to/your/ansible/ansible_collections/
164+
export ANSIBLE_COLLECTIONS_PATHS=/path/to/your/ansible/ansible_collections/
165+
```
166+
167+
Validate the entry of your development environment by running the following command.
168+
169+
```bash
170+
source ~/youransiblevenv/bin/activate
171+
ansible-galaxy collection list
172+
```

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
namespace: opentelekomcloud
22
name: cloud
3-
version: 0.14.5
3+
version: 0.14.6
44
readme: README.md
55
authors:
66
- Artem Goncharov <artem.goncharov@gmail.com>

0 commit comments

Comments
 (0)