You've already forked haproxy-ingress
mirror of
https://github.com/encounter/haproxy-ingress.git
synced 2026-03-30 11:12:55 -07:00
8149e7298f
Starting implementation of OAuth2 support. An oauth2 proxy should be configured as a deployment+service to make the OAuth handshake and sign a token. The current implementation uses Bitly’s `oauth2_proxy`.
29 lines
1.1 KiB
Docker
29 lines
1.1 KiB
Docker
# Copyright 2017 The Kubernetes Authors. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
FROM haproxy:1.8-alpine
|
|
RUN apk --no-cache add socat openssl lua5.3 lua-socket
|
|
|
|
# dumb-init kindly manages SIGCHLD from forked HAProxy processes
|
|
ARG DUMB_INIT_SHA256=81231da1cd074fdc81af62789fead8641ef3f24b6b07366a1c34e5b059faf363
|
|
RUN wget -O/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.0/dumb-init_1.2.0_amd64\
|
|
&& echo "$DUMB_INIT_SHA256 /dumb-init" | sha256sum -c -\
|
|
&& chmod +x /dumb-init \
|
|
&& mkdir /ingress-controller
|
|
|
|
COPY . /
|
|
|
|
STOPSIGNAL SIGTERM
|
|
ENTRYPOINT ["/dumb-init", "--", "/start.sh"]
|