Browse Source

fix arguments to controller

Hemant Kumar 6 years ago
parent
commit
88bfe9af27
1 changed files with 2 additions and 2 deletions
  1. 2 2
      roles/openshift_facts/library/openshift_facts.py

+ 2 - 2
roles/openshift_facts/library/openshift_facts.py

@@ -609,8 +609,8 @@ def build_controller_args(facts):
                                   'cloudprovider')
     if 'master' in facts:
         controller_args = {
-            'pv-recycler-pod-template-filepath-nfs': '/etc/origin/master/recycler_pod.yaml',
-            'pv-recycler-pod-template-filepath-hostpath': '/etc/origin/master/recycler_pod.yaml'
+            'pv-recycler-pod-template-filepath-nfs': ['/etc/origin/master/recycler_pod.yaml'],
+            'pv-recycler-pod-template-filepath-hostpath': ['/etc/origin/master/recycler_pod.yaml']
         }
 
         if 'cloudprovider' in facts: