Skip to content

Commit 8be1033

Browse files
committed
Merge pull request #40 from totem/develop
0.3.5 Release
2 parents c5f122d + 048de62 commit 8be1033

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN apt-get update --fix-missing && apt-get install -y \
88
&& apt-get clean \
99
&& rm -rf /var/cache/apt/archives/* /var/lib/apt/lists/*
1010

11-
#Etcdctl
11+
# Etcdctl
1212
ENV ETCDCTL_VERSION v0.4.6
1313
RUN curl -L https://github.com/coreos/etcd/releases/download/$ETCDCTL_VERSION/etcd-$ETCDCTL_VERSION-linux-amd64.tar.gz -o /tmp/etcd-$ETCDCTL_VERSION-linux-amd64.tar.gz && \
1414
cd /tmp && gzip -dc etcd-$ETCDCTL_VERSION-linux-amd64.tar.gz | tar -xof - && \
@@ -21,13 +21,13 @@ RUN pip install supervisor==3.1.2 supervisor-stdout
2121
ADD requirements.txt /opt/requirements.txt
2222
RUN pip install -r /opt/requirements.txt
2323

24-
#Supervisor Config
24+
# Supervisor Config
2525
RUN mkdir -p /var/log/supervisor
2626
ADD bin/supervisord-wrapper.sh /usr/sbin/supervisord-wrapper.sh
2727
RUN chmod +x /usr/sbin/supervisord-wrapper.sh && \
2828
ln -sf /etc/supervisor/supervisord.conf /etc/supervisord.conf
2929

30-
#Etc Config
30+
# Etc Config
3131
ADD etc /etc
3232

3333
ADD . /opt/cluster-orchestrator

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ sudo docker run -it --rm -h cluster-orchestrator-${USER} --name cluster-orchestr
8787
| Env Variable | Description | Default Value (Local) | Default Value (Docker)|
8888
| ------------ | ----------- | ---------------------- | --------------------- |
8989
| QUAY_ORGANIZATION | Organization in quay to pull images from | totem | totem|
90-
| ETCD_HOST | Etcd server host. | 127.0.0.1 | 172.17.42.1 |
90+
| HOST_IP | HOST IP address | 127.0.0.1 | Determined using default route in routing table|
91+
| ETCD_HOST | Etcd server host. | 127.0.0.1 | ${HOST_IP} |
9192
| ETCD_PORT | Etcd server port. | 4001 | 4001 |
9293
| ETCD_TOTEM_BASE | Base path for totem configurations | /totem | /totem |
9394
| API_EXECUTORS | No. of uwsgi processes to be created for serving API | Not Used | 2 |

orchestrator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from celery.signals import setup_logging
33
import orchestrator.logger
44

5-
__version__ = '0.3.5'
5+
__version__ = '0.3.6'
66
__author__ = 'sukrit'
77

88
orchestrator.logger.init_logging()

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ Jinja2==2.7.3
1212
requests[security]==2.7.0
1313
urllib3==1.11
1414
https://github.com/sukrit007/celery/archive/3.1.tar.gz
15-
https://github.com/totem/flask-hyperschema/archive/master.tar.gz
15+
https://github.com/totem/flask-hyperschema/archive/v0.1.1.tar.gz
1616
https://github.com/totem/totem-encrypt/archive/master.tar.gz
1717
https://github.com/dlitz/pycrypto/archive/v2.7a1.tar.gz

0 commit comments

Comments
 (0)