Skip to content
This repository was archived by the owner on Jan 19, 2018. It is now read-only.

Commit e578efc

Browse files
committed
0.6.2 Release
1 parent 8337c16 commit e578efc

File tree

10 files changed

+95
-9
lines changed

10 files changed

+95
-9
lines changed

CHANGELOG.md

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,89 @@
1+
## Atomic App 0.6.2 (07-27-2016)
2+
3+
This release of Atomic App introduces the new `atomicapp index` command.
4+
5+
We add this command in order to give a quick overview of all available featured and tested Nuleculized applications on [github.com/projectatomic/nulecule-library](https://github.com/projectatomic/nulecule-library). The ability to generate your own list is available as well with the `atomicapp index generate` command.
6+
7+
The main features of this release are:
8+
9+
* Addition of the `atomicapp index` command
10+
* Correct file permissions are now when extracting Nuleculized containers
11+
* OpenShift connection issue bugfix
12+
13+
14+
## `atomicapp index`
15+
16+
This release adds the addition of the `atomicapp index` command. By using the `atomicapp index list` command, Atomic App will retrieve a container containing a valid `index.yml` and output all available Nulecule containers. This index can also be updated by using `atomicapp index update`.
17+
18+
19+
**atomicapp index list**
20+
21+
Outputs the list of available containers located at `~/.atomicapp/index.yml`.
22+
23+
```
24+
▶ atomicapp index list
25+
INFO :: Atomic App: 0.6.2 - Mode: Index
26+
ID VER PROVIDERS LOCATION
27+
postgresql-atomicapp 1.0.0 {D,O,K} docker.io/projectatomic/postgresql-centos7-atomicapp
28+
flask_redis_nulecule 0.0.1 {D,K} docker.io/projectatomic/flask-redis-centos7-atomicapp
29+
redis-atomicapp 0.0.1 {D,O,K} docker.io/projectatomic/redis-centos7-atomicapp
30+
gocounter 0.0.1 {D,K} docker.io/projectatomic/gocounter-scratch-atomicapp
31+
mariadb-atomicapp 1.0.0 {D,O,K} docker.io/projectatomic/mariadb-centos7-atomicapp
32+
helloapache-app 0.0.1 {D,K,M} docker.io/projectatomic/helloapache
33+
mongodb-atomicapp 1.0.0 {D,O,K} docker.io/projectatomic/mongodb-centos7-atomicapp
34+
etherpad-app 0.0.1 {D,O,K} docker.io/projectatomic/etherpad-centos7-atomicapp
35+
apache-centos7-atomicapp 0.0.1 {D,K,M} docker.io/projectatomic/apache-centos7-atomicapp
36+
wordpress-atomicapp 2.0.0 {D,O,K} docker.io/projectatomic/wordpress-centos7-atomicapp
37+
skydns-atomicapp 0.0.1 {K} docker.io/projectatomic/skydns-atomicapp
38+
guestbookgo-atomicapp 0.0.1 {O,K} docker.io/projectatomic/guestbookgo-atomicapp
39+
mariadb-app 0.0.1 {D,K} docker.io/projectatomic/mariadb-fedora-atomicapp
40+
gitlab-atomicapp 1.2.0 {D,K} docker.io/projectatomic/gitlab-centos7-atomicapp
41+
```
42+
43+
**atomicapp index update**
44+
45+
Updates the `index.yml` file.
46+
47+
```
48+
▶ atomicapp index update
49+
INFO :: Atomic App: 0.6.2 - Mode: Index
50+
INFO :: Updating the index list
51+
INFO :: Pulling latest index image...
52+
INFO :: Skipping pulling docker image: projectatomic/nulecule-library
53+
INFO :: Copying files from image projectatomic/nulecule-library:/index.yaml to /home/wikus/.atomicapp/index.yaml
54+
INFO :: Index updated
55+
```
56+
57+
**atomicapp index generate**
58+
59+
Generates a valid `index.yml` file to use in listing all available containers.
60+
61+
```
62+
▶ atomicapp index generate ./nulecule-library
63+
INFO :: Atomic App: 0.6.1 - Mode: Index
64+
INFO :: Generating index.yaml from ./nulecule-library
65+
INFO :: index.yaml generated
66+
```
67+
68+
```
69+
Abhishek <abhishek@dhcp35-217.lab.eng.blr.redhat.com> (3):
70+
incorrect_log_level
71+
Show help when no arguments given.
72+
raise DockerException for docker commands
73+
74+
Charlie Drage <charlie@charliedrage.com> (7):
75+
Remove warning in regards to application-entity
76+
Refactor extracting
77+
Fixes connecting issues with OpenShift
78+
Fix coverage
79+
Modifies asking for parameters to show app name
80+
When fetching or extracting, set the correct uid + guid
81+
Add "index" command to Atomic App
82+
83+
Shubham Minglani <shubham@linux.com> (1):
84+
collect only atomicapp tests
85+
```
86+
187
## Atomic App 0.6.1 (07-06-2016)
288

389
A minor release for Atomic App.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM centos:7
22

33
MAINTAINER Red Hat, Inc. <container-tools@redhat.com>
44

5-
ENV ATOMICAPPVERSION="0.6.1"
5+
ENV ATOMICAPPVERSION="0.6.2"
66

77
LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \
88
io.openshift.generate.job=true \

Dockerfiles.git/Dockerfile.centos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM centos:7
22

33
MAINTAINER Red Hat, Inc. <container-tools@redhat.com>
44

5-
ENV ATOMICAPPVERSION="0.6.1"
5+
ENV ATOMICAPPVERSION="0.6.2"
66

77
LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \
88
io.openshift.generate.job=true \

Dockerfiles.git/Dockerfile.debian

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM debian:jessie
22

33
MAINTAINER Red Hat, Inc. <container-tools@redhat.com>
44

5-
ENV ATOMICAPPVERSION="0.6.1"
5+
ENV ATOMICAPPVERSION="0.6.2"
66

77
LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \
88
RUN="docker run -it --rm \${OPT1} --privileged -v \${PWD}:/atomicapp -v /run:/run -v /:/host --net=host --name \${NAME} -e USER -e SUDO_USER -e NAME=\${NAME} -e IMAGE=\${IMAGE} \${IMAGE} \${OPT2} run \${OPT3}" \

Dockerfiles.git/Dockerfile.fedora

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM fedora:23
22

33
MAINTAINER Red Hat, Inc. <container-tools@redhat.com>
44

5-
ENV ATOMICAPPVERSION="0.6.1"
5+
ENV ATOMICAPPVERSION="0.6.2"
66

77
LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \
88
io.openshift.generate.job=true \

Dockerfiles.pkgs/Dockerfile.centos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ MAINTAINER Red Hat, Inc. <container-tools@redhat.com>
44

55
# Check https://bodhi.fedoraproject.org/updates/?packages=atomicapp
66
# for the most recent builds of atomicapp in epel
7-
ENV ATOMICAPPVERSION="0.6.1"
7+
ENV ATOMICAPPVERSION="0.6.2"
88
ENV TESTING="--enablerepo=epel-testing"
99

1010
LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \

Dockerfiles.pkgs/Dockerfile.fedora

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ MAINTAINER Red Hat, Inc. <container-tools@redhat.com>
44

55
# Check https://bodhi.fedoraproject.org/updates/?packages=atomicapp
66
# for the most recent builds of atomicapp in fedora
7-
ENV ATOMICAPPVERSION="0.6.1"
7+
ENV ATOMICAPPVERSION="0.6.2"
88
ENV TESTING="--enablerepo=updates-testing"
99

1010
LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ _or_
2525

2626
Download a pre-signed .tar.gz from [download.projectatomic.io](https://download.projectatomic.io) / [GitHub](https://github.com/projectatomic/atomicapp/releases):
2727
```sh
28-
export RELEASE=0.6.1
28+
export RELEASE=0.6.2
2929
wget https://github.com/projectatomic/atomicapp/releases/download/$RELEASE/atomicapp-$RELEASE.tar.gz
3030
tar -xvf atomicapp-$RELEASE.tar.gz && cd atomicapp-$RELEASE
3131
sudo make install

atomicapp/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
2) LABEL io.projectatomic.nulecule.specversion in app Dockefile
2424
"""
2525

26-
__ATOMICAPPVERSION__ = '0.6.1'
26+
__ATOMICAPPVERSION__ = '0.6.2'
2727
__NULECULESPECVERSION__ = '0.0.2'
2828

2929
EXTERNAL_APP_DIR = "external"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def _install_requirements():
4141

4242
setup(
4343
name='atomicapp',
44-
version='0.6.1',
44+
version='0.6.2',
4545
description='A tool to install and run Nulecule apps',
4646
author='Red Hat, Inc.',
4747
author_email='container-tools@redhat.com',

0 commit comments

Comments
 (0)