44 lines
2.1 KiB
Docker
44 lines
2.1 KiB
Docker
#
|
|
# This is the HAProxy router for OpenShift Origin.
|
|
#
|
|
# The standard name for this image is openshift/origin-haproxy-router
|
|
#
|
|
FROM registry.fedoraproject.org/f28/origin:latest
|
|
|
|
ENV NAME=origin-haproxy-router \
|
|
VERSION=3.9 \
|
|
ARCH=x86_64
|
|
|
|
RUN INSTALL_PKGS="haproxy" && \
|
|
dnf install -y $INSTALL_PKGS && \
|
|
rpm -V $INSTALL_PKGS && \
|
|
dnf clean all && \
|
|
mkdir -p /var/lib/haproxy/router/{certs,cacerts} && \
|
|
mkdir -p /var/lib/haproxy/{conf,run,bin,log} && \
|
|
touch /var/lib/haproxy/conf/{{os_http_be,os_edge_reencrypt_be,os_tcp_be,os_sni_passthrough,os_route_http_redirect,cert_config,os_wildcard_domain}.map,haproxy.config} && \
|
|
setcap 'cap_net_bind_service=ep' /usr/sbin/haproxy && \
|
|
chown -R :0 /var/lib/haproxy && \
|
|
chmod -R g+w /var/lib/haproxy
|
|
|
|
COPY . /var/lib/haproxy/
|
|
|
|
LABEL io.k8s.display-name="OpenShift Origin HAProxy Router" \
|
|
io.k8s.description="This is a component of OpenShift Origin and contains an HAProxy instance that automatically exposes services within the cluster through routes, and offers TLS termination, reencryption, or SNI-passthrough on ports 80 and 443." \
|
|
io.openshift.tags="openshift,router,haproxy" \
|
|
summary="This is a component of OpenShift Origin and contains an HAProxy instance that automatically exposes services within the cluster through routes, and offers TLS termination, reencryption, or SNI-passthrough on ports 80 and 443." \
|
|
maintainer="Jakub Cajka <jcajka@fedoraproject.org>" \
|
|
License="GPLv2+" \
|
|
name="$FGC/$NAME" \
|
|
com.redhat.component="origin-haproxy-router" \
|
|
version="$VERSION" \
|
|
architecture="$ARCH" \
|
|
usage="This is a component of OpenShift Origin and contains an HAProxy instance that automatically exposes services within the cluster through routes, and offers TLS termination, reencryption, or SNI-passthrough on ports 80 and 443."
|
|
|
|
COPY README.md README.md
|
|
|
|
USER 1001
|
|
EXPOSE 80 443
|
|
WORKDIR /var/lib/haproxy/conf
|
|
ENV TEMPLATE_FILE=/var/lib/haproxy/conf/haproxy-config.template \
|
|
RELOAD_SCRIPT=/var/lib/haproxy/reload-haproxy
|
|
ENTRYPOINT ["/usr/bin/openshift-router"]
|