forked from vmware/container-service-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
1,052 additions
and
73 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
rm -rf build dist *.egg-info | ||
find . -name '*.pyc' -delete | ||
find . -name '*.log' -delete |
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
Empty file.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
# container-service-extension | ||
# Copyright (c) 2017 VMware, Inc. All Rights Reserved. | ||
# SPDX-License-Identifier: BSD-2-Clause | ||
|
||
|
||
import json | ||
import requests | ||
|
||
|
||
class Cluster(object): | ||
def __init__(self, client): | ||
self.client = client | ||
self._uri = self.client.get_api_uri() + '/cse' | ||
|
||
def get_templates(self): | ||
method = 'GET' | ||
uri = '%s/template' % (self._uri) | ||
response = self.client._do_request_prim( | ||
method, | ||
uri, | ||
self.client._session, | ||
contents=None, | ||
media_type=None, | ||
accept_type='application/*+json', | ||
auth=None) | ||
if response.status_code == requests.codes.ok: | ||
return json.loads(response.content.decode("utf-8")) | ||
else: | ||
raise Exception(json.loads(response.content)) | ||
|
||
def get_clusters(self): | ||
method = 'GET' | ||
uri = self._uri | ||
response = self.client._do_request_prim( | ||
method, | ||
uri, | ||
self.client._session, | ||
contents=None, | ||
media_type=None, | ||
accept_type='application/*+json', | ||
auth=None) | ||
if response.status_code == requests.codes.ok: | ||
return json.loads(response.content.decode("utf-8")) | ||
else: | ||
raise Exception(json.loads(response.content)) | ||
|
||
def create_cluster(self, | ||
vdc, | ||
network_name, | ||
name, | ||
node_count=2, | ||
cpu_count=None, | ||
memory=None, | ||
storage_profile=None, | ||
ssh_key=None, | ||
template=None): | ||
"""Create a new Kubernetes cluster | ||
:param vdc: (str): The name of the vdc backing the org in which the | ||
cluster would be created | ||
:param network_name: (str): The name of the network to which the | ||
cluster vApp will connect to | ||
:param name: (str): The name of the cluster | ||
:param node_count: (str): The number of slave nodes | ||
:param cpu_count: (str): The number of virtual cpus on each of the | ||
nodes in the cluster | ||
:param memory: (str): The amount of memory (in MB) on each of the nodes | ||
in the cluster | ||
:param storage_profile: (str): The name of the storage profile which | ||
will back the cluster | ||
:param ssh_key: (str): The ssh key that clients can use to log into the | ||
node vms without explicitly providing passwords | ||
:param template: (str): The name of the catalog template to | ||
instantiate the nodes from | ||
:return: (json) A parsed json object describing the requested cluster. | ||
""" | ||
method = 'POST' | ||
uri = self._uri | ||
data = { | ||
'name': name, | ||
'node_count': node_count, | ||
'vdc': vdc, | ||
'cpu_count': cpu_count, | ||
'memory': memory, | ||
'network': network_name, | ||
'storage_profile': storage_profile, | ||
'ssh_key': ssh_key, | ||
'template': template | ||
} | ||
response = self.client._do_request_prim( | ||
method, | ||
uri, | ||
self.client._session, | ||
contents=data, | ||
media_type=None, | ||
accept_type='application/*+json') | ||
if response.status_code == requests.codes.accepted: | ||
return json.loads(response.content) | ||
else: | ||
raise Exception(json.loads(response.content).get('message')) | ||
|
||
def delete_cluster(self, cluster_name): | ||
method = 'DELETE' | ||
uri = '%s/%s' % (self._uri, cluster_name) | ||
response = self.client._do_request_prim( | ||
method, | ||
uri, | ||
self.client._session, | ||
accept_type='application/*+json') | ||
if response.status_code == requests.codes.accepted: | ||
return json.loads(response.content) | ||
else: | ||
raise Exception(json.loads(response.content).get('message')) | ||
|
||
def get_config(self, cluster_name): | ||
method = 'GET' | ||
uri = '%s/%s/config' % (self._uri, cluster_name) | ||
response = self.client._do_request_prim( | ||
method, | ||
uri, | ||
self.client._session, | ||
contents=None, | ||
media_type=None, | ||
accept_type='text/x-yaml', | ||
auth=None) | ||
if response.status_code == requests.codes.ok: | ||
return response.content.decode('utf-8').replace('\\n', '\n')[1:-1] | ||
else: | ||
raise Exception(json.loads(response.content)) |
Oops, something went wrong.