Browse Source

Fix yaml indentation from use_openshift_sdn conditional

Andrew Butcher 9 years ago
parent
commit
bced0615a4
1 changed files with 2 additions and 2 deletions
  1. 2 2
      roles/openshift_master/templates/master.yaml.v1.j2

+ 2 - 2
roles/openshift_master/templates/master.yaml.v1.j2

@@ -87,9 +87,9 @@ masterPublicURL: {{ openshift.master.public_api_url }}
 networkConfig:
   clusterNetworkCIDR: {{ openshift.master.sdn_cluster_network_cidr }}
   hostSubnetLength: {{ openshift.master.sdn_host_subnet_length }}
-  {% if openshift.common.use_openshift_sdn %}
+{% if openshift.common.use_openshift_sdn %}
   networkPluginName: {{ openshift.common.sdn_network_plugin_name }}
-  {% endif %}
+{% endif %}
 # serviceNetworkCIDR must match kubernetesMasterConfig.servicesSubnet
   serviceNetworkCIDR: {{ openshift.master.portal_net }}
 {% include 'v1_partials/oauthConfig.j2' %}