Merge branch v2.6 into v2.7

This commit is contained in:
Tom Moulard
2022-04-21 10:59:46 +02:00
145 changed files with 1187 additions and 502 deletions

View File

@@ -3,7 +3,7 @@ FROM golang:1.17
ARG USER=$USER
ARG UID=$UID
ARG GID=$GID
RUN useradd -m ${USER} --uid=${UID} && echo "${USER}:" chpasswd
RUN useradd -l -m ${USER} --uid=${UID} && echo "${USER}:" chpasswd
USER ${UID}:${GID}
ARG KUBE_VERSION