Created
March 5, 2020 09:11
-
-
Save gcavalcante8808/b62a5548a376acf5a8567a4db2a67c0d to your computer and use it in GitHub Desktop.
K3s with NFS Tools support
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
FROM rancher/k3s:v1.0.0 as base | |
# https://github.com/rancher/k3s/issues/390 | |
# Because of the above issue, we want to add | |
# some software into our container, and alpine | |
# is easier to work with than scratch. | |
FROM alpine:3.10 | |
# Do the same stuff in the k3s-scratch image's | |
# final stage. | |
# https://github.com/rancher/k3s/blob/master/package/Dockerfile | |
COPY --from=base /tmp /tmp | |
COPY --from=base /run /run | |
COPY --from=base /etc /etc | |
COPY --from=base /var /var | |
COPY --from=base /lib /lib | |
COPY --from=base /bin /bin | |
RUN chmod 1777 /tmp | |
VOLUME /var/lib/kubelet | |
VOLUME /var/lib/rancher/k3s | |
VOLUME /var/lib/cni | |
VOLUME /var/log | |
ENV PATH="$PATH:/bin/aux" | |
# Add our patch to enable Kubelet to act as NFS client | |
# so our pods can use NFS volumes | |
RUN apk add nfs-utils | |
RUN echo "#!/bin/sh" > /entrypoint && \ | |
echo -e '\ | |
rpcbind -f & \n\ | |
/bin/k3s $@' >> /entrypoint && chmod +x /entrypoint | |
ENTRYPOINT ["/entrypoint"] | |
CMD ["agent"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment