revert back to /tiller

when running `helm init --upgrade`, the entrypoint since v2.9.1 changed which
caused tiller to never start. Kubernetes may be holding onto the same entrypoint
during upgrades.
pull/4415/head
Matthew Fisher 6 years ago
parent bda27b6f2a
commit cfbc1744c7
No known key found for this signature in database
GPG Key ID: 92AA783CBAAE8E3B

@ -18,10 +18,10 @@ RUN apk update && apk add ca-certificates socat && rm -rf /var/cache/apk/*
ENV HOME /tmp ENV HOME /tmp
COPY helm /bin/helm COPY helm /helm
COPY tiller /bin/tiller COPY tiller /tiller
EXPOSE 44134 EXPOSE 44134
USER nobody USER nobody
ENTRYPOINT ["/bin/tiller"] ENTRYPOINT ["/tiller"]

@ -18,9 +18,9 @@ RUN apk update && apk add ca-certificates && rm -rf /var/cache/apk/*
ENV HOME /tmp ENV HOME /tmp
COPY tiller /bin/tiller COPY tiller /tiller
EXPOSE 44134 EXPOSE 44134
USER nobody USER nobody
ENTRYPOINT ["/bin/tiller", "--experimental-release"] ENTRYPOINT ["/tiller", "--experimental-release"]

Loading…
Cancel
Save