File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 11FROM alpine:3.6
22LABEL maintainer="Igor Zibarev <zibarev.i@gmail.com>"
33
4+ COPY entrypoint.sh /
5+
46ENV KUBECTL_VERSION v1.8.3
57ENV HELM_VERSION 2.7.2
68ENV HELM_FILENAME helm-v${HELM_VERSION}-linux-amd64.tar.gz
@@ -18,4 +20,5 @@ RUN set -ex \
1820
1921RUN helm init --client-only
2022
23+ ENTRYPOINT ["/entrypoint.sh" ]
2124CMD ["helm" ]
Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ deploy-staging:
3535 --namespace="${KUBE_NAMESPACE}"
3636 - kubectl config use-context ${KUBE_NAME}
3737 script :
38- - helm init --client-only
3938 - helm install release-name chart/name --namespace ${KUBE_NAMESPACE}
4039
4140...
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env sh
2+
3+ helm repo update
4+ exec $@
You can’t perform that action at this time.
0 commit comments