Allow nodepool for using in-cluster configs

When running within a kubernetes cluster, it's easier to configure a
service account and mounting it on the nodepool POD than creating a
kubeconfig file and making it available to nodepool.

For this reason, this commit adds the ability to load configs from the
in-cluster service account paths. It does this as a fallback when the
kubeconfig path doesn't exist.

This commit also makes `context` a non required configuration option,
since it's not needed when a service account is used.

Change-Id: I7762940993c185c17d7468df72dff22e99d7f8c2
This commit is contained in:
Flavio Percoco 2019-06-28 15:08:20 +02:00
parent 007f7e0b08
commit e819f4b4b1
2 changed files with 8 additions and 2 deletions

View File

@ -109,7 +109,7 @@ class KubernetesProviderConfig(ProviderConfig):
provider = {
v.Required('pools'): [pool],
v.Required('context'): str,
'context': str,
'launch-retries': int,
}

View File

@ -49,7 +49,13 @@ class KubernetesProvider(Provider):
self.namespace_names.add(pool.name)
def _get_client(self, context):
conf = config.new_client_from_config(context=context)
try:
conf = config.new_client_from_config(context=context)
except FileNotFoundError:
self.log.debug("Kubernetes config file not found, attempting "
"to load in-cluster configs")
conf = config.load_incluster_config()
return (
k8s_client.CoreV1Api(conf),
k8s_client.RbacAuthorizationV1beta1Api(conf))