Add etcd container
Change-Id: Ib5a853c0048a45d9085c55804580c7ed2fd0fc07 Partially-implements: bp kuryr-docker-plugin
This commit is contained in:
parent
29c542186b
commit
c096825075
25
docker/etcd/Dockerfile.j2
Normal file
25
docker/etcd/Dockerfile.j2
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
||||||
|
MAINTAINER {{ maintainer }}
|
||||||
|
|
||||||
|
{% import "macros.j2" as macros with context %}
|
||||||
|
|
||||||
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
||||||
|
{% set etcd_packages = ['etcd'] %}
|
||||||
|
{% elif base_distro in ['ubuntu', 'debian'] %}
|
||||||
|
{% set etcd_packages = ['etcd'] %}
|
||||||
|
{% endif %}
|
||||||
|
{{ macros.install_packages(etcd_packages | customizable("packages")) }}
|
||||||
|
|
||||||
|
COPY etcd_sudoers /etc/sudoers.d/etcd_sudoers
|
||||||
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
||||||
|
|
||||||
|
RUN chmod 755 /usr/local/bin/kolla_extend_start \
|
||||||
|
&& chmod 750 /etc/sudoers.d \
|
||||||
|
&& chmod 440 /etc/sudoers.d/etcd_sudoers \
|
||||||
|
&& usermod -a -G kolla etcd
|
||||||
|
|
||||||
|
{% block etcd_footer %}{% endblock %}
|
||||||
|
{% block footer %}{% endblock %}
|
||||||
|
{{ include_footer }}
|
||||||
|
|
||||||
|
USER etcd
|
1
docker/etcd/etcd_sudoers
Normal file
1
docker/etcd/etcd_sudoers
Normal file
@ -0,0 +1 @@
|
|||||||
|
%kolla ALL=(root) NOPASSWD: /usr/bin/chown etcd\: /var/lib/etcd/, /bin/chown etcd\: /var/lib/etcd/
|
8
docker/etcd/extend_start.sh
Normal file
8
docker/etcd/extend_start.sh
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Bootstrap and exit if KOLLA_BOOTSTRAP variable is set. This catches all cases
|
||||||
|
# of the KOLLA_BOOTSTRAP variable being set, including empty.
|
||||||
|
if [[ "${!KOLLA_BOOTSTRAP[@]}" ]]; then
|
||||||
|
sudo chown etcd: /var/lib/etcd/
|
||||||
|
exit 0
|
||||||
|
fi
|
@ -34,7 +34,7 @@ INSTALL_TYPE_CHOICES = ['binary', 'source', 'rdo', 'rhos']
|
|||||||
|
|
||||||
_PROFILE_OPTS = [
|
_PROFILE_OPTS = [
|
||||||
cfg.ListOpt('infra',
|
cfg.ListOpt('infra',
|
||||||
default=['ceph', 'cron', 'mariadb', 'haproxy',
|
default=['ceph', 'cron', 'etcd', 'mariadb', 'haproxy',
|
||||||
'keepalived', 'kolla-toolbox', 'memcached',
|
'keepalived', 'kolla-toolbox', 'memcached',
|
||||||
'mongodb', 'openvswitch', 'rabbitmq', 'heka'],
|
'mongodb', 'openvswitch', 'rabbitmq', 'heka'],
|
||||||
help='Infra images'),
|
help='Infra images'),
|
||||||
|
3
releasenotes/notes/etcd-dockerfile-69b8bfc1df4bb2ab.yaml
Normal file
3
releasenotes/notes/etcd-dockerfile-69b8bfc1df4bb2ab.yaml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
features:
|
||||||
|
- Add etcd docker container
|
Loading…
Reference in New Issue
Block a user