Metadata-Version: 2.0
Name: container-service-extension
Version: 0.0.1.dev68
Summary: Container Service Extension for vCloud Director
Home-page: https://github.com/vmware/container-service-extension
Author: Paco Gomez
Author-email: pgomez@vmware.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Developers
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Requires-Dist: bravado
Requires-Dist: click
Requires-Dist: jsonpickle
Requires-Dist: pika (>=0.10.0)
Requires-Dist: pyyaml
Requires-Dist: requests
Requires-Dist: vca-cli (>=18.0.2.dev30)

# container-service-extension

## Overview

The **container-service-extension** for vCloud Director manages the life cycle of Kubernetes clusters for tenants.

## Try it out

### Prerequisites

This extension should be installed on a vCloud Director instance by a system administrator.

The **container-service-extension** is distributed as a Python package.

### Install & Run

#### Installation:

Install and validate:

``` shell
$ pip install --user container-service-extension

$ cse version
```

More information about `vcd-cli` commands to use the service can be found in the [wiki](https://github.com/vmware/vcd-cli/wiki/container-service-extension).

#### Configuration

Follow the vCloud Director configuration steps in the [wiki](https://github.com/vmware/container-service-extension/wiki).

Edit file `config.yml` and provide the values for your vCloud Director installation.

Validate the configuration:

``` shell
$ cse check config.yml

Connection to AMQP server (amqp.vmware.com:5672): success
Connection to vCloud Director (vcd.vmware.com:443): success
  login to 'System' org: success
Connection to Cove server (kov.vmware.com:5683): success
Connection to vCenter Server (vcs.vmware.com:443): success
```

Start the service:

``` shell
$ cse run config.yml
```

### Development

``` shell
$ git clone https://github.com/vmware/container-service-extension.git
$ python setup.py develop
$ cse init
```

edit config.yml

``` shell
$ cse check config.yml
$ cse run config.yml
```

## Documentation

[wiki](https://github.com/vmware/container-service-extension/wiki).

## Contributing

The *container-service-extension* project team welcomes contributions from the community. Before you start working with *container-service-extension*, please read our [Developer Certificate of Origin](https://cla.vmware.com/dco). All contributions to this repository must be signed as described on that page. Your signature certifies that you wrote the patch or have the right to pass it on as an open-source patch. For more detailed information, refer to [CONTRIBUTING.md](CONTRIBUTING.md).

## License

[BSD-2](LICENSE.txt)



