Skip to content
Open
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 .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "istio build-tools",
"image": "gcr.io/istio-testing/build-tools:master-4951619bfdb0252ff587946a4540955b1ae06199",
"image": "registry.istio.io/testing/build-tools:master-b7201a4e3411e85dff202449182d26efd7491b89",
"privileged": true,
"remoteEnv": {
"USE_GKE_GCLOUD_AUTH_PLUGIN": "True",
Expand Down
2 changes: 1 addition & 1 deletion common/.commonfiles.sha
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9cd1e7131baaace3d78746ccdf75477d1d89aa53
de36763d9ee5de8aaaea29ec16812bf82ccab59a
1 change: 1 addition & 0 deletions common/config/.hadolint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ trustedRegistries:
- gcr.io
- docker.io
- quay.io
- registry.istio.io
- "*.pkg.dev"
- "cgr.dev"
5 changes: 5 additions & 0 deletions common/config/license-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,3 +149,8 @@ allowlisted_modules:
# BSD
# https://github.com/cyphar/filepath-securejoin/blob/main/LICENSE.BSD
- github.com/cyphar/filepath-securejoin

# The code is MIT: https://github.com/quic-go/quic-go/blob/master/LICENSE
# However, the logo is not https://github.com/quic-go/quic-go/blob/master/assets/LICENSE.md.
# However, we do not consume the logo.
- github.com/quic-go/quic-go
2 changes: 1 addition & 1 deletion common/scripts/kind_provisioner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ set -x
####################################################################

# DEFAULT_KIND_IMAGE is used to set the Kubernetes version for KinD unless overridden in params to setup_kind_cluster(s)
DEFAULT_KIND_IMAGE="gcr.io/istio-testing/kind-node:v1.35.0"
DEFAULT_KIND_IMAGE="registry.istio.io/testing/kind-node:v1.35.0"

# the default kind cluster should be ipv4 if not otherwise specified
KIND_IP_FAMILY="${KIND_IP_FAMILY:-ipv4}"
Expand Down
6 changes: 3 additions & 3 deletions common/scripts/metallb-native.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Downloaded from https://github.com/metallb/metallb/raw/v0.13.12/config/manifests/metallb-native.yaml
# With quay.io hub replaced with gcr.io/istio-testing
# With quay.io hub replaced with registry.istio.io/testing
# And probes tuned to startup faster
apiVersion: v1
kind: Namespace
Expand Down Expand Up @@ -1533,7 +1533,7 @@ spec:
value: memberlist
- name: METALLB_DEPLOYMENT
value: controller
image: gcr.io/istio-testing/metallb/controller:v0.14.3
image: registry.istio.io/testing/metallb/controller:v0.14.3
livenessProbe:
failureThreshold: 3
httpGet:
Expand Down Expand Up @@ -1634,7 +1634,7 @@ spec:
value: app=metallb,component=speaker
- name: METALLB_ML_SECRET_KEY_PATH
value: /etc/ml_secret_key
image: gcr.io/istio-testing/metallb/speaker:v0.14.3
image: registry.istio.io/testing/metallb/speaker:v0.14.3
livenessProbe:
failureThreshold: 3
httpGet:
Expand Down
2 changes: 1 addition & 1 deletion common/scripts/report_build_info.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if [[ -z "${IGNORE_DIRTY_TREE}" ]] && ! git diff-index --quiet HEAD --; then
fi

GIT_DESCRIBE_TAG=$(git describe --tags --always)
HUB=${HUB:-"docker.io/istio"}
HUB=${HUB:-"registry.istio.io/release"}

# used by common/scripts/gobuild.sh
echo "istio.io/istio/pkg/version.buildVersion=${VERSION:-$BUILD_GIT_REVISION}"
Expand Down
6 changes: 3 additions & 3 deletions common/scripts/setup_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ else
fi

# Build image to use
TOOLS_REGISTRY_PROVIDER=${TOOLS_REGISTRY_PROVIDER:-gcr.io}
PROJECT_ID=${PROJECT_ID:-istio-testing}
TOOLS_REGISTRY_PROVIDER=${TOOLS_REGISTRY_PROVIDER:-registry.istio.io}
PROJECT_ID=${PROJECT_ID:-testing}
if [[ "${IMAGE_VERSION:-}" == "" ]]; then
IMAGE_VERSION=master-4951619bfdb0252ff587946a4540955b1ae06199
IMAGE_VERSION=master-b7201a4e3411e85dff202449182d26efd7491b89
fi
if [[ "${IMAGE_NAME:-}" == "" ]]; then
IMAGE_NAME=build-tools
Expand Down