Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
FROM alpine:3.6
LABEL maintainer="Igor Zibarev <zibarev.i@gmail.com>"

COPY entrypoint.sh /

ENV KUBECTL_VERSION v1.8.3
ENV HELM_VERSION 2.7.2
ENV HELM_FILENAME helm-v${HELM_VERSION}-linux-amd64.tar.gz
Expand All @@ -18,4 +20,5 @@ RUN set -ex \

RUN helm init --client-only

ENTRYPOINT ["/entrypoint.sh"]
CMD ["helm"]
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ deploy-staging:
--namespace="${KUBE_NAMESPACE}"
- kubectl config use-context ${KUBE_NAME}
script:
- helm init --client-only
- helm install release-name chart/name --namespace ${KUBE_NAMESPACE}

...
Expand Down
4 changes: 4 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh

helm repo update > /dev/null
exec $@