Skip to content

Instantly share code, notes, and snippets.

@gcavalcante8808
Created March 5, 2020 09:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gcavalcante8808/b62a5548a376acf5a8567a4db2a67c0d to your computer and use it in GitHub Desktop.
Save gcavalcante8808/b62a5548a376acf5a8567a4db2a67c0d to your computer and use it in GitHub Desktop.
K3s with NFS Tools support
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