diff options
author | Diego Castro <spinolacastro@gmail.com> | 2015-10-26 16:19:53 -0300 |
---|---|---|
committer | Diego Castro <spinolacastro@gmail.com> | 2015-10-26 16:19:53 -0300 |
commit | e87883d2be647edbcd564cefbf09a40120f1832d (patch) | |
tree | 224a4f60ff47818a3834d6f0a023cebb247159ee | |
parent | 2f55e2d69f8c9e28ccf73065ddc9db62a2aa4ad9 (diff) | |
download | openshift-e87883d2be647edbcd564cefbf09a40120f1832d.tar.gz openshift-e87883d2be647edbcd564cefbf09a40120f1832d.tar.bz2 openshift-e87883d2be647edbcd564cefbf09a40120f1832d.tar.xz openshift-e87883d2be647edbcd564cefbf09a40120f1832d.zip |
Fix quotes
-rw-r--r-- | roles/openshift_master/templates/master.yaml.v1.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_master/templates/master.yaml.v1.j2 b/roles/openshift_master/templates/master.yaml.v1.j2 index 011b43df6..90234bacc 100644 --- a/roles/openshift_master/templates/master.yaml.v1.j2 +++ b/roles/openshift_master/templates/master.yaml.v1.j2 @@ -103,7 +103,7 @@ projectConfig: projectRequestTemplate: "{{ openshift.master.project_request_template }}" securityAllocator: mcsAllocatorRange: "{{ openshift.master.mcs_allocator_range }}" - mcsLabelsPerProject: "{{ openshift.master.mcs_labels_per_project }}" + mcsLabelsPerProject: {{ openshift.master.mcs_labels_per_project }} uidAllocatorRange: "{{ openshift.master.uid_allocator_range }}" routingConfig: subdomain: "{{ openshift.master.default_subdomain | default("") }}" |