瀏覽代碼

Fix quoting around null

Jason DeTiberus 9 年之前
父節點
當前提交
0077c327fd
共有 1 個文件被更改,包括 2 次插入2 次删除
  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: ""