Skip to content

Commit

Permalink
Merge pull request #166 from fission/fission-0.9.1-dep
Browse files Browse the repository at this point in the history
Updated Fission dependency to 0.9.1
  • Loading branch information
erwinvaneyk authored Jul 13, 2018
2 parents 790d61d + bdcfbe9 commit d7a7167
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:
- KUBECONFIG=${HOME}/.kube/config
- PATH=/tmp/fission-workflow-ci/bin:${PATH}
- BIN_DIR=/tmp/fission-workflow-ci/bin
- FISSION_VERSION=0.7.2
- FISSION_VERSION=0.9.1
- HELM_VERSION=2.8.2
- KUBECTL_VERSION=1.9.6

Expand Down
2 changes: 1 addition & 1 deletion examples/demo-kubecon2018/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ helm list || helm init --wait
for i in {1..5}; do helm list && break || sleep 5; done

# Install Fission
fission fn list || helm install --name fission --debug --namespace fission --set "analytics=false,serviceType=NodePort" https://github.com/fission/fission/releases/download/0.7.2/fission-all-0.7.2.tgz
fission fn list || helm install --name fission --debug --namespace fission --set "analytics=false,serviceType=NodePort" https://github.com/fission/fission/releases/download/0.9.1/fission-all-0.9.1.tgz
for i in {1..5}; do fission fn list && break || sleep 5; done

# Install newest version of fission workflows
Expand Down
20 changes: 10 additions & 10 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion glide.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ excludeDirs:
- local
import:
- package: github.com/fission/fission
version: ^0.7.2
version: ^0.9.1
- package: github.com/sirupsen/logrus
version: ~1.0.4
- package: github.com/urfave/cli
Expand Down
2 changes: 1 addition & 1 deletion hack/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#

# Configs
FISSION_VERSION=${FISSION_VERSION:-0.7.2}
FISSION_VERSION=${FISSION_VERSION:-0.9.1}
WORKFLOWS_VERSION=${WORKFLOWS_VERSION:-0.5.0}
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

Expand Down
2 changes: 1 addition & 1 deletion test/e2e/install-clients.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set -euo pipefail
BIN_DIR=${BIN_DIR:-/tmp/fission-workflow-ci/bin}
HELM_VERSION=${HELM_VERSION:-2.8.2}
KUBECTL_VERSION=${KUBECTL_VERSION:-1.9.6}
FISSION_VERSION=${FISSION_VERSION:-0.7.2}
FISSION_VERSION=${FISSION_VERSION:-0.9.1}

# Install kubectl
if ! kubectl version -c 2>/dev/null | grep ${KUBECTL_VERSION} >/dev/null; then
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/minikube-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -eu
. $(dirname $0)/utils.sh

BIN_DIR=/tmp/fission-workflow-ci/bin
FISSION_VERSION=${FISSION_VERSION:-0.7.2}
FISSION_VERSION=${FISSION_VERSION:-0.9.1}
fissionHelmId=fission
fissionWorkflowsHelmId=fission-workflows
NS=fission
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/travis-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -eu
. $(dirname $0)/utils.sh

BIN_DIR=/tmp/fission-workflow-ci/bin
FISSION_VERSION=${FISSION_VERSION:-0.7.2}
FISSION_VERSION=${FISSION_VERSION:-0.9.1}
fissionHelmId=fission
fissionWorkflowsHelmId=fission-workflows
NS=fission
Expand Down

0 comments on commit d7a7167

Please sign in to comment.