ansible-fhc v1.0.1
#FHC Ansible Module Node.js Ansible module to enable calls the the fh-fhc npm module. When Ansible calls this script it is first exported to a temp script. The script is then called from a temp directory created by Ansible. For this reason, we must install this module in $HOME/.ansible/node_modules
Module is limited to supporting a subset of FHC commands currently
- target
- login
- admin.mbaas.create
- admin.environments.create
- admin.teams.create
- admin.teams.update
- project create
- app get details
- app get git url
- admin-users create
When calls are made to FHC e.g. to create a user, a check is performed to determine if this is a change or not. In the case of user creation the module first checks to see if the user exists. If the user exists the following is returned: {"changed": false, "guid": "k4jkkehihwozzd4ravd7uj6e"}
If the user does not exist the following is returned:
{"changed": true, "guid": "k4jkkehihwozzd4ravd7uj6e"}
Ansible will then use this information to report if the calls made changes or not.
##Arguments Ansible passed arguments as the contents of a text file in the format: "action=createProject projectName=projectNameproject2" Calling init.getArgs will read the contents of the filename passed by Ansible when the script is invoked (process.argv2) and process into an array of key value pairs.
##Usage
###Via ansible playbook Create a file e.g. fhc.js and store in /library
#!/usr/local/bin/node
fs = require('fs');
var ansiblefhc = require('ansible-fhc');
// get arguments passed in by file
ansiblefhc.init.getArgs(function(err, args){
var action;
if (err){
finish({err: err});
} else {
// load the fhc module.
ansiblefhc.init.fhLoad(function(err, success){
if (err ){
finish({err: err});
} else {
action = args.action;
// perform the action (first argument passed)
ansiblefhc.process(action, args, finish);
}
});
}
});
function finish(err, response ){
if (err){
console.log(err)
} else {
if (!response.changed){
response.changed = false;
}
try {
var stringOutput = JSON.stringify(response)
console.log(stringOutput);
}
catch(err){
console.log(err);
}
}
}Create file e.g. roles/rhmap/tasks/main.yml
---
- name: Set RH MAP Target
fhc:
action: target
target: "{{ rhmap.domain }}"
- name: Login to RH MAP
fhc:
action: login
username: "{{ rhmap.username }}"
password: "{{ rhmap.password }}"
- name: Create MBaaS Target
fhc:
action: createMBaaSTarget
engagementName: "{{ engagement_name }}"
fhMbaasHost: https://"{{ engagement_name }}"-"{{ item.name }}"."{{ openshift.hostname }}"
url: https://"{{ openshift.hostname }}":"{{ openshift.port }}"
openshiftUsername: "{{ openshift.username }}"
openshiftPassword: "{{ openshift.password }}"
routerDNSUrl: "{{ openshift.wildcard_dns }}"
environment: "{{ item.name }}"
with_items:
"{{ environments }}"
- name: Create Environment
fhc:
action: createEnvironment
engagementName: "{{ engagement_name }}"
environment: "{{ item.name }}"
with_items:
"{{ environments }}"
- name: Create RH MAP Project
fhc:
action: createProject
projectName: "{{ item.name }}"
register: project_details
with_items:
"{{ projects }}"
- name: Create teams
fhc:
action: createTeam
engagementName: "{{ engagement_name }}"
type: "{{ item.type }}"
name: "{{ item.name }}"
with_items:
"{{ teams }}"
- name: Create RHMAP Users
fhc:
action: createUser
username: "{{ item.username }}"
email: "{{ item.email }}"
register: user_details
with_items:
"{{ rhmap.users }}"
- name: Add RHMAP Users to Teams
fhc:
action: addUserToTeam
engagementName: "{{ engagement_name }}"
username: "{{ item.username }}"
teamName: "{{ item.team }}"
with_items:
"{{ rhmap.users }}"
- name: Add Projects to Teams
fhc:
action: updateTeam
updateType: project
engagementName: "{{ engagement_name }}"
newValue: "{{ item[0].name }}"
teamName: "{{ item[1].name }}"
with_nested:
- "{{ projects }}"
- "{{ teams }}"
- name: Add MBaaS Targets to Teams
fhc:
action: updateTeam
updateType: mbaas
engagementName: "{{ engagement_name }}"
newValue: "{{ item[0].name }}"
teamName: "{{ item[1].name }}"
isLive: "{{ item[0].is_live }}"
teamType: "{{ item[1].type }}"
with_nested:
- "{{ environments }}"
- "{{ teams }}"
- name: Add Environments to Teams
fhc:
action: updateTeam
updateType: environment
engagementName: "{{ engagement_name }}"
newValue: "{{ item[0].name }}"
teamName: "{{ item[1].name }}"
isLive: "{{ item[0].is_live }}"
teamType: "{{ item[1].type }}"
with_nested:
- "{{ environments }}"
- "{{ teams }}"Run command: ansible-playbook deployMbaaS.yml
##Tests npm test
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago