Skip to content

Commit

Permalink
Last PR before the release of version 2.0 Alpha 5 (#2283)
Browse files Browse the repository at this point in the history
* Updated CHANGELOG.md for version 2.0 Alpha 5

* Updated image tags in k8s files for 2.0 Alpha 5

* Updated version.py for 2.0 Alpha 5

* Problem: Missing alpha5 image update for test network containers

* Problem: CHANGELOG not updated with 2284

* Problem: Liveness probe frequency change not the important
  • Loading branch information
ttmc committed May 11, 2018
1 parent bcfb577 commit aeaf9c9
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 15 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ For reference, the possible headings are:
* **External Contributors** to list contributors outside of BigchainDB GmbH.
* **Notes**

## [2.0 Alpha 5] - 2018-05-11

Tag name: v2.0.0a5

### Changed

To resolve [issue #2279](https://github.com/bigchaindb/bigchaindb/issues/2279), we made some changes to the `bigchaindb-abci` package (which is our fork of `py-abci`) and told BigchainDB to use the new version (`bigchaindb-abci==0.4.5`). [Pull request #2281](https://github.com/bigchaindb/bigchaindb/pull/2281).

## [2.0 Alpha 4] - 2018-05-09

Tag name: v2.0.0a4
Expand Down
4 changes: 2 additions & 2 deletions bigchaindb/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '2.0.0a4'
__short_version__ = '2.0a4'
__version__ = '2.0.0a5'
__short_version__ = '2.0a5'
6 changes: 3 additions & 3 deletions k8s/bigchaindb/bigchaindb-ss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ spec:
# Nginx container for hosting public key of this ndoe
- name: nginx
imagePullPolicy: Always
image: bigchaindb/nginx_pub_key_access:2.0.0-alpha3
image: bigchaindb/nginx_pub_key_access:2.0.0-alpha5
env:
- name: TM_PUB_KEY_ACCESS_PORT
valueFrom:
Expand All @@ -57,7 +57,7 @@ spec:
#Tendermint container
- name: tendermint
imagePullPolicy: Always
image: bigchaindb/tendermint:2.0.0-alpha3
image: bigchaindb/tendermint:2.0.0-alpha5
env:
- name: TM_PERSISTENT_PEERS
valueFrom:
Expand Down Expand Up @@ -154,7 +154,7 @@ spec:
timeoutSeconds: 15
# BigchainDB container
- name: bigchaindb
image: bigchaindb/bigchaindb:2.0.0-alpha4
image: bigchaindb/bigchaindb:2.0.0-alpha5
imagePullPolicy: Always
args:
- start
Expand Down
2 changes: 1 addition & 1 deletion k8s/dev-setup/bigchaindb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ spec:
terminationGracePeriodSeconds: 10
containers:
- name: bigchaindb
image: bigchaindb/bigchaindb:2.0.0-alpha4
image: bigchaindb/bigchaindb:2.0.0-alpha5
imagePullPolicy: Always
args:
- start
Expand Down
4 changes: 2 additions & 2 deletions k8s/mongodb/container/docker_build_and_push.bash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

docker build -t bigchaindb/localmongodb:2.0.0-alpha3 .
docker push bigchaindb/localmongodb:2.0.0-alpha3
docker build -t bigchaindb/localmongodb:2.0.0-alpha5 .
docker push bigchaindb/localmongodb:2.0.0-alpha5
2 changes: 1 addition & 1 deletion k8s/mongodb/mongo-ss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
terminationGracePeriodSeconds: 10
containers:
- name: mongodb
image: bigchaindb/localmongodb:2.0.0-alpha
image: bigchaindb/localmongodb:2.0.0-alpha5
imagePullPolicy: Always
env:
- name: MONGODB_FQDN
Expand Down
4 changes: 2 additions & 2 deletions k8s/nginx-http/container/docker_build_and_push.bash
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

docker build -t bigchaindb/nginx_http:2.0.0-alpha3 .
docker build -t bigchaindb/nginx_http:2.0.0-alpha5 .

docker push bigchaindb/nginx_http:2.0.0-alpha3
docker push bigchaindb/nginx_http:2.0.0-alpha5
2 changes: 1 addition & 1 deletion k8s/nginx-http/nginx-http-dep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ spec:
terminationGracePeriodSeconds: 10
containers:
- name: nginx
image: bigchaindb/nginx_http:2.0.0-alpha
image: bigchaindb/nginx_http:2.0.0-alpha5
imagePullPolicy: Always
env:
- name: NODE_FRONTEND_PORT
Expand Down
4 changes: 2 additions & 2 deletions k8s/nginx-https/container/docker_build_and_push.bash
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash

docker build -t bigchaindb/nginx_https:2.0.0-alpha3 .
docker build -t bigchaindb/nginx_https:2.0.0-alpha5 .

docker push bigchaindb/nginx_https:2.0.0-alpha3
docker push bigchaindb/nginx_https:2.0.0-alpha5
2 changes: 1 addition & 1 deletion k8s/nginx-https/nginx-https-dep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ spec:
terminationGracePeriodSeconds: 10
containers:
- name: nginx
image: bigchaindb/nginx_https:2.0.0-alpha3
image: bigchaindb/nginx_https:2.0.0-alpha5
imagePullPolicy: Always
env:
- name: NODE_FRONTEND_PORT
Expand Down

0 comments on commit aeaf9c9

Please sign in to comment.