This repository has been archived by the owner on Jan 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
40 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,37 @@ | ||
## Atomic App 0.4.0 (01-20-2016) | ||
|
||
With this release we bump our version to 0.4.0 to coincide with our BETA-4 release as well as the change to our "install" verb. | ||
|
||
The most significant new features are: | ||
- Renaming install to fetch | ||
- Allowing users to pass an answers file as a URL | ||
|
||
For an extended list of changes, please see the git shortlog below. | ||
|
||
``` | ||
Charlie Drage <[email protected]>: | ||
Change undeploy/deploy functions to run/stop | ||
Rename install to fetch | ||
Remove mention of uninstall function | ||
Fix test names | ||
Remove install label from Dockerfiles | ||
Dusty Mabe <[email protected]>: | ||
docker: fix stopping for artifacts with '--name=' | ||
cli: allow specifying target dir during atomic run | ||
cli: add --namespace option to cli | ||
Allow users to provide answers file as url. | ||
Create destination app_path dir if it doesn't exist yet. | ||
Ratnadeep Debnath <[email protected]>: | ||
Support specifying default provider in Nulecule spec file. Fixes #378 | ||
Tomas Kral <[email protected]>: | ||
openshift provider: safer stop | ||
openshift provider: fix typos, add more explanation | ||
openshift provider: remove acronyms from comments | ||
``` | ||
|
||
## Atomic App 0.3.1 (01-14-2016) | ||
|
||
This release introduces some significant features to Atomic App as well as our first release since 0.3.0. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM centos:7 | |
|
||
MAINTAINER Red Hat, Inc. <[email protected]> | ||
|
||
ENV ATOMICAPPVERSION="0.3.1" | ||
ENV ATOMICAPPVERSION="0.4.0" | ||
|
||
LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \ | ||
io.openshift.generate.job=true \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM debian:jessie | |
|
||
MAINTAINER Red Hat, Inc. <[email protected]> | ||
|
||
ENV ATOMICAPPVERSION="0.3.1" | ||
ENV ATOMICAPPVERSION="0.4.0" | ||
|
||
LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \ | ||
RUN="docker run -it --rm \${OPT1} --privileged -v `pwd`:/atomicapp -v /run:/run -v /:/host --net=host --name \${NAME} -e NAME=\${NAME} -e IMAGE=\${IMAGE} \${IMAGE} -v \${OPT2} run \${OPT3}" \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM fedora:23 | |
|
||
MAINTAINER Red Hat, Inc. <[email protected]> | ||
|
||
ENV ATOMICAPPVERSION="0.3.1" | ||
ENV ATOMICAPPVERSION="0.4.0" | ||
|
||
LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \ | ||
io.openshift.generate.job=true \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ Atomic App is a reference implementation of the [Nulecule Specification](http:// | |
Atomic App is packaged as a container. End-users typically do not install the software from source. Instead use the atomicapp container as the `FROM` line in a Dockerfile and package your application on top. For example: | ||
|
||
``` | ||
FROM projectatomic/atomicapp:0.3.1 | ||
FROM projectatomic/atomicapp:0.4.0 | ||
MAINTAINER Your Name <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ def _install_requirements(): | |
|
||
setup( | ||
name='atomicapp', | ||
version='0.3.1', | ||
version='0.4.0', | ||
description='A tool to install and run Nulecule apps', | ||
author='Red Hat, Inc.', | ||
author_email='[email protected]', | ||
|