Skip to content

Commit baee445

Browse files
author
cmuraru
committed
[BUILD] Enhance docker image for Kubernetes
1 parent 40cf374 commit baee445

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ RUN brew-install kubernetes-helm
1414
RUN brew-install kubectl
1515
RUN brew-install jq
1616
RUN brew-install python2
17+
RUN brew install openssh
18+
RUN helm init --client-only
1719

1820
RUN pip2 install -U virtualenv
1921
RUN virtualenv ops
2022
RUN source ops/bin/activate
21-
RUN pip2 install --upgrade https://github.com/adobe/ops-cli/releases/download/0.25/ops-0.25.tar.gz
23+
RUN pip2 install --upgrade https://github.com/adobe/ops-cli/releases/download/0.27/ops-0.27.tar.gz

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ pip2 install -U virtualenv
8585
virtualenv ops
8686
source ops/bin/activate
8787

88-
# install opswrapper v0.26 stable release
89-
pip2 install --upgrade https://github.com/adobe/ops-cli/releases/download/0.26/ops-0.26.tar.gz
88+
# install opswrapper v0.27 stable release
89+
pip2 install --upgrade https://github.com/adobe/ops-cli/releases/download/0.27/ops-0.27.tar.gz
9090

9191
# Optionally, install terraform to be able to access terraform plugin
9292
# 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
9999

100100
To start out a container, running the latest `ops-cli` docker image run:
101101
```sh
102-
docker run -it costimuraru/ops-cli:0.26 bash
102+
docker run -it costimuraru/ops-cli:0.27 bash
103103
```
104104

105105
After the container has started, you can start using `ops-cli`:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
_requires = [ r for r in open(os.path.sep.join((_mydir,'requirements.txt')), "r").read().split('\n') if len(r)>1 ]
1717
setup(
1818
name='ops',
19-
version='0.26',
19+
version='0.27',
2020
description='Ops simple wrapper',
2121
author='Adobe',
2222
author_email='[email protected]',

0 commit comments

Comments
 (0)