|
@@ -1060,6 +1060,7 @@ values provided as a list. Hence the gratuitous use of ['foo'] below.
|
|
|
kubelet_args['cloud-config'] = [cloud_cfg_path + '/openstack.conf']
|
|
|
if facts['cloudprovider']['kind'] == 'gce':
|
|
|
kubelet_args['cloud-provider'] = ['gce']
|
|
|
+ kubelet_args['cloud-config'] = [cloud_cfg_path + '/gce.conf']
|
|
|
|
|
|
# Automatically add node-labels to the kubeletArguments
|
|
|
# parameter. See BZ1359848 for additional details.
|
|
@@ -1102,6 +1103,7 @@ def build_controller_args(facts):
|
|
|
controller_args['cloud-config'] = [cloud_cfg_path + '/openstack.conf']
|
|
|
if facts['cloudprovider']['kind'] == 'gce':
|
|
|
controller_args['cloud-provider'] = ['gce']
|
|
|
+ kubelet_args['cloud-config'] = [cloud_cfg_path + '/gce.conf']
|
|
|
if controller_args != {}:
|
|
|
facts = merge_facts({'master': {'controller_args': controller_args}}, facts, [], [])
|
|
|
return facts
|
|
@@ -1122,6 +1124,7 @@ def build_api_server_args(facts):
|
|
|
api_server_args['cloud-config'] = [cloud_cfg_path + '/openstack.conf']
|
|
|
if facts['cloudprovider']['kind'] == 'gce':
|
|
|
api_server_args['cloud-provider'] = ['gce']
|
|
|
+ kubelet_args['cloud-config'] = [cloud_cfg_path + '/gce.conf']
|
|
|
if api_server_args != {}:
|
|
|
facts = merge_facts({'master': {'api_server_args': api_server_args}}, facts, [], [])
|
|
|
return facts
|