Translate Docker compose and k8s manifests to a MiCADO ADT
Project description
Docker Compose and K8s manifests to (MiCADO) ADT
Translate a single or multi-part YAML file containing Kubernetes manifests or a Docker compose into a MiCADO ADT.
Requirements
Python >= 3.6
click
ruamel.yaml
Usage
Install compose binary:
curl -L https://github.com/kubernetes/kompose/releases/download/v1.26.1/kompose-linux-amd64 -o kompose
chmod +x kompose
sudo mv ./kompose /usr/local/bin/kompose
Clone the repository:
git clone <repository> dockubeadt
cd dockubeadt
Install and run dockubeadt with pip:
pip3 install .
dockubeadt PATH/TO/FILENAME.YAML
Or skip the install and simply:
python3 -m dockubeadt PATH/TO/FILENAME.YAML
Generated output file will be saved to your current directory as adt-FILENAME.YAML
Things to note(Docker Compose)
- All the volume mounts in docker compose are by default converted to 'hostPath' volume mounts in MiCADO ADT
- Use the
restart
property in docker compose to manage the container restarts. The values can bealways
,on-failure
ornone
. - Use the long port syntax in docker-compose for services that needs to be exposed externally using a domain name or public IP. A sample of long port syntax is given below.
ports:
- target: 8080
published:8080
protocol: tcp
mode: host
Docker Compose Variables
The variables in docker compose file needs to be in these form:
- TEST_MESSAGE={ get_input:TEST_MESSAGE }
TEST_MESSAGE: '{ get_input:TEST_MESSAGE }'
command: 'python3 start.py {get_input:DB_MODEL_}'
Roadmap
- Support appending translated nodes to an existing ADT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dockubeadt-0.2.4.tar.gz
(10.5 kB
view hashes)
Built Distribution
dockubeadt-0.2.4-py3-none-any.whl
(11.0 kB
view hashes)
Close
Hashes for dockubeadt-0.2.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52f890be6da878b4c93c1573453a0c99d6972809671163bc46ddae11233061bb |
|
MD5 | c72531cf34cabb218a3df09036cf619a |
|
BLAKE2b-256 | 1e2324fcc9e22dad4419b20e49385ac60c5f8b1ab2ee5ccf841a1fbf592b3737 |