-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
271 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: "Setup" | ||
description: "install docker and qemu" | ||
inputs: | ||
root: | ||
description: | | ||
Project root directory. | ||
Default '.' | ||
default: '.' | ||
runs: | ||
using: composite | ||
steps: | ||
- uses: docker/setup-qemu-action@v3 | ||
with: | ||
platforms: amd64,arm64 | ||
- uses: docker/setup-buildx-action@v3 | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
FROM debian:11-slim as builder | ||
|
||
COPY . / | ||
|
||
RUN /build.sh | ||
|
||
# Use a multi-stage build | ||
FROM debian:11-slim | ||
|
||
ENV PATH=$PATH:/usr/local/luajit/bin:/usr/local/nginx/sbin:/usr/local/nginx/bin | ||
|
||
ENV LUA_PATH="/usr/local/share/luajit-2.1.0-beta3/?.lua;/usr/local/share/lua/5.1/?.lua;/usr/local/lib/lua/?.lua;;" | ||
ENV LUA_CPATH="/usr/local/lib/lua/?/?.so;/usr/local/lib/lua/?.so;;" | ||
|
||
COPY --from=builder /usr/local /usr/local | ||
COPY --from=builder /opt /opt | ||
COPY --from=builder /etc/nginx /etc/nginx | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends \ | ||
bash \ | ||
util-linux \ | ||
libpcre3 \ | ||
libpcre3-dev \ | ||
zlib1g \ | ||
zlib1g-dev \ | ||
libmaxminddb-dev \ | ||
libxslt1-dev \ | ||
libgeoip-dev \ | ||
ca-certificates \ | ||
patch \ | ||
libaio-dev \ | ||
lmdb-utils \ | ||
libcurlpp-dev \ | ||
libprotobuf-dev \ | ||
libyajl-dev \ | ||
libxml2 libxml2-dev \ | ||
libmaxminddb-dev \ | ||
libyaml-cpp-dev \ | ||
coreutils \ | ||
tzdata \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& ln -s /usr/local/nginx/sbin/nginx /sbin/nginx \ | ||
&& bash -eu -c ' \ | ||
writeDirs=( \ | ||
/var/log/nginx \ | ||
/var/lib/nginx/body \ | ||
/var/lib/nginx/fastcgi \ | ||
/var/lib/nginx/proxy \ | ||
/var/lib/nginx/scgi \ | ||
/var/lib/nginx/uwsgi \ | ||
/var/log/audit \ | ||
); \ | ||
for dir in "${writeDirs[@]}"; do \ | ||
mkdir -p ${dir}; \ | ||
chown -R www-data.www-data ${dir}; \ | ||
done' | ||
|
||
EXPOSE 80 443 | ||
|
||
CMD ["nginx", "-g", "daemon off;"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
ARG BASE_IMAGE | ||
|
||
FROM ${BASE_IMAGE} | ||
|
||
ARG TARGETARCH | ||
ARG VERSION | ||
ARG COMMIT_SHA | ||
ARG BUILD_ID=UNSET | ||
|
||
LABEL org.opencontainers.image.title="NGINX Ingress Controller for Kubernetes" | ||
LABEL org.opencontainers.image.documentation="https://kubernetes.github.io/ingress-nginx/" | ||
LABEL org.opencontainers.image.source="https://github.com/kubernetes/ingress-nginx" | ||
LABEL org.opencontainers.image.vendor="The Kubernetes Authors" | ||
LABEL org.opencontainers.image.licenses="Apache-2.0" | ||
LABEL org.opencontainers.image.version="${VERSION}" | ||
LABEL org.opencontainers.image.revision="${COMMIT_SHA}" | ||
|
||
LABEL build_id="${BUILD_ID}" | ||
|
||
WORKDIR /etc/nginx | ||
|
||
COPY --chown=www-data:www-data etc /etc | ||
|
||
COPY --chown=www-data:www-data bin/${TARGETARCH}/dbg / | ||
COPY --chown=www-data:www-data bin/${TARGETARCH}/nginx-ingress-controller / | ||
COPY --chown=www-data:www-data bin/${TARGETARCH}/wait-shutdown / | ||
|
||
|
||
# Fix permission during the build to avoid issues at runtime | ||
# with volumes (custom templates) | ||
RUN bash -xeu -c ' \ | ||
writeDirs=( \ | ||
/etc/ingress-controller \ | ||
/etc/ingress-controller/ssl \ | ||
/etc/ingress-controller/auth \ | ||
/var/log \ | ||
/var/log/nginx \ | ||
/tmp/nginx \ | ||
); \ | ||
for dir in "${writeDirs[@]}"; do \ | ||
mkdir -p ${dir}; \ | ||
chown -R www-data.www-data ${dir}; \ | ||
done' | ||
|
||
# LD_LIBRARY_PATH does not work so below is needed for opentelemetry/other modules | ||
# Put libs of newer modules under `/modules_mount/<other>/lib` and add that path below | ||
# Could get complicated arch specific paths become a need | ||
#&& echo "/lib:/usr/lib:/usr/local/lib:/modules_mount/etc/nginx/modules/otel" > /etc/ld-musl-x86_64.path | ||
|
||
ENV LD_LIBRARY_PATH=/lib:/usr/lib:/usr/local/lib:/modules_mount/etc/nginx/modules/otel | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y --no-install-recommends dumb-init diffutils libcap2-bin \ | ||
&& setcap cap_net_bind_service=+ep /nginx-ingress-controller \ | ||
&& setcap -v cap_net_bind_service=+ep /nginx-ingress-controller \ | ||
&& setcap cap_net_bind_service=+ep /usr/local/nginx/sbin/nginx \ | ||
&& setcap -v cap_net_bind_service=+ep /usr/local/nginx/sbin/nginx \ | ||
&& setcap cap_net_bind_service=+ep /usr/bin/dumb-init \ | ||
&& setcap -v cap_net_bind_service=+ep /usr/bin/dumb-init \ | ||
&& ln -sf /usr/local/nginx/sbin/nginx /usr/bin/nginx \ | ||
&& ln -sf /dev/stdout /var/log/nginx/access.log \ | ||
&& ln -sf /dev/stderr /var/log/nginx/error.log \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
USER www-data | ||
|
||
ENTRYPOINT ["/usr/bin/dumb-init", "--"] | ||
|
||
CMD ["/nginx-ingress-controller"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.