Last active
September 21, 2016 12:29
-
-
Save Hounddog/fc6ea66bdb9270d561b07498f4f9e134 to your computer and use it in GitHub Desktop.
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
[development] | |
10.160.143.3 | |
[production] | |
10.160.143.3 |
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
--- | |
- | |
hosts: development | |
roles: | |
- jenkins |
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
--- | |
- | |
hosts: production | |
roles: | |
- jenkins |
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
martin@martin-VirtualBox:~/Work/ansible$ tree . | |
. | |
├── group_vars | |
│ ├── all | |
│ │ └── jenkins.yml | |
│ ├── development | |
│ │ └── paths.yml | |
│ └── production | |
│ └── paths.yml | |
├── hosts | |
├── jenkins-development.yml | |
├── jenkins-production.yml | |
├── jenkins.yml | |
├── roles | |
│ └── jenkins | |
│ ├── tasks | |
│ │ └── main.yml | |
│ └── templates | |
└── vault_password |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment