forked from istio/istio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathe2e-simpleTests-cni.sh
executable file
·39 lines (32 loc) · 1.31 KB
/
e2e-simpleTests-cni.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/bash
# Copyright 2018 Istio Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#######################################
# #
# e2e-simpleTest-cni #
# #
#######################################
# Exit immediately for non zero status
set -e
# Check unset variables
set -u
# Print commands
set -x
echo 'Running e2e_simple test with rbac, auth Tests and CNI enabled'
export ENABLE_ISTIO_CNI=true
# only gke-e2e-test-latest is enabled for Networkpolicy and Calico
export RESOURCE_TYPE="gke-e2e-test-latest"
# TODO - When the inline kube inject code defaults to using the configmap this setting can be removed.
export E2E_ARGS+=" --kube_inject_configmap=istio-sidecar-injector"
./prow/e2e-suite.sh --auth_enable --single_test e2e_simple "$@"