mirror of https://github.com/istio/istio.io.git
Update multicluster test kind image (#11337)
* Update multicluster test kind image * Fix linting errors * Restore make gen temporarily until reall common-files update can happen
This commit is contained in:
parent
666348d636
commit
3a18e15028
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# shellcheck disable=SC2034
|
# shellcheck disable=SC2034,SC2154
|
||||||
|
|
||||||
# Copyright Istio Authors
|
# Copyright Istio Authors
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# shellcheck disable=SC2034
|
# shellcheck disable=SC2034,SC2154
|
||||||
|
|
||||||
# Copyright Istio Authors
|
# Copyright Istio Authors
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# shellcheck disable=SC2034
|
# shellcheck disable=SC2034,SC2154
|
||||||
|
|
||||||
# Copyright Istio Authors
|
# Copyright Istio Authors
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# shellcheck disable=SC2034
|
# shellcheck disable=SC2034,SC2154
|
||||||
|
|
||||||
# Copyright Istio Authors
|
# Copyright Istio Authors
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# shellcheck disable=SC2034
|
# shellcheck disable=SC2034,SC2154
|
||||||
|
|
||||||
# Copyright Istio Authors
|
# Copyright Istio Authors
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# shellcheck disable=SC2034
|
# shellcheck disable=SC2034,SC2154
|
||||||
|
|
||||||
# Copyright Istio Authors
|
# Copyright Istio Authors
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# shellcheck disable=SC2034
|
# shellcheck disable=SC2034,SC2154
|
||||||
|
|
||||||
# Copyright Istio Authors
|
# Copyright Istio Authors
|
||||||
#
|
#
|
||||||
|
|
|
@ -44,6 +44,11 @@ linters-settings:
|
||||||
# put imports beginning with prefix after 3rd-party packages;
|
# put imports beginning with prefix after 3rd-party packages;
|
||||||
# it's a comma-separated list of prefixes
|
# it's a comma-separated list of prefixes
|
||||||
local-prefixes: istio.io/
|
local-prefixes: istio.io/
|
||||||
|
gci:
|
||||||
|
sections:
|
||||||
|
- standard
|
||||||
|
- default
|
||||||
|
- prefix(istio.io/)
|
||||||
|
|
||||||
issues:
|
issues:
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# shellcheck disable=SC2034
|
# shellcheck disable=SC2034,SC2154
|
||||||
|
|
||||||
# Copyright Istio Authors
|
# Copyright Istio Authors
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# shellcheck disable=SC2034
|
# shellcheck disable=SC2034,SC2154
|
||||||
|
|
||||||
# Copyright Istio Authors
|
# Copyright Istio Authors
|
||||||
#
|
#
|
||||||
|
|
|
@ -86,7 +86,7 @@ while (( "$#" )); do
|
||||||
done
|
done
|
||||||
|
|
||||||
export IP_FAMILY="${IP_FAMILY:-ipv4}"
|
export IP_FAMILY="${IP_FAMILY:-ipv4}"
|
||||||
export NODE_IMAGE="gcr.io/istio-testing/kind-node:v1.20.5"
|
export NODE_IMAGE="gcr.io/istio-testing/kind-node:v1.21.1"
|
||||||
|
|
||||||
if [[ -z "${SKIP_SETUP:-}" ]]; then
|
if [[ -z "${SKIP_SETUP:-}" ]]; then
|
||||||
export ARTIFACTS="${ARTIFACTS:-$(mktemp -d)}"
|
export ARTIFACTS="${ARTIFACTS:-$(mktemp -d)}"
|
||||||
|
|
Loading…
Reference in New Issue