diff --git a/.travis.yml b/.travis.yml index 25791ba0..72ad872a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: diff --git a/examples/demo-kubecon2018/setup.sh b/examples/demo-kubecon2018/setup.sh index b3cf0b27..2d931058 100755 --- a/examples/demo-kubecon2018/setup.sh +++ b/examples/demo-kubecon2018/setup.sh @@ -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 diff --git a/glide.lock b/glide.lock index 04073ccd..e0a9fb8f 100644 --- a/glide.lock +++ b/glide.lock @@ -1,5 +1,5 @@ -hash: 49cadf0f85ef216b6c1a32a1a827aba613f185dd86cbb6ffeaf1c836d2f09bee -updated: 2018-10-01T11:47:42.068117+02:00 +hash: 408c3b4ae68057f47cbae26b714552850e3b4430f389b26e9070ec6865a8893d +updated: 2018-10-05T20:56:35.002664+02:00 imports: - name: cloud.google.com/go version: 3b1ae45394a234c385be014e9a488f2bb6eef821 @@ -29,15 +29,24 @@ imports: version: 449fdfce4d962303d702fec724ef0ad181c92528 subpackages: - spdy +- name: github.com/dsnet/compress + version: cc9eb1d7ad760af14e8f918698f745e80377af4f + subpackages: + - bzip2 + - bzip2/internal/sais + - internal + - internal/errors + - internal/prefix - name: github.com/fatih/structs version: a720dfa8df582c51dee1b36feabb906bde1588bd - name: github.com/fission/fission - version: 95eef49cf8032dd9f9a2edcb985f91a7b1978e17 + version: ea4fee565b033d69a788110a34ee611887582d5d subpackages: - cache - controller/client - crd - executor/client + - fission/log - fission/plugin - pkg/apis/fission.io/v1 - redis @@ -79,6 +88,8 @@ imports: - ptypes/struct - ptypes/timestamp - ptypes/wrappers +- name: github.com/golang/snappy + version: 2e65f85255dbc3072edf28d6b5b8efc472979f5a - name: github.com/gomodule/redigo version: 2cd21d9966bf7ff9ae091419744f0b3fb0fecace subpackages: @@ -139,6 +150,8 @@ imports: version: fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a subpackages: - pbutil +- name: github.com/mholt/archiver + version: de0d89e255e17c8d75a40122055763e743ab0593 - name: github.com/modern-go/concurrent version: bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94 - name: github.com/modern-go/reflect2 @@ -159,11 +172,17 @@ imports: - util - name: github.com/nats-io/nuid version: 289cccf02c178dc782430d534e3c1f5b72af807f +- name: github.com/nwaples/rardecode + version: e06696f847aeda6f39a8f0b7cdff193b7690aef6 - name: github.com/opentracing/opentracing-go version: 1949ddbfd147afd4d964a9f00b24eb291e0e7c38 subpackages: - ext - log +- name: github.com/pierrec/lz4 + version: 635575b42742856941dbc767b44905bb9ba083f6 + subpackages: + - internal/xxh32 - name: github.com/pkg/errors version: 645ef00459ed84a119197bfb8d8205042c6df63d - name: github.com/pmezard/go-difflib @@ -237,6 +256,12 @@ imports: subpackages: - metrics - metrics/prometheus +- name: github.com/ulikunitz/xz + version: 636d36a76670e6c700f22fd5f4588679ff2896c4 + subpackages: + - internal/hash + - internal/xlog + - lzma - name: github.com/urfave/cli version: 0bdeddeeb0f650497d603c4ad7b20cfe685682f6 - name: golang.org/x/crypto diff --git a/glide.yaml b/glide.yaml index 974b10ff..912a08f8 100644 --- a/glide.yaml +++ b/glide.yaml @@ -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 diff --git a/hack/deploy.sh b/hack/deploy.sh index 1a6ad2ae..273166c5 100755 --- a/hack/deploy.sh +++ b/hack/deploy.sh @@ -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 )" diff --git a/test/e2e/install-clients.sh b/test/e2e/install-clients.sh index b8c44a7c..b00f292a 100755 --- a/test/e2e/install-clients.sh +++ b/test/e2e/install-clients.sh @@ -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 diff --git a/test/e2e/minikube-setup.sh b/test/e2e/minikube-setup.sh index 0b3fc6e9..adb1553a 100755 --- a/test/e2e/minikube-setup.sh +++ b/test/e2e/minikube-setup.sh @@ -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 diff --git a/test/e2e/travis-setup.sh b/test/e2e/travis-setup.sh index a6032de7..8f447ed5 100755 --- a/test/e2e/travis-setup.sh +++ b/test/e2e/travis-setup.sh @@ -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