Update imagePullPolicy for unstable images

- Update imagePullPolicy from IfNotPresent to Always
  for all unstable images we are using in k8s template,
  because those images are updated regularly, we will
  keep it unstable until the official release.
- Use Tendermint v0.13 as base docker image, since our current
  integration is based out of v0.13
This commit is contained in:
Ahmed Muawia Khan 2018-02-22 11:56:58 +01:00
parent a8a10edf0e
commit 93e2b3bb4c
5 changed files with 5 additions and 5 deletions

View File

@ -13,7 +13,7 @@ spec:
containers:
- name: bigchaindb
image: bigchaindb/bigchaindb:unstable
imagePullPolicy: IfNotPresent
imagePullPolicy: Always
args:
- start
env:

View File

@ -22,7 +22,7 @@ spec:
containers:
- name: mongodb
image: bigchaindb/localmongodb:unstable
imagePullPolicy: IfNotPresent
imagePullPolicy: Always
env:
- name: MONGODB_FQDN
valueFrom:

View File

@ -13,7 +13,7 @@ spec:
containers:
- name: nginx
image: bigchaindb/nginx_http:unstable
imagePullPolicy: IfNotPresent
imagePullPolicy: Always
env:
- name: CLUSTER_FRONTEND_PORT
valueFrom:

View File

@ -13,7 +13,7 @@ spec:
containers:
- name: nginx
image: bigchaindb/nginx_https:unstable
imagePullPolicy: IfNotPresent
imagePullPolicy: Always
env:
- name: CLUSTER_FRONTEND_PORT
valueFrom:

View File

@ -1,4 +1,4 @@
FROM tendermint/tendermint:develop
FROM tendermint/tendermint:0.13
LABEL maintainer "dev@bigchaindb.com"
WORKDIR /
COPY genesis.json.template /etc/tendermint/genesis.json