Merge "Add the description of the output parameters to the Mesos"

This commit is contained in:
Jenkins
2015-11-15 02:25:21 +00:00
committed by Gerrit Code Review
2 changed files with 12 additions and 1 deletions
+8 -1
View File
@@ -252,9 +252,14 @@ outputs:
api_address:
value: {get_attr: [mesos_master_floating, floating_ip_address]}
description: >
This is the API endpoint of the Mesos master. Use this to access
the Mesos API from outside the cluster.
mesos_master_private:
value: {get_attr: [mesos_master_eth0, fixed_ips, 0, ip_address]}
description: >
This is a list of the "private" addresses of all the Mesos masters.
mesos_master:
value: {get_attr: [mesos_master_floating, floating_ip_address]}
@@ -265,8 +270,10 @@ outputs:
mesos_slaves_private:
value: {get_attr: [mesos_slaves, mesos_slave_ip]}
description: >
This is a list of the "private" addresses of all the Mesos agents.
mesos_slaves:
value: {get_attr: [mesos_slaves, mesos_slave_external_ip]}
description: >
This is a list of the addresses of all the Mesos slaves.
This is a list of the "public" addresses of all the Mesos agents.
+4
View File
@@ -156,5 +156,9 @@ outputs:
mesos_slave_ip:
value: {get_attr: [mesos_slave_eth0, fixed_ips, 0, ip_address]}
description: >
This is the "private" address of the Mesos agent node.
mesos_slave_external_ip:
value: {get_attr: [mesos_slave_floating, floating_ip_address]}
description: >
This is the "public" address of the Mesos agent node.