Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bumped Fission dependency to 0.11.0 #220

Merged
merged 1 commit into from
Oct 7, 2018
Merged
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
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.10.0
- FISSION_VERSION=0.11.0
- HELM_VERSION=2.11.0

services:
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.10.0/fission-all-0.10.0.tgz
fission fn list || helm install --name fission --debug --namespace fission --set "analytics=false,serviceType=NodePort" https://github.com/fission/fission/releases/download/0.11.0/fission-all-0.11.0.tgz
for i in {1..5}; do fission fn list && break || sleep 5; done

# Install newest version of fission workflows
Expand Down
31 changes: 28 additions & 3 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.10.0
version: ^0.11.0
- package: github.com/sirupsen/logrus
version: v1.0.5
- 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.10.0}
FISSION_VERSION=${FISSION_VERSION:-0.11.0}
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 @@ -6,7 +6,7 @@ set -euo pipefail

BIN_DIR=${BIN_DIR:-/tmp/fission-workflow-ci/bin}
HELM_VERSION=${HELM_VERSION:-2.11.0}
FISSION_VERSION=${FISSION_VERSION:-0.10.0}
FISSION_VERSION=${FISSION_VERSION:-0.11.0}

# Install kubectl
if ! kubectl version ; 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.10.0}
FISSION_VERSION=${FISSION_VERSION:-0.11.0}
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.10.0}
FISSION_VERSION=${FISSION_VERSION:-0.11.0}
fissionHelmId=fission
fissionWorkflowsHelmId=fission-workflows
NS=fission
Expand Down