Skip to content

Commit ced1490

Browse files
committed
Automator: update istio@ test reference
1 parent 57c0b88 commit ced1490

File tree

10 files changed

+127
-132
lines changed

10 files changed

+127
-132
lines changed

content/en/boilerplates/snips/args.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
####################################################################################################
2222

2323
! IFS=$'\n' read -r -d '' bpsnip_args_gateway_api_version <<\ENDSNIP
24-
v1.3.0
24+
v1.4.0
2525
ENDSNIP
2626

2727
! IFS=$'\n' read -r -d '' bpsnip_args_istio_previous_version <<\ENDSNIP

content/en/boilerplates/snips/gateway-api-gamma-experimental.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
####################################################################################################
2222

2323
bpsnip_gateway_api_gamma_experimental_install_experimental_crds() {
24-
kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd/experimental?ref=v1.3.0" | kubectl apply -f -
24+
kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd/experimental?ref=v1.4.0" | kubectl apply -f -
2525
}
2626

2727
bpsnip_gateway_api_gamma_experimental_enable_alpha_crds() {

content/en/boilerplates/snips/gateway-api-install-crds.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222

2323
bpsnip_gateway_api_install_crds_install_crds() {
2424
kubectl get crd gateways.gateway.networking.k8s.io &> /dev/null || \
25-
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.3.0/standard-install.yaml
25+
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.4.0/standard-install.yaml
2626
}

content/en/boilerplates/snips/gateway-api-remove-crds.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121
####################################################################################################
2222

2323
bpsnip_gateway_api_remove_crds_remove_crds() {
24-
kubectl delete -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.3.0/standard-install.yaml
24+
kubectl delete -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.4.0/standard-install.yaml
2525
}

content/en/docs/setup/getting-started/snips.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ ENDSNIP
5050

5151
snip_install_the_kubernetes_gateway_api_crds_1() {
5252
kubectl get crd gateways.gateway.networking.k8s.io &> /dev/null || \
53-
{ kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd?ref=v1.3.0" | kubectl apply -f -; }
53+
{ kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd?ref=v1.4.0" | kubectl apply -f -; }
5454
}
5555

5656
snip_deploy_the_sample_application_1() {
@@ -159,9 +159,9 @@ kubectl label namespace default istio-injection-
159159
}
160160

161161
snip_uninstall_4() {
162-
kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd/experimental?ref=v1.3.0" | kubectl delete -f -
162+
kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd/experimental?ref=v1.4.0" | kubectl delete -f -
163163
}
164164

165165
snip_uninstall_5() {
166-
kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd?ref=v1.3.0" | kubectl delete -f -
166+
kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd?ref=v1.4.0" | kubectl delete -f -
167167
}

content/en/docs/setup/install/external-controlplane/snips.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ ENDSNIP
416416

417417
snip_install_crds() {
418418
kubectl get crd gateways.gateway.networking.k8s.io --context="${CTX_REMOTE_CLUSTER}" &> /dev/null || \
419-
{ kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd?ref=v1.3.0" | kubectl apply -f - --context="${CTX_REMOTE_CLUSTER}"; }
419+
{ kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd?ref=v1.4.0" | kubectl apply -f - --context="${CTX_REMOTE_CLUSTER}"; }
420420
}
421421

422422
snip_configure_and_test_an_ingress_gateway_3() {

content/en/docs/tasks/traffic-management/ingress/gateway-api/snips.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
snip_setup_1() {
2424
kubectl get crd gateways.gateway.networking.k8s.io &> /dev/null || \
25-
{ kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd?ref=v1.3.0" | kubectl apply -f -; }
25+
{ kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd?ref=v1.4.0" | kubectl apply -f -; }
2626
}
2727

2828
snip_setup_2() {
@@ -298,5 +298,5 @@ kubectl delete ns istio-system
298298
}
299299

300300
snip_cleanup_3() {
301-
kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd?ref=v1.3.0" | kubectl delete -f -
301+
kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd?ref=v1.4.0" | kubectl delete -f -
302302
}

data/args.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ supported_languages:
5353
code: "uk"
5454

5555
# Kubernetes Gateway API
56-
k8s_gateway_api_version: "v1.3.0"
56+
k8s_gateway_api_version: "v1.4.0"

go.mod

Lines changed: 34 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ replace github.com/imdario/mergo => github.com/imdario/mergo v0.3.5
99

1010
require (
1111
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
12-
golang.org/x/sync v0.16.0
13-
istio.io/istio v0.0.0-20250820092323-51e2c411637c
14-
k8s.io/apimachinery v0.33.3
15-
k8s.io/client-go v0.33.3
12+
golang.org/x/sync v0.17.0
13+
istio.io/istio v0.0.0-20251018171154-61fc53ea3c9c
14+
k8s.io/apimachinery v0.34.1
15+
k8s.io/client-go v0.34.1
1616
)
1717

1818
require (
@@ -44,21 +44,21 @@ require (
4444
github.com/docker/cli v28.3.3+incompatible // indirect
4545
github.com/docker/distribution v2.8.3+incompatible // indirect
4646
github.com/docker/docker-credential-helpers v0.9.3 // indirect
47-
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
47+
github.com/emicklei/go-restful/v3 v3.13.0 // indirect
4848
github.com/envoyproxy/go-control-plane/contrib v1.32.5-0.20250627145903-197b96a9c7f8 // indirect
49-
github.com/envoyproxy/go-control-plane/envoy v1.32.5-0.20250627145903-197b96a9c7f8 // indirect
49+
github.com/envoyproxy/go-control-plane/envoy v1.35.1-0.20251009075907-cccc37f025be // indirect
5050
github.com/envoyproxy/protoc-gen-validate v1.2.1 // indirect
5151
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
5252
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect
5353
github.com/fatih/camelcase v1.0.0 // indirect
5454
github.com/fatih/color v1.18.0 // indirect
5555
github.com/fsnotify/fsnotify v1.9.0 // indirect
56-
github.com/fxamacker/cbor/v2 v2.8.0 // indirect
56+
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
5757
github.com/go-errors/errors v1.5.1 // indirect
5858
github.com/go-jose/go-jose/v4 v4.1.2 // indirect
5959
github.com/go-logr/logr v1.4.3 // indirect
6060
github.com/go-logr/stdr v1.2.2 // indirect
61-
github.com/go-openapi/jsonpointer v0.21.1 // indirect
61+
github.com/go-openapi/jsonpointer v0.21.2 // indirect
6262
github.com/go-openapi/jsonreference v0.21.0 // indirect
6363
github.com/go-openapi/swag v0.23.1 // indirect
6464
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
@@ -68,7 +68,7 @@ require (
6868
github.com/golang/protobuf v1.5.4 // indirect
6969
github.com/google/btree v1.1.3 // indirect
7070
github.com/google/cel-go v0.26.0 // indirect
71-
github.com/google/gnostic-models v0.6.9 // indirect
71+
github.com/google/gnostic-models v0.7.0 // indirect
7272
github.com/google/go-cmp v0.7.0 // indirect
7373
github.com/google/go-containerregistry v0.20.6 // indirect
7474
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
@@ -108,7 +108,7 @@ require (
108108
github.com/moby/spdystream v0.5.0 // indirect
109109
github.com/moby/term v0.5.2 // indirect
110110
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
111-
github.com/modern-go/reflect2 v1.0.2 // indirect
111+
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
112112
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
113113
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
114114
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
@@ -120,9 +120,9 @@ require (
120120
github.com/pires/go-proxyproto v0.8.1 // indirect
121121
github.com/pkg/errors v0.9.1 // indirect
122122
github.com/planetscale/vtprotobuf v0.6.1-0.20240409071808-615f978279ca // indirect
123-
github.com/prometheus/client_golang v1.23.0 // indirect
123+
github.com/prometheus/client_golang v1.23.2 // indirect
124124
github.com/prometheus/client_model v0.6.2 // indirect
125-
github.com/prometheus/common v0.65.0 // indirect
125+
github.com/prometheus/common v0.66.1 // indirect
126126
github.com/prometheus/otlptranslator v0.0.0-20250717125610-8549f4ab4f8f // indirect
127127
github.com/prometheus/procfs v0.17.0 // indirect
128128
github.com/prometheus/prometheus v0.305.0 // indirect
@@ -132,6 +132,7 @@ require (
132132
github.com/russross/blackfriday/v2 v2.1.0 // indirect
133133
github.com/ryanuber/go-glob v1.0.0 // indirect
134134
github.com/sagikazarmark/locafero v0.9.0 // indirect
135+
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2 // indirect
135136
github.com/shopspring/decimal v1.4.0 // indirect
136137
github.com/sirupsen/logrus v1.9.3 // indirect
137138
github.com/sourcegraph/conc v0.3.0 // indirect
@@ -145,9 +146,6 @@ require (
145146
github.com/subosito/gotenv v1.6.0 // indirect
146147
github.com/vbatts/tar-split v0.12.1 // indirect
147148
github.com/x448/float16 v0.8.4 // indirect
148-
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
149-
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
150-
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
151149
github.com/xlab/treeprint v1.2.0 // indirect
152150
github.com/yl2chen/cidranger v1.0.2 // indirect
153151
github.com/zeebo/errs v1.4.0 // indirect
@@ -167,48 +165,48 @@ require (
167165
go.uber.org/multierr v1.11.0 // indirect
168166
go.uber.org/zap v1.27.0 // indirect
169167
go.yaml.in/yaml/v2 v2.4.2 // indirect
170-
go.yaml.in/yaml/v3 v3.0.3 // indirect
168+
go.yaml.in/yaml/v3 v3.0.4 // indirect
171169
golang.org/x/crypto v0.41.0 // indirect
172170
golang.org/x/exp v0.0.0-20250506013437-ce4c2cf36ca6 // indirect
173-
golang.org/x/mod v0.26.0 // indirect
171+
golang.org/x/mod v0.27.0 // indirect
174172
golang.org/x/net v0.43.0 // indirect
175173
golang.org/x/oauth2 v0.30.0 // indirect
176174
golang.org/x/sys v0.35.0 // indirect
177175
golang.org/x/term v0.34.0 // indirect
178176
golang.org/x/text v0.28.0 // indirect
179177
golang.org/x/time v0.12.0 // indirect
180-
golang.org/x/tools v0.35.0 // indirect
178+
golang.org/x/tools v0.36.0 // indirect
181179
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
182180
google.golang.org/genproto/googleapis/api v0.0.0-20250811230008-5f3141c8851a // indirect
183-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250811230008-5f3141c8851a // indirect
184-
google.golang.org/grpc v1.74.2 // indirect
185-
google.golang.org/protobuf v1.36.7 // indirect
186-
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
181+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250826171959-ef028d996bc1 // indirect
182+
google.golang.org/grpc v1.75.1 // indirect
183+
google.golang.org/protobuf v1.36.10 // indirect
184+
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
187185
gopkg.in/inf.v0 v0.9.1 // indirect
188186
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
189187
gopkg.in/yaml.v2 v2.4.0 // indirect
190188
gopkg.in/yaml.v3 v3.0.1 // indirect
191-
helm.sh/helm/v3 v3.18.4 // indirect
192-
istio.io/api v1.26.0-alpha.0.0.20250819205620-f7e25069711d // indirect
193-
istio.io/client-go v1.27.0-beta.0 // indirect
194-
k8s.io/api v0.33.3 // indirect
195-
k8s.io/apiextensions-apiserver v0.33.3 // indirect
196-
k8s.io/apiserver v0.33.3 // indirect
189+
helm.sh/helm/v3 v3.18.6 // indirect
190+
istio.io/api v1.28.0-alpha.0.0.20251015201407-f6b4b4f56db2 // indirect
191+
istio.io/client-go v1.28.0-alpha.0.0.20251015201706-99349a9d18ee // indirect
192+
k8s.io/api v0.34.1 // indirect
193+
k8s.io/apiextensions-apiserver v0.34.1 // indirect
194+
k8s.io/apiserver v0.34.1 // indirect
197195
k8s.io/cli-runtime v0.33.3 // indirect
198-
k8s.io/component-base v0.33.3 // indirect
196+
k8s.io/component-base v0.34.1 // indirect
199197
k8s.io/component-helpers v0.33.3 // indirect
200198
k8s.io/klog/v2 v2.130.1 // indirect
201-
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
199+
k8s.io/kube-openapi v0.0.0-20250814151709-d7b6acb124c3 // indirect
202200
k8s.io/kubectl v0.33.3 // indirect
203-
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397 // indirect
204-
sigs.k8s.io/controller-runtime v0.21.0 // indirect
205-
sigs.k8s.io/gateway-api v1.3.0 // indirect
206-
sigs.k8s.io/gateway-api-inference-extension v0.5.1 // indirect
207-
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
201+
k8s.io/utils v0.0.0-20250820121507-0af2bda4dd1d // indirect
202+
sigs.k8s.io/controller-runtime v0.22.1 // indirect
203+
sigs.k8s.io/gateway-api v1.4.0 // indirect
204+
sigs.k8s.io/gateway-api-inference-extension v1.0.2 // indirect
205+
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
208206
sigs.k8s.io/kustomize/api v0.19.0 // indirect
209207
sigs.k8s.io/kustomize/kyaml v0.19.0 // indirect
210208
sigs.k8s.io/mcs-api v0.2.0 // indirect
211209
sigs.k8s.io/randfill v1.0.0 // indirect
212-
sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect
210+
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
213211
sigs.k8s.io/yaml v1.6.0 // indirect
214212
)

0 commit comments

Comments
 (0)