Created
June 18, 2019 14:58
-
-
Save craigtracey/8576de8c389e3bcecb9e91d6bf1a26c7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2018 The Kubernetes Authors. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
import re | |
from os import path | |
import yaml | |
from kubernetes import client | |
from kubernetes.client.rest import ApiException | |
def create_from_yaml( | |
k8s_client, | |
yaml_file, | |
verbose=False, | |
allow_crd=False, | |
**kwargs): | |
""" | |
Perform an action from a yaml file. Pass True for verbose to | |
print confirmation information. | |
Input: | |
yaml_file: string. Contains the path to yaml file. | |
k8s_client: an ApiClient object, initialized with the client args. | |
verbose: If True, print confirmation from the create action. | |
Default is False. | |
Returns: | |
An k8s api object or list of apis objects created from YAML. | |
When a single object is generated, return type is dependent | |
on output_list. | |
Throws a FailToCreateError exception if creation of any object | |
fails with helpful messages from the server. | |
Available parameters for creating <kind>: | |
:param async_req bool | |
:param bool include_uninitialized: If true, partially initialized | |
resources are included in the response. | |
:param str pretty: If 'true', then the output is pretty printed. | |
:param str dry_run: When present, indicates that modifications | |
should not be persisted. An invalid or unrecognized dryRun | |
directive will result in an error response and no further | |
processing of the request. | |
Valid values are: - All: all dry run stages will be processed | |
""" | |
with open(path.abspath(yaml_file)) as f: | |
yml_document_all = yaml.safe_load_all(f) | |
api_exceptions = [] | |
# Load all documents from a single YAML file | |
for yml_document in yml_document_all: | |
# If it is a list type, will need to iterate its items | |
if "List" in yml_document["kind"]: | |
# Could be "List" or "Pod/Service/...List" | |
# This is a list type. iterate within its items | |
kind = yml_document["kind"].replace("List", "") | |
for yml_object in yml_document["items"]: | |
# Mitigate cases when server returns a xxxList object | |
# See kubernetes-client/python#586 | |
if kind is not "": | |
yml_object["apiVersion"] = yml_document["apiVersion"] | |
yml_object["kind"] = kind | |
try: | |
create_from_yaml_single_item( | |
k8s_client, yml_object, verbose, allow_crd, **kwargs) | |
except client.rest.ApiException as api_exception: | |
api_exceptions.append(api_exception) | |
else: | |
# This is a single object. Call the single item method | |
try: | |
create_from_yaml_single_item( | |
k8s_client, yml_document, verbose, allow_crd, **kwargs) | |
except client.rest.ApiException as api_exception: | |
api_exceptions.append(api_exception) | |
# In case we have exceptions waiting for us, raise them | |
if api_exceptions: | |
raise FailToCreateError(api_exceptions) | |
def _find_custom_resource(k8s_client, group, version, kind): | |
apiext = client.ApiextensionsV1beta1Api(k8s_client) | |
crds = apiext.list_custom_resource_definition() | |
for crd in crds.items: | |
if crd.spec.group == group and crd.spec.names.kind == kind: | |
for crd_version in crd.spec.versions: | |
if crd_version.name == version: | |
return crd | |
return None | |
def create_custom_object(k8s_client, group, version, plural, | |
body, namespace=None, apply=True): | |
resp = None | |
capi = client.CustomObjectsApi(k8s_client) | |
if namespace: | |
try: | |
resp = capi.create_namespaced_custom_object(group, version, | |
namespace, plural, | |
body) | |
except ApiException as e: | |
if apply and e.status == 409: | |
name = body['metadata']['name'] | |
resp = capi.patch_namespaced_custom_object(group, version, | |
namespace, plural, | |
name, body) | |
else: | |
raise(e) | |
else: | |
try: | |
resp = capi.create_cluster_custom_object(group, version, | |
plural, body) | |
except ApiException as e: | |
if apply and e.status == 409: | |
name = body['metadata']['name'] | |
resp = capi.patch_cluster_custom_object(group, version, | |
plural, name, body) | |
else: | |
raise(e) | |
return resp | |
def create_from_yaml_single_item( | |
k8s_client, yml_object, verbose=False, allow_crd=False, **kwargs): | |
group, _, version = yml_object["apiVersion"].partition("/") | |
if version == "": | |
version = group | |
group = "core" | |
# Take care for the case e.g. api_type is "apiextensions.k8s.io" | |
# Only replace the last instance | |
group = "".join(group.rsplit(".k8s.io", 1)) | |
namespace = yml_object["metadata"].get("namespace", "default") | |
if allow_crd: | |
crd = _find_custom_resource(k8s_client, group, version, | |
yml_object['kind']) | |
if crd: | |
plural = crd.spec.names.plural | |
resource_ns = namespace if crd.spec.scope == "Namespaced" else None | |
resp = create_custom_object(k8s_client, group, version, plural, | |
yml_object, resource_ns) | |
return resp | |
# convert group name from DNS subdomain format to | |
# python class name convention | |
group = "".join(word.capitalize() for word in group.split('.')) | |
fcn_to_call = "{0}{1}Api".format(group, version.capitalize()) | |
k8s_api = getattr(client, fcn_to_call)(k8s_client) | |
# Replace CamelCased action_type into snake_case | |
kind = yml_object["kind"] | |
kind = re.sub('(.)([A-Z][a-z]+)', r'\1_\2', kind) | |
kind = re.sub('([a-z0-9])([A-Z])', r'\1_\2', kind).lower() | |
# Expect the user to create namespaced objects more often | |
if hasattr(k8s_api, "create_namespaced_{0}".format(kind)): | |
resp = getattr(k8s_api, "create_namespaced_{0}".format(kind))( | |
body=yml_object, namespace=namespace, **kwargs) | |
else: | |
resp = getattr(k8s_api, "create_{0}".format(kind))( | |
body=yml_object, **kwargs) | |
if verbose: | |
print("{0} created. status='{1}'".format(kind, str(resp.status))) | |
class FailToCreateError(Exception): | |
""" | |
An exception class for handling error if an error occurred when | |
handling a yaml file. | |
""" | |
def __init__(self, api_exceptions): | |
self.api_exceptions = api_exceptions | |
def __str__(self): | |
msg = "" | |
for api_exception in self.api_exceptions: | |
msg += "Error from server ({0}): {1}".format( | |
api_exception.reason, api_exception.body) | |
return msg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment