Skip to content

Instantly share code, notes, and snippets.

@frippe75
Created December 14, 2018 21:24
Show Gist options
  • Save frippe75/bf2b72b578d97757ac238cdc1d7a6b14 to your computer and use it in GitHub Desktop.
Save frippe75/bf2b72b578d97757ac238cdc1d7a6b14 to your computer and use it in GitHub Desktop.
openstack stack template show openshift-cluster
conditions:
no_floating: false
description: OpenShift cluster
heat_template_version: pike
outputs:
etcd_floating_ips:
description: Floating IPs of the etcds
value:
get_attr:
- etcd
- floating_ip
etcd_ips:
description: IPs of the etcds
value:
get_attr:
- etcd
- private_ip
etcd_names:
description: Name of the etcds
value:
get_attr:
- etcd
- name
infra_floating_ips:
description: Floating IPs of the nodes
value:
get_attr:
- infra_nodes
- floating_ip
infra_ips:
description: IPs of the nodes
value:
get_attr:
- infra_nodes
- private_ip
infra_names:
description: Name of the nodes
value:
get_attr:
- infra_nodes
- name
master_floating_ips:
description: Floating IPs of the masters
value:
get_attr:
- masters
- floating_ip
master_ips:
description: IPs of the masters
value:
get_attr:
- masters
- private_ip
master_names:
description: Name of the masters
value:
get_attr:
- masters
- name
node_floating_ips:
description: Floating IPs of the nodes
value:
get_attr:
- compute_nodes
- floating_ip
node_ips:
description: IPs of the nodes
value:
get_attr:
- compute_nodes
- private_ip
node_names:
description: Name of the nodes
value:
get_attr:
- compute_nodes
- name
private_api_ip:
description: 'The address of the private OpenShift API. This is used during OpenShift
deployment and for API access by the internal pods and services.
'
value:
get_attr:
- masters
- resource.0
- private_ip
public_api_ip:
description: IP address for the API/UI endpoint
value:
get_attr:
- masters
- resource.0
- floating_ip
public_router_ip:
description: IP address of the apps/router endpoint
value:
get_attr:
- infra_nodes
- resource.0
- floating_ip
parameters: null
resources: {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment