Created
October 14, 2016 16:42
-
-
Save priley86/359c045b6dccc42c30d2bb847d1633a7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"engagement": { | |
"architectures": [ | |
{ | |
"stages": [ | |
{ | |
"stage_name": "dev", | |
"display_name": "Dev Environment", | |
"domain": "http://dev.myapp.com", | |
"user_to_role": [ | |
{ | |
"user": { | |
"user_name": "Sid" | |
}, | |
"roles": [ | |
{ | |
"name": "admin" | |
} | |
] | |
}, | |
{ | |
"user": { | |
"user_name": "Cyril" | |
}, | |
"roles": [ | |
{ | |
"name": "admin" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"stage_name": "uat", | |
"domain": "http://uat.myapp.com", | |
"display_name": "UAT Environment", | |
"user_to_role": [ | |
{ | |
"user": { | |
"user_name": "Sid" | |
}, | |
"roles": [ | |
{ | |
"name": "admin" | |
} | |
] | |
}, | |
{ | |
"user": { | |
"user_name": "Cyril" | |
}, | |
"roles": [ | |
{ | |
"name": "view" | |
} | |
] | |
} | |
] | |
} | |
], | |
"projects": [ | |
{ | |
"name": "Project 1", | |
"apps": [ | |
{ | |
"name": "UI", | |
"scm_url": "https://github.com/acme/UI.git", | |
"base_image": "openshift/httpd:latest" | |
}, | |
{ | |
"name": "REST-API", | |
"scm_url": "https://github.com/acme/REST_API.git", | |
"base_image": "openshift/spring-cloud:latest" | |
}, | |
{ | |
"name": "Decision-Server", | |
"scm_url": "https://github.com/acme/Decision-Server.git", | |
"base_image": "openshift/brms:latest" | |
}, | |
{ | |
"name": "DB", | |
"base_image": "openshift/postgresql:9.4" | |
} | |
] | |
} | |
] | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment