File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed
Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff 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
1212ENV ETCDCTL_VERSION v0.4.6
1313RUN 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
2121ADD requirements.txt /opt/requirements.txt
2222RUN pip install -r /opt/requirements.txt
2323
24- # Supervisor Config
24+ # Supervisor Config
2525RUN mkdir -p /var/log/supervisor
2626ADD bin/supervisord-wrapper.sh /usr/sbin/supervisord-wrapper.sh
2727RUN chmod +x /usr/sbin/supervisord-wrapper.sh && \
2828 ln -sf /etc/supervisor/supervisord.conf /etc/supervisord.conf
2929
30- # Etc Config
30+ # Etc Config
3131ADD etc /etc
3232
3333ADD . /opt/cluster-orchestrator
Original file line number Diff line number Diff 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 |
Original file line number Diff line number Diff line change 22from celery .signals import setup_logging
33import orchestrator .logger
44
5- __version__ = '0.3.5 '
5+ __version__ = '0.3.6 '
66__author__ = 'sukrit'
77
88orchestrator .logger .init_logging ()
Original file line number Diff line number Diff line change @@ -12,6 +12,6 @@ Jinja2==2.7.3
1212requests [security ]== 2.7.0
1313urllib3 == 1.11
1414https://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
1616https://github.com/totem/totem-encrypt/archive/master.tar.gz
1717https://github.com/dlitz/pycrypto/archive/v2.7a1.tar.gz
You can’t perform that action at this time.
0 commit comments