Skip to content

Commit

Permalink
Upgrade releases (#108)
Browse files Browse the repository at this point in the history
* Upgrade releases

* change goofys versioning scheme
  • Loading branch information
osterman authored Mar 27, 2018
1 parent 83da940 commit 3edddad
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ services:
- docker
install:
- make init
- make travis:docker-login
- make travis/docker-login

script:
- make deps
- make lint
- make docker:build
- make docker/build

after_success:
- make travis:docker-tag-and-push
- make travis/docker-tag-and-push

deploy:
# Deploy to dev (branch)
Expand Down
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ RUN curl --fail -sSL -o /usr/local/bin/github-commenter https://github.com/cloud
&& chmod +x /usr/local/bin/github-commenter

# Install gomplate
ENV GOMPLATE_VERSION 2.2.0
ENV GOMPLATE_VERSION 2.4.0
RUN curl --fail -sSL -o /usr/local/bin/gomplate https://github.com/hairyhenderson/gomplate/releases/download/v${GOMPLATE_VERSION}/gomplate_linux-amd64-slim \
&& chmod +x /usr/local/bin/gomplate

# Install Terraform
ENV TERRAFORM_VERSION 0.11.2
ENV TERRAFORM_VERSION 0.11.5
RUN curl --fail -sSL -O https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip \
&& unzip terraform_${TERRAFORM_VERSION}_linux_amd64.zip \
&& rm terraform_${TERRAFORM_VERSION}_linux_amd64.zip \
Expand Down Expand Up @@ -76,8 +76,8 @@ ENV NODE_MAX_SIZE 2
ENV NODE_MIN_SIZE 2

# Install helm
ENV HELM_VERSION 2.7.2
ENV HELM_GITHUB_VERSION 0.1.0
ENV HELM_VERSION 2.8.2
ENV HELM_GITHUB_VERSION 0.2.0
ENV HELM_HOME /var/lib/helm
RUN curl --fail -sSL -O http://storage.googleapis.com/kubernetes-helm/helm-v${HELM_VERSION}-linux-amd64.tar.gz \
&& tar -zxf helm-v${HELM_VERSION}-linux-amd64.tar.gz \
Expand Down Expand Up @@ -114,7 +114,7 @@ RUN curl --fail -sSL -o /etc/profile.d/aws-assume-role.sh https://raw.githubuser
&& chmod +x /etc/profile.d/aws-assume-role.sh

# Install goofys
ENV GOOFYS_VERSION 0.0.18
ENV GOOFYS_VERSION 0.19.0
RUN curl --fail -sSL -o /usr/local/bin/goofys https://github.com/kahing/goofys/releases/download/v${GOOFYS_VERSION}/goofys \
&& chmod +x /usr/local/bin/goofys

Expand Down

0 comments on commit 3edddad

Please sign in to comment.