Browse Source

Fix quoting around null

Jason DeTiberus 9 years ago
parent
commit
0077c327fd
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

@@ -68,8 +68,8 @@ kubernetesMasterConfig:
   apiLevels:
   - v1beta3
   - v1
-  apiServerArguments: {{ api_server_args if api_server_args is defined else null }}
-  controllerArguments: {{ controller_args if controller_args is defined else null }}
+  apiServerArguments: {{ api_server_args if api_server_args is defined else 'null' }}
+  controllerArguments: {{ controller_args if controller_args is defined else 'null' }}
 {# TODO: support overriding masterCount #}
   masterCount: 1
   masterIP: ""