Skip to content

Commit

Permalink
Merge pull request #9 from ing-bank/rename-to-rokku
Browse files Browse the repository at this point in the history
Rename project to rokku
  • Loading branch information
kr7ysztof committed Apr 17, 2019
2 parents 7004052 + b8a67ac commit 6848cc7
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ script:
- export DOCKER_TAG="${TRAVIS_BRANCH/\//_}"
- if [ "${TRAVIS_BRANCH}" != "master" ]; then
echo "Build image for tag ${DOCKER_TAG}";
docker pull wbaa/airlock-dev-apache-atlas:latest;
travis_wait 80 docker build --quiet -t wbaa/airlock-dev-apache-atlas:$DOCKER_TAG .;
docker push wbaa/airlock-dev-apache-atlas:$DOCKER_TAG;
docker pull wbaa/rokku-dev-apache-atlas:latest;
travis_wait 80 docker build --quiet -t wbaa/rokku-dev-apache-atlas:$DOCKER_TAG .;
docker push wbaa/rokku-dev-apache-atlas:$DOCKER_TAG;
fi
- if [ -n "$TRAVIS_TAG" ]; then
docker tag wbaa/airlock-dev-apache-atlas:$DOCKER_TAG wbaa/airlock-dev-apache-atlas:latest;
docker push wbaa/airlock-dev-apache-atlas:latest;
docker tag wbaa/rokku-dev-apache-atlas:$DOCKER_TAG wbaa/rokku-dev-apache-atlas:latest;
docker push wbaa/rokku-dev-apache-atlas:latest;
fi
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[![Build Status](https://travis-ci.org/ing-bank/airlock-dev-apache-atlas.svg?branch=master)](https://travis-ci.org/ing-bank/airlock-dev-apache-atlas)
[![](https://images.microbadger.com/badges/image/wbaa/airlock-dev-apache-atlas:latest.svg)](https://microbadger.com/images/wbaa/airlock-dev-apache-atlas:latest)
[![Build Status](https://travis-ci.org/ing-bank/rokku-dev-apache-atlas.svg?branch=master)](https://travis-ci.org/ing-bank/rokku-dev-apache-atlas)
[![](https://images.microbadger.com/badges/image/wbaa/rokku-dev-apache-atlas:latest.svg)](https://microbadger.com/images/wbaa/rokku-dev-apache-atlas:latest)


# Airlock Dev - Apache Atlas
# Rokku Dev - Apache Atlas

## Background

Expand All @@ -25,7 +25,7 @@ As base image Centos 7 has been used
http://localhost:21000
```

or verify that server is up and running using
Or verify that server is up and running using
```
curl -u admin:admin http://localhost:21000/api/atlas/admin/version
```
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ services:

atlas-server:
build: .
image: wbaa/airlock-dev-apache-atlas
image: wbaa/rokku-dev-apache-atlas
ports:
- "21000:21000"
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion model/typedef-client_process.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"superTypes" : [ "Process" ],
"category" : "ENTITY",
"name" : "airlock_client",
"name" : "rokku_client",
"description" : "a type definition for AWS tools",
"typeVersion" : "1.1",
"attributeDefs" : [
Expand Down
4 changes: 2 additions & 2 deletions resources/atlas-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ if [ "$start_timeout_exceeded" = "false" ]; then
printf "\nclassifications type created\n"

# Setup atlas services
printf "Creating airlock_client type... \n"
printf "Creating rokku_client type... \n"
curl -i -X POST -H 'Content-Type: application/json' -H 'Accept: application/json' -u admin:admin 'http://localhost:21000/api/atlas/v2/types/typedefs' -d @/tmp/model/typedef-client_process.json
printf "\nairlock_client created\n"
printf "\nrokku_client created\n"

sleep 15
echo "Done setting up Atlas types "
Expand Down

0 comments on commit 6848cc7

Please sign in to comment.