diff options
author | Andrew Butcher <abutcher@redhat.com> | 2017-12-18 14:13:38 -0500 |
---|---|---|
committer | Andrew Butcher <abutcher@redhat.com> | 2017-12-18 14:24:40 -0500 |
commit | c3945d39c9264dfa6f393701122d009c7ef2f2a8 (patch) | |
tree | 0413d80cea916ab67214dcdadf941b303de7e742 /roles/openshift_aws/defaults | |
parent | b713000887c5ef1d84d376038aacd0c6966d1692 (diff) | |
download | openshift-c3945d39c9264dfa6f393701122d009c7ef2f2a8.tar.gz openshift-c3945d39c9264dfa6f393701122d009c7ef2f2a8.tar.bz2 openshift-c3945d39c9264dfa6f393701122d009c7ef2f2a8.tar.xz openshift-c3945d39c9264dfa6f393701122d009c7ef2f2a8.zip |
Move node group tags to openshift_aws_{master,node}_group.
Diffstat (limited to 'roles/openshift_aws/defaults')
-rw-r--r-- | roles/openshift_aws/defaults/main.yml | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/roles/openshift_aws/defaults/main.yml b/roles/openshift_aws/defaults/main.yml index 74e5d1dde..71de24339 100644 --- a/roles/openshift_aws/defaults/main.yml +++ b/roles/openshift_aws/defaults/main.yml @@ -122,12 +122,25 @@ openshift_aws_ami_map: openshift_aws_master_group: - name: "{{ openshift_aws_clusterid }} master group" group: master + tags: + host-type: master + sub-host-type: default + runtime: docker openshift_aws_node_groups: - name: "{{ openshift_aws_clusterid }} compute group" group: compute + tags: + host-type: node + sub-host-type: compute + runtime: docker + - name: "{{ openshift_aws_clusterid }} infra group" group: infra + tags: + host-type: node + sub-host-type: infra + runtime: docker openshift_aws_created_asgs: [] openshift_aws_current_asgs: [] @@ -144,10 +157,6 @@ openshift_aws_master_group_config: min_size: 3 max_size: 3 desired_size: 3 - tags: - host-type: master - sub-host-type: default - runtime: docker wait_for_instances: True termination_policy: "{{ openshift_aws_node_group_termination_policy }}" replace_all_instances: "{{ openshift_aws_node_group_replace_all_instances }}" @@ -167,10 +176,6 @@ openshift_aws_node_group_config: min_size: 3 max_size: 100 desired_size: 3 - tags: - host-type: node - sub-host-type: compute - runtime: docker termination_policy: "{{ openshift_aws_node_group_termination_policy }}" replace_all_instances: "{{ openshift_aws_node_group_replace_all_instances }}" iam_role: "{{ openshift_aws_iam_role_name }}" @@ -186,10 +191,6 @@ openshift_aws_node_group_config: min_size: 2 max_size: 20 desired_size: 2 - tags: - host-type: node - sub-host-type: infra - runtime: docker termination_policy: "{{ openshift_aws_node_group_termination_policy }}" replace_all_instances: "{{ openshift_aws_node_group_replace_all_instances }}" iam_role: "{{ openshift_aws_iam_role_name }}" |