Skip to content

Commit 45079f4

Browse files
Automator: Update dependencies in istio-ecosystem/sail-operator@main (openshift-service-mesh#468)
Signed-off-by: openshift-service-mesh-bot <[email protected]>
1 parent e195a23 commit 45079f4

File tree

361 files changed

+46068
-382
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

361 files changed

+46068
-382
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "istio build-tools",
3-
"image": "gcr.io/istio-testing/build-tools:master-4759bf88d40172234fc6a0b9e11a4c5f1ea58a90",
3+
"image": "gcr.io/istio-testing/build-tools:master-a23bc8ebbbe49b421f8e876eda5dcab008e850a1",
44
"privileged": true,
55
"remoteEnv": {
66
"USE_GKE_GCLOUD_AUTH_PLUGIN": "True",

.github/workflows/update-deps.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
update-deps:
2424
runs-on: ubuntu-latest
2525
container:
26-
image: gcr.io/istio-testing/build-tools:master-4759bf88d40172234fc6a0b9e11a4c5f1ea58a90
26+
image: gcr.io/istio-testing/build-tools:master-a23bc8ebbbe49b421f8e876eda5dcab008e850a1
2727
options: --entrypoint ''
2828

2929
steps:

Makefile.core.mk

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -470,10 +470,10 @@ ISTIOCTL ?= $(LOCALBIN)/istioctl
470470
## Tool Versions
471471
OPERATOR_SDK_VERSION ?= v1.37.0
472472
HELM_VERSION ?= v3.16.2
473-
CONTROLLER_TOOLS_VERSION ?= v0.16.4
474-
OPM_VERSION ?= v1.47.0
475-
OLM_VERSION ?= 0.28.0
476-
GITLEAKS_VERSION ?= v8.21.1
473+
CONTROLLER_TOOLS_VERSION ?= v0.16.5
474+
OPM_VERSION ?= v1.48.0
475+
OLM_VERSION ?= v0.30.0
476+
GITLEAKS_VERSION ?= v8.21.2
477477
ISTIOCTL_VERSION ?= 1.23.0
478478

479479
# GENERATE_RELATED_IMAGES defines whether `spec.relatedImages` is going to be generated or not

api/v1alpha1/istio_types.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ const (
3737
type IstioSpec struct {
3838
// +sail:version
3939
// Defines the version of Istio to install.
40-
// Must be one of: v1.23.2, v1.22.5, v1.21.6, latest.
41-
// +operator-sdk:csv:customresourcedefinitions:type=spec,order=1,displayName="Istio Version",xDescriptors={"urn:alm:descriptor:com.tectonic.ui:fieldGroup:General", "urn:alm:descriptor:com.tectonic.ui:select:v1.23.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.22.5", "urn:alm:descriptor:com.tectonic.ui:select:v1.21.6", "urn:alm:descriptor:com.tectonic.ui:select:latest"}
42-
// +kubebuilder:validation:Enum=v1.23.2;v1.22.5;v1.21.6;latest
43-
// +kubebuilder:default=v1.23.2
40+
// Must be one of: v1.23.3, v1.23.2, v1.22.6, v1.22.5, v1.21.6, latest.
41+
// +operator-sdk:csv:customresourcedefinitions:type=spec,order=1,displayName="Istio Version",xDescriptors={"urn:alm:descriptor:com.tectonic.ui:fieldGroup:General", "urn:alm:descriptor:com.tectonic.ui:select:v1.23.3", "urn:alm:descriptor:com.tectonic.ui:select:v1.23.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.22.6", "urn:alm:descriptor:com.tectonic.ui:select:v1.22.5", "urn:alm:descriptor:com.tectonic.ui:select:v1.21.6", "urn:alm:descriptor:com.tectonic.ui:select:latest"}
42+
// +kubebuilder:validation:Enum=v1.23.3;v1.23.2;v1.22.6;v1.22.5;v1.21.6;latest
43+
// +kubebuilder:default=v1.23.3
4444
Version string `json:"version"`
4545

4646
// Defines the update strategy to use when the version in the Istio CR is updated.
@@ -261,7 +261,7 @@ type Istio struct {
261261
metav1.TypeMeta `json:",inline"`
262262
metav1.ObjectMeta `json:"metadata,omitempty"`
263263

264-
// +kubebuilder:default={version: "v1.23.2", namespace: "istio-system", updateStrategy: {type:"InPlace"}}
264+
// +kubebuilder:default={version: "v1.23.3", namespace: "istio-system", updateStrategy: {type:"InPlace"}}
265265
Spec IstioSpec `json:"spec,omitempty"`
266266

267267
Status IstioStatus `json:"status,omitempty"`

api/v1alpha1/istiocni_types.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ const (
2828
type IstioCNISpec struct {
2929
// +sail:version
3030
// Defines the version of Istio to install.
31-
// Must be one of: v1.23.2, v1.22.5, v1.21.6, latest.
32-
// +operator-sdk:csv:customresourcedefinitions:type=spec,order=1,displayName="Istio Version",xDescriptors={"urn:alm:descriptor:com.tectonic.ui:fieldGroup:General", "urn:alm:descriptor:com.tectonic.ui:select:v1.23.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.22.5", "urn:alm:descriptor:com.tectonic.ui:select:v1.21.6", "urn:alm:descriptor:com.tectonic.ui:select:latest"}
33-
// +kubebuilder:validation:Enum=v1.23.2;v1.22.5;v1.21.6;latest
34-
// +kubebuilder:default=v1.23.2
31+
// Must be one of: v1.23.3, v1.23.2, v1.22.6, v1.22.5, v1.21.6, latest.
32+
// +operator-sdk:csv:customresourcedefinitions:type=spec,order=1,displayName="Istio Version",xDescriptors={"urn:alm:descriptor:com.tectonic.ui:fieldGroup:General", "urn:alm:descriptor:com.tectonic.ui:select:v1.23.3", "urn:alm:descriptor:com.tectonic.ui:select:v1.23.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.22.6", "urn:alm:descriptor:com.tectonic.ui:select:v1.22.5", "urn:alm:descriptor:com.tectonic.ui:select:v1.21.6", "urn:alm:descriptor:com.tectonic.ui:select:latest"}
33+
// +kubebuilder:validation:Enum=v1.23.3;v1.23.2;v1.22.6;v1.22.5;v1.21.6;latest
34+
// +kubebuilder:default=v1.23.3
3535
Version string `json:"version"`
3636

3737
// +sail:profile
@@ -177,7 +177,7 @@ type IstioCNI struct {
177177
metav1.TypeMeta `json:",inline"`
178178
metav1.ObjectMeta `json:"metadata,omitempty"`
179179

180-
// +kubebuilder:default={version: "v1.23.2", namespace: "istio-cni"}
180+
// +kubebuilder:default={version: "v1.23.3", namespace: "istio-cni"}
181181
Spec IstioCNISpec `json:"spec,omitempty"`
182182

183183
Status IstioCNIStatus `json:"status,omitempty"`

api/v1alpha1/istiorevision_types.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ const (
3030
type IstioRevisionSpec struct {
3131
// +sail:version
3232
// Defines the version of Istio to install.
33-
// Must be one of: v1.23.2, v1.22.5, v1.21.6, latest.
34-
// +operator-sdk:csv:customresourcedefinitions:type=spec,order=1,displayName="Istio Version",xDescriptors={"urn:alm:descriptor:com.tectonic.ui:fieldGroup:General", "urn:alm:descriptor:com.tectonic.ui:select:v1.23.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.22.5", "urn:alm:descriptor:com.tectonic.ui:select:v1.21.6", "urn:alm:descriptor:com.tectonic.ui:select:latest"}
35-
// +kubebuilder:validation:Enum=v1.23.2;v1.22.5;v1.21.6;latest
33+
// Must be one of: v1.23.3, v1.23.2, v1.22.6, v1.22.5, v1.21.6, latest.
34+
// +operator-sdk:csv:customresourcedefinitions:type=spec,order=1,displayName="Istio Version",xDescriptors={"urn:alm:descriptor:com.tectonic.ui:fieldGroup:General", "urn:alm:descriptor:com.tectonic.ui:select:v1.23.3", "urn:alm:descriptor:com.tectonic.ui:select:v1.23.2", "urn:alm:descriptor:com.tectonic.ui:select:v1.22.6", "urn:alm:descriptor:com.tectonic.ui:select:v1.22.5", "urn:alm:descriptor:com.tectonic.ui:select:v1.21.6", "urn:alm:descriptor:com.tectonic.ui:select:latest"}
35+
// +kubebuilder:validation:Enum=v1.23.3;v1.23.2;v1.22.6;v1.22.5;v1.21.6;latest
3636
Version string `json:"version"`
3737

3838
// Namespace to which the Istio components should be installed.

api/v1alpha1/values_types.gen.go

Lines changed: 12 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/v1alpha1/zz_generated.deepcopy.go

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bundle/manifests/extensions.istio.io_wasmplugins.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,12 @@ spec:
305305
description: Human-readable message indicating details about
306306
last transition.
307307
type: string
308+
observedGeneration:
309+
anyOf:
310+
- type: integer
311+
- type: string
312+
description: Resource Generation to which the Condition refers.
313+
x-kubernetes-int-or-string: true
308314
reason:
309315
description: Unique, one-word, CamelCase reason for the condition's
310316
last transition.
@@ -321,8 +327,6 @@ spec:
321327
anyOf:
322328
- type: integer
323329
- type: string
324-
description: Resource Generation to which the Reconciled Condition
325-
refers.
326330
x-kubernetes-int-or-string: true
327331
validationMessages:
328332
description: Includes any errors or warnings detected by Istio's analyzers.

bundle/manifests/networking.istio.io_destinationrules.yaml

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1884,6 +1884,12 @@ spec:
18841884
description: Human-readable message indicating details about
18851885
last transition.
18861886
type: string
1887+
observedGeneration:
1888+
anyOf:
1889+
- type: integer
1890+
- type: string
1891+
description: Resource Generation to which the Condition refers.
1892+
x-kubernetes-int-or-string: true
18871893
reason:
18881894
description: Unique, one-word, CamelCase reason for the condition's
18891895
last transition.
@@ -1900,8 +1906,6 @@ spec:
19001906
anyOf:
19011907
- type: integer
19021908
- type: string
1903-
description: Resource Generation to which the Reconciled Condition
1904-
refers.
19051909
x-kubernetes-int-or-string: true
19061910
validationMessages:
19071911
description: Includes any errors or warnings detected by Istio's analyzers.
@@ -3801,6 +3805,12 @@ spec:
38013805
description: Human-readable message indicating details about
38023806
last transition.
38033807
type: string
3808+
observedGeneration:
3809+
anyOf:
3810+
- type: integer
3811+
- type: string
3812+
description: Resource Generation to which the Condition refers.
3813+
x-kubernetes-int-or-string: true
38043814
reason:
38053815
description: Unique, one-word, CamelCase reason for the condition's
38063816
last transition.
@@ -3817,8 +3827,6 @@ spec:
38173827
anyOf:
38183828
- type: integer
38193829
- type: string
3820-
description: Resource Generation to which the Reconciled Condition
3821-
refers.
38223830
x-kubernetes-int-or-string: true
38233831
validationMessages:
38243832
description: Includes any errors or warnings detected by Istio's analyzers.
@@ -5718,6 +5726,12 @@ spec:
57185726
description: Human-readable message indicating details about
57195727
last transition.
57205728
type: string
5729+
observedGeneration:
5730+
anyOf:
5731+
- type: integer
5732+
- type: string
5733+
description: Resource Generation to which the Condition refers.
5734+
x-kubernetes-int-or-string: true
57215735
reason:
57225736
description: Unique, one-word, CamelCase reason for the condition's
57235737
last transition.
@@ -5734,8 +5748,6 @@ spec:
57345748
anyOf:
57355749
- type: integer
57365750
- type: string
5737-
description: Resource Generation to which the Reconciled Condition
5738-
refers.
57395751
x-kubernetes-int-or-string: true
57405752
validationMessages:
57415753
description: Includes any errors or warnings detected by Istio's analyzers.

0 commit comments

Comments
 (0)