From baee4455281540e9e13c8d209a18886996f37d28 Mon Sep 17 00:00:00 2001 From: cmuraru Date: Mon, 25 Feb 2019 18:05:28 +0200 Subject: [PATCH] [BUILD] Enhance docker image for Kubernetes --- Dockerfile | 4 +++- README.md | 6 +++--- setup.py | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1c6b7eb4..d1930bb3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,8 +14,10 @@ RUN brew-install kubernetes-helm RUN brew-install kubectl RUN brew-install jq RUN brew-install python2 +RUN brew install openssh +RUN helm init --client-only RUN pip2 install -U virtualenv RUN virtualenv ops RUN source ops/bin/activate -RUN pip2 install --upgrade https://github.com/adobe/ops-cli/releases/download/0.25/ops-0.25.tar.gz +RUN pip2 install --upgrade https://github.com/adobe/ops-cli/releases/download/0.27/ops-0.27.tar.gz diff --git a/README.md b/README.md index e7f66e05..e255a717 100644 --- a/README.md +++ b/README.md @@ -85,8 +85,8 @@ pip2 install -U virtualenv virtualenv ops source ops/bin/activate -# install opswrapper v0.26 stable release -pip2 install --upgrade https://github.com/adobe/ops-cli/releases/download/0.26/ops-0.26.tar.gz +# install opswrapper v0.27 stable release +pip2 install --upgrade https://github.com/adobe/ops-cli/releases/download/0.27/ops-0.27.tar.gz # Optionally, install terraform to be able to access terraform plugin # See https://www.terraform.io/intro/getting-started/install.html @@ -99,7 +99,7 @@ You can try out `ops-cli`, by using docker. The docker image has all required pr To start out a container, running the latest `ops-cli` docker image run: ```sh -docker run -it costimuraru/ops-cli:0.26 bash +docker run -it costimuraru/ops-cli:0.27 bash ``` After the container has started, you can start using `ops-cli`: diff --git a/setup.py b/setup.py index 8eac6b3c..d4cb656e 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ _requires = [ r for r in open(os.path.sep.join((_mydir,'requirements.txt')), "r").read().split('\n') if len(r)>1 ] setup( name='ops', - version='0.26', + version='0.27', description='Ops simple wrapper', author='Adobe', author_email='noreply@adobe.com',