From 72c3310707afa5c56e613123a6c2b622275ee30c Mon Sep 17 00:00:00 2001 From: Alexis Rivera DeLa Torre Date: Sun, 12 Mar 2017 09:22:29 -0500 Subject: [PATCH] [script] installing-libgit2-deps (#22) * removed pip from requirements.txt * added bash for libgit install * updated tox --- .travis.yml | 1 + README.md | 50 ++++++++++++++++++++++++++++++++++------------ requirements.txt | 14 ++++++------- scripts/libgit2.sh | 18 +++++++++++++++++ tox.ini | 6 ++++++ 5 files changed, 69 insertions(+), 20 deletions(-) create mode 100644 scripts/libgit2.sh diff --git a/.travis.yml b/.travis.yml index d5dc483e..6c5b6cd3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,6 +18,7 @@ before_install: - cd .. - pip install -r test-requirements.txt - pip install -r requirements.txt + - pip install pygit2==0.24.0 install: - pip install . diff --git a/README.md b/README.md index d546b8da..4b67b27a 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,14 @@ -# Armada [![Docker Repository on Quay](https://quay.io/repository/attcomdev/armada/status "Docker Repository on Quay")](https://quay.io/repository/attcomdev/armada) [![Build Status](https://travis-ci.org/att-comdev/armada.svg?branch=master)](https://travis-ci.org/att-comdev/armada) +# Armada + +[![Docker Repository on Quay](https://quay.io/repository/attcomdev/armada/status "Docker Repository on Quay")](https://quay.io/repository/attcomdev/armada) +[![Build Status](https://travis-ci.org/att-comdev/armada.svg?branch=master)](https://travis-ci.org/att-comdev/armada) A python orchestrator for a installing, upgrading, and managing a collection of helm charts, dependencies, and values overrides. Note that this project is pre-alpha and under active development. It may undergo drastic changes to support the long-term vision but contributions are welcome. -# Overview +## Overview The armada python library and command line tool provides a way to synchronize a helm (tiller) target with an operators intended state, consisting of several charts, dependencies, and overrides using a single file or directory with a collection of files. This allows operators to define many charts, potentially with different namespaces for those releases, and their overrides in a central place. With a single command, deploy and/or upgrade them where applicable. @@ -16,7 +19,7 @@ It will also give the operator some indication of what is about to change by ass Its functionality may extend beyond helm, assisting in interacting with kubernetes directly to perform basic pre and post steps, such as removing completed or failed jobs, running backup jobs, blocking on chart readiness, or deleting resources that do not support upgrades. However, primarily, it will be an interface to support orchestrating Helm. -## Running Armada +## Running Armada To use this container, use these simple instructions: @@ -24,27 +27,48 @@ To use this container, use these simple instructions: docker run quay.io/attcomdev/armada:latest ``` -# Installation +## Installation The installation is fairly straight forward: -``` - virtualenv --no-site-packages ~/armada-env - source ~/armada-env/bin/activate - pip install -r ./requirements.txt - python ./setup.py install - ``` +Recomended Enviroment: Ubuntu 16.04 + +### Installing Dependecies: + +you can run: + +* `tox testenv:ubuntu` or `sudo sh scripts/libgit2.sh` +* `sudo pip install -r requirements.txt` + +NOTE: If you want to use virtualenv please refer to [pygit2](http://www.pygit2.org/install.html#libgit2-within-a-virtual-environment) + +### Installing armada: + +`sudo pip install -e .` + +`armada -h` + +## Using Armada + +Before using armada we need to check a few things: + +1. you have a properly configure `~/.kube/config` + * `kubectl config view` + * If it does not exist, you can create it using [kubectl](https://kubernetes.io/docs/user-guide/kubectl/kubectl_config/) + +1. Check that you have a running Tiller + * `kubectl get pods -n kube-system` To run armada, simply supply it with your YAML based intention for any number of charts: ``` - ~/armada-env/bin/aramda -c examples/armada.yaml +aramda -c examples/armada.yaml ``` Your output will look something like this: ``` -$ ~/armada-env/bin/armada -c examples/armada.yaml +$ armada -c examples/armada.yaml 2017-02-10 09:42:36,753 armada INFO Cloning git://github.com/att-comdev/openstack-helm/keystone for release keystone 2017-02-10 09:42:39,238 armada INFO Building dependency chart common for release keystone 2017-02-10 09:42:39,238 armada INFO Cloning git://github.com/att-comdev/openstack-helm/common for release None @@ -71,7 +95,7 @@ endpoints: &endpoints And re-run armada, we will notice it will upgrade the keystone release, instead of install it on this pass, as well as report back the values changes as a unified diff. A unified diff for any template changes would also be shown had those occurred. ``` -alan@hpdesktop:~/Workbench/att/attcomdev/armada$ /tmp/armada/bin/armada -c examples/armada.yaml +alan@hpdesktop:~/Workbench/att/attcomdev/armada$ armada -c examples/armada.yaml 2017-02-10 09:44:43,396 armada INFO Cloning git://github.com/att-comdev/openstack-helm/keystone for release keystone 2017-02-10 09:44:47,640 armada INFO Building dependency chart common for release keystone 2017-02-10 09:44:47,640 armada INFO Cloning git://github.com/att-comdev/openstack-helm/common for release None diff --git a/requirements.txt b/requirements.txt index 127ba24b..119b689b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ -supermutes -grpc -pyyaml -grpcio -grpcio-tools -kubernetes -pygit2==0.24.0 +grpc==0.3.post19 +grpcio==1.1.3 +grpcio-tools==1.1.3 +kubernetes==1.0.0 +protobuf==3.2.0 +PyYAML==3.12 +supermutes==0.2.5 diff --git a/scripts/libgit2.sh b/scripts/libgit2.sh new file mode 100644 index 00000000..633cc4c8 --- /dev/null +++ b/scripts/libgit2.sh @@ -0,0 +1,18 @@ +#!/bin/sh + +# Ubuntu 16.04 Install only + +sudo apt install git cmake make -y +sudo apt-get install -y python-dev libffi-dev libssl-dev libxml2-dev libxslt1-dev libssh2-1 libgit2-dev python-pip libgit2-24 +sudo apt-get install -y pkg-config libssh2-1-dev libhttp-parser-dev libssl-dev libz-dev + +LIBGIT_VERSION='0.25.0' + +wget https://github.com/libgit2/libgit2/archive/v${LIBGIT_VERSION}.tar.gz +tar xzf v${LIBGIT_VERSION}.tar.gz +cd libgit2-${LIBGIT_VERSION}/ +cmake . +make +sudo make install +sudo pip install pygit2==0.25.0 +sudo ldconfig diff --git a/tox.ini b/tox.ini index db2bdcf7..946d4f05 100644 --- a/tox.ini +++ b/tox.ini @@ -7,6 +7,12 @@ deps= -r{toxinidir}/test-requirements.txt setenv= PYTHONWARNINGS=all +commands = + sh {toxinidir}/scripts/libgit2.sh + +[testenv:ubuntu] +commands = + sh {toxinidir}/scripts/libgit2.sh [flake8] ignore=E302,H306