Skip to content

Commit

Permalink
Merge pull request #302 from user-cont/0.6.0-release
Browse files Browse the repository at this point in the history
0.6.0 release
  • Loading branch information
rpitonak authored Oct 24, 2018
2 parents b2875ee + dced39c commit f07c6e2
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
# 0.6.0

# Breaking changes

* We have split `new_app` method of origin backend to three specific methods:
- `deploy_image` for deployment of an image.
- `create_new_app_from_source` for deployment of applications using source-to-image from local or remote source.
- `create_app_from_template` for deployment of applications using OpenShift templates.

# New features

* Troubleshooting and debugging of OpenShift backend is now easier because of new methods `get_logs` and `get_status`.

# Fixes

* Documentation is updated and now includes OpenShift and Kubernetes backends.
* Fixed race condition when starting docker containers via binary.
* Nspawn backend improvements:
- Changed default image location to `/opt` to avoid issues with brtfs and using loopback device.
- Do not use pull-raw and importing via machinectl.
- Test suite improvements.


# 0.5.0

## New Features
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ docker run -it --rm \
-v /var/run/docker.sock:/var/run/docker.sock:z \
--cap-add SYS_ADMIN \
--privileged \
usercont/conu:0.5.0 python3
usercont/conu:0.6.0 python3
```

```python
Expand All @@ -66,7 +66,7 @@ docker run -it --rm \
-v $PWD/my_source.py:/app/my_source.py:z \
--cap-add SYS_ADMIN \
--privileged \
usercont/conu:0.5.0 python3 /app/my_source.py
usercont/conu:0.6.0 python3 /app/my_source.py
```

# Features
Expand Down
2 changes: 1 addition & 1 deletion conu/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# https://www.python.org/dev/peps/pep-0440/
__version__ = '0.5.0'
__version__ = '0.6.0'

0 comments on commit f07c6e2

Please sign in to comment.