Skip to content

Commit 165ee21

Browse files
Automator: Update dependencies in istio-ecosystem/sail-operator@main (openshift-service-mesh#492)
Signed-off-by: openshift-service-mesh-bot <[email protected]>
1 parent 66aa53b commit 165ee21

File tree

177 files changed

+25380
-74
lines changed

Some content is hidden

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

177 files changed

+25380
-74
lines changed

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.24.0, 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.24.0", "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.24.0;v1.23.3;v1.23.2;v1.22.6;v1.22.5;v1.21.6;latest
43-
// +kubebuilder:default=v1.24.0
40+
// Must be one of: v1.24.1, v1.24.0, 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.24.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.24.0", "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.24.1;v1.24.0;v1.23.3;v1.23.2;v1.22.6;v1.22.5;v1.21.6;latest
43+
// +kubebuilder:default=v1.24.1
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.24.0", namespace: "istio-system", updateStrategy: {type:"InPlace"}}
264+
// +kubebuilder:default={version: "v1.24.1", 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.24.0, 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.24.0", "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.24.0;v1.23.3;v1.23.2;v1.22.6;v1.22.5;v1.21.6;latest
34-
// +kubebuilder:default=v1.24.0
31+
// Must be one of: v1.24.1, v1.24.0, 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.24.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.24.0", "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.24.1;v1.24.0;v1.23.3;v1.23.2;v1.22.6;v1.22.5;v1.21.6;latest
34+
// +kubebuilder:default=v1.24.1
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.24.0", namespace: "istio-cni"}
180+
// +kubebuilder:default={version: "v1.24.1", 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.24.0, 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.24.0", "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.24.0;v1.23.3;v1.23.2;v1.22.6;v1.22.5;v1.21.6;latest
33+
// Must be one of: v1.24.1, v1.24.0, 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.24.1", "urn:alm:descriptor:com.tectonic.ui:select:v1.24.0", "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.24.1;v1.24.0;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.

bundle/manifests/sailoperator.clusterserviceversion.yaml

Lines changed: 31 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ metadata:
1616
"inactiveRevisionDeletionGracePeriodSeconds": 30,
1717
"type": "InPlace"
1818
},
19-
"version": "v1.24.0"
19+
"version": "v1.24.1"
2020
}
2121
},
2222
{
@@ -27,14 +27,14 @@ metadata:
2727
},
2828
"spec": {
2929
"namespace": "istio-cni",
30-
"version": "v1.24.0"
30+
"version": "v1.24.1"
3131
}
3232
}
3333
]
3434
capabilities: Seamless Upgrades
3535
categories: OpenShift Optional, Integration & Delivery, Networking, Security
3636
containerImage: quay.io/maistra-dev/sail-operator:0.2-latest
37-
createdAt: "2024-11-25T05:05:13Z"
37+
createdAt: "2024-11-26T05:05:18Z"
3838
description: Experimental operator for installing Istio service mesh
3939
features.operators.openshift.io/cnf: "false"
4040
features.operators.openshift.io/cni: "true"
@@ -160,11 +160,12 @@ spec:
160160
specDescriptors:
161161
- description: |-
162162
Defines the version of Istio to install.
163-
Must be one of: v1.24.0, v1.23.3, v1.23.2, v1.22.6, v1.22.5, v1.21.6, latest.
163+
Must be one of: v1.24.1, v1.24.0, v1.23.3, v1.23.2, v1.22.6, v1.22.5, v1.21.6, latest.
164164
displayName: Istio Version
165165
path: version
166166
x-descriptors:
167167
- urn:alm:descriptor:com.tectonic.ui:fieldGroup:General
168+
- urn:alm:descriptor:com.tectonic.ui:select:v1.24.1
168169
- urn:alm:descriptor:com.tectonic.ui:select:v1.24.0
169170
- urn:alm:descriptor:com.tectonic.ui:select:v1.23.3
170171
- urn:alm:descriptor:com.tectonic.ui:select:v1.23.2
@@ -201,11 +202,12 @@ spec:
201202
specDescriptors:
202203
- description: |-
203204
Defines the version of Istio to install.
204-
Must be one of: v1.24.0, v1.23.3, v1.23.2, v1.22.6, v1.22.5, v1.21.6, latest.
205+
Must be one of: v1.24.1, v1.24.0, v1.23.3, v1.23.2, v1.22.6, v1.22.5, v1.21.6, latest.
205206
displayName: Istio Version
206207
path: version
207208
x-descriptors:
208209
- urn:alm:descriptor:com.tectonic.ui:fieldGroup:General
210+
- urn:alm:descriptor:com.tectonic.ui:select:v1.24.1
209211
- urn:alm:descriptor:com.tectonic.ui:select:v1.24.0
210212
- urn:alm:descriptor:com.tectonic.ui:select:v1.23.3
211213
- urn:alm:descriptor:com.tectonic.ui:select:v1.23.2
@@ -250,11 +252,12 @@ spec:
250252
- urn:alm:descriptor:com.tectonic.ui:select:RevisionBased
251253
- description: |-
252254
Defines the version of Istio to install.
253-
Must be one of: v1.24.0, v1.23.3, v1.23.2, v1.22.6, v1.22.5, v1.21.6, latest.
255+
Must be one of: v1.24.1, v1.24.0, v1.23.3, v1.23.2, v1.22.6, v1.22.5, v1.21.6, latest.
254256
displayName: Istio Version
255257
path: version
256258
x-descriptors:
257259
- urn:alm:descriptor:com.tectonic.ui:fieldGroup:General
260+
- urn:alm:descriptor:com.tectonic.ui:select:v1.24.1
258261
- urn:alm:descriptor:com.tectonic.ui:select:v1.24.0
259262
- urn:alm:descriptor:com.tectonic.ui:select:v1.23.3
260263
- urn:alm:descriptor:com.tectonic.ui:select:v1.23.2
@@ -309,13 +312,14 @@ spec:
309312
310313
This version of the operator supports the following Istio versions:
311314
315+
- v1.24.1
312316
- v1.24.0
313317
- v1.23.3
314318
- v1.23.2
315319
- v1.22.6
316320
- v1.22.5
317321
- v1.21.6
318-
- latest (803629b9)
322+
- latest (48947c8f)
319323
320324
[See this page](https://github.com/istio-ecosystem/sail-operator/blob/main/bundle/README.md) for instructions on how to use it.
321325
displayName: Sail Operator
@@ -539,10 +543,10 @@ spec:
539543
template:
540544
metadata:
541545
annotations:
542-
images.latest.cni: gcr.io/istio-testing/install-cni:1.25-alpha.803629b94e938bcd9bace6c158b3b2979a713ea5
543-
images.latest.istiod: gcr.io/istio-testing/pilot:1.25-alpha.803629b94e938bcd9bace6c158b3b2979a713ea5
544-
images.latest.proxy: gcr.io/istio-testing/proxyv2:1.25-alpha.803629b94e938bcd9bace6c158b3b2979a713ea5
545-
images.latest.ztunnel: gcr.io/istio-testing/ztunnel:1.25-alpha.803629b94e938bcd9bace6c158b3b2979a713ea5
546+
images.latest.cni: gcr.io/istio-testing/install-cni:1.25-alpha.48947c8fc834fc459c8dd501b6f8f10ba30acf97
547+
images.latest.istiod: gcr.io/istio-testing/pilot:1.25-alpha.48947c8fc834fc459c8dd501b6f8f10ba30acf97
548+
images.latest.proxy: gcr.io/istio-testing/proxyv2:1.25-alpha.48947c8fc834fc459c8dd501b6f8f10ba30acf97
549+
images.latest.ztunnel: gcr.io/istio-testing/ztunnel:1.25-alpha.48947c8fc834fc459c8dd501b6f8f10ba30acf97
546550
images.v1_21_6.cni: docker.io/istio/install-cni:1.21.6
547551
images.v1_21_6.istiod: docker.io/istio/pilot:1.21.6
548552
images.v1_21_6.proxy: docker.io/istio/proxyv2:1.21.6
@@ -567,6 +571,10 @@ spec:
567571
images.v1_24_0.istiod: docker.io/istio/pilot:1.24.0
568572
images.v1_24_0.proxy: docker.io/istio/proxyv2:1.24.0
569573
images.v1_24_0.ztunnel: docker.io/istio/ztunnel:1.24.0
574+
images.v1_24_1.cni: docker.io/istio/install-cni:1.24.1
575+
images.v1_24_1.istiod: docker.io/istio/pilot:1.24.1
576+
images.v1_24_1.proxy: docker.io/istio/proxyv2:1.24.1
577+
images.v1_24_1.ztunnel: docker.io/istio/ztunnel:1.24.1
570578
kubectl.kubernetes.io/default-container: sail-operator
571579
labels:
572580
app.kubernetes.io/created-by: sailoperator
@@ -719,13 +727,13 @@ spec:
719727
provider:
720728
name: Red Hat, Inc.
721729
relatedImages:
722-
- image: gcr.io/istio-testing/install-cni:1.25-alpha.803629b94e938bcd9bace6c158b3b2979a713ea5
730+
- image: gcr.io/istio-testing/install-cni:1.25-alpha.48947c8fc834fc459c8dd501b6f8f10ba30acf97
723731
name: latest.cni
724-
- image: gcr.io/istio-testing/pilot:1.25-alpha.803629b94e938bcd9bace6c158b3b2979a713ea5
732+
- image: gcr.io/istio-testing/pilot:1.25-alpha.48947c8fc834fc459c8dd501b6f8f10ba30acf97
725733
name: latest.istiod
726-
- image: gcr.io/istio-testing/proxyv2:1.25-alpha.803629b94e938bcd9bace6c158b3b2979a713ea5
734+
- image: gcr.io/istio-testing/proxyv2:1.25-alpha.48947c8fc834fc459c8dd501b6f8f10ba30acf97
727735
name: latest.proxy
728-
- image: gcr.io/istio-testing/ztunnel:1.25-alpha.803629b94e938bcd9bace6c158b3b2979a713ea5
736+
- image: gcr.io/istio-testing/ztunnel:1.25-alpha.48947c8fc834fc459c8dd501b6f8f10ba30acf97
729737
name: latest.ztunnel
730738
- image: docker.io/istio/install-cni:1.21.6
731739
name: v1_21_6.cni
@@ -775,4 +783,12 @@ spec:
775783
name: v1_24_0.proxy
776784
- image: docker.io/istio/ztunnel:1.24.0
777785
name: v1_24_0.ztunnel
786+
- image: docker.io/istio/install-cni:1.24.1
787+
name: v1_24_1.cni
788+
- image: docker.io/istio/pilot:1.24.1
789+
name: v1_24_1.istiod
790+
- image: docker.io/istio/proxyv2:1.24.1
791+
name: v1_24_1.proxy
792+
- image: docker.io/istio/ztunnel:1.24.1
793+
name: v1_24_1.ztunnel
778794
version: 0.2.0

bundle/manifests/sailoperator.io_istiocnis.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ spec:
5858
spec:
5959
default:
6060
namespace: istio-cni
61-
version: v1.24.0
61+
version: v1.24.1
6262
description: IstioCNISpec defines the desired state of IstioCNI
6363
properties:
6464
namespace:
@@ -1411,11 +1411,12 @@ spec:
14111411
type: object
14121412
type: object
14131413
version:
1414-
default: v1.24.0
1414+
default: v1.24.1
14151415
description: |-
14161416
Defines the version of Istio to install.
1417-
Must be one of: v1.24.0, v1.23.3, v1.23.2, v1.22.6, v1.22.5, v1.21.6, latest.
1417+
Must be one of: v1.24.1, v1.24.0, v1.23.3, v1.23.2, v1.22.6, v1.22.5, v1.21.6, latest.
14181418
enum:
1419+
- v1.24.1
14191420
- v1.24.0
14201421
- v1.23.3
14211422
- v1.23.2

bundle/manifests/sailoperator.io_istiorevisions.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9389,8 +9389,9 @@ spec:
93899389
version:
93909390
description: |-
93919391
Defines the version of Istio to install.
9392-
Must be one of: v1.24.0, v1.23.3, v1.23.2, v1.22.6, v1.22.5, v1.21.6, latest.
9392+
Must be one of: v1.24.1, v1.24.0, v1.23.3, v1.23.2, v1.22.6, v1.22.5, v1.21.6, latest.
93939393
enum:
9394+
- v1.24.1
93949395
- v1.24.0
93959396
- v1.23.3
93969397
- v1.23.2

bundle/manifests/sailoperator.io_istios.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ spec:
8080
namespace: istio-system
8181
updateStrategy:
8282
type: InPlace
83-
version: v1.24.0
83+
version: v1.24.1
8484
description: IstioSpec defines the desired state of Istio
8585
properties:
8686
namespace:
@@ -9456,11 +9456,12 @@ spec:
94569456
type: object
94579457
type: object
94589458
version:
9459-
default: v1.24.0
9459+
default: v1.24.1
94609460
description: |-
94619461
Defines the version of Istio to install.
9462-
Must be one of: v1.24.0, v1.23.3, v1.23.2, v1.22.6, v1.22.5, v1.21.6, latest.
9462+
Must be one of: v1.24.1, v1.24.0, v1.23.3, v1.23.2, v1.22.6, v1.22.5, v1.21.6, latest.
94639463
enum:
9464+
- v1.24.1
94649465
- v1.24.0
94659466
- v1.23.3
94669467
- v1.23.2

chart/crds/sailoperator.io_istiocnis.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ spec:
5858
spec:
5959
default:
6060
namespace: istio-cni
61-
version: v1.24.0
61+
version: v1.24.1
6262
description: IstioCNISpec defines the desired state of IstioCNI
6363
properties:
6464
namespace:
@@ -1411,11 +1411,12 @@ spec:
14111411
type: object
14121412
type: object
14131413
version:
1414-
default: v1.24.0
1414+
default: v1.24.1
14151415
description: |-
14161416
Defines the version of Istio to install.
1417-
Must be one of: v1.24.0, v1.23.3, v1.23.2, v1.22.6, v1.22.5, v1.21.6, latest.
1417+
Must be one of: v1.24.1, v1.24.0, v1.23.3, v1.23.2, v1.22.6, v1.22.5, v1.21.6, latest.
14181418
enum:
1419+
- v1.24.1
14191420
- v1.24.0
14201421
- v1.23.3
14211422
- v1.23.2

chart/crds/sailoperator.io_istiorevisions.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9389,8 +9389,9 @@ spec:
93899389
version:
93909390
description: |-
93919391
Defines the version of Istio to install.
9392-
Must be one of: v1.24.0, v1.23.3, v1.23.2, v1.22.6, v1.22.5, v1.21.6, latest.
9392+
Must be one of: v1.24.1, v1.24.0, v1.23.3, v1.23.2, v1.22.6, v1.22.5, v1.21.6, latest.
93939393
enum:
9394+
- v1.24.1
93949395
- v1.24.0
93959396
- v1.23.3
93969397
- v1.23.2

chart/crds/sailoperator.io_istios.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ spec:
8080
namespace: istio-system
8181
updateStrategy:
8282
type: InPlace
83-
version: v1.24.0
83+
version: v1.24.1
8484
description: IstioSpec defines the desired state of Istio
8585
properties:
8686
namespace:
@@ -9456,11 +9456,12 @@ spec:
94569456
type: object
94579457
type: object
94589458
version:
9459-
default: v1.24.0
9459+
default: v1.24.1
94609460
description: |-
94619461
Defines the version of Istio to install.
9462-
Must be one of: v1.24.0, v1.23.3, v1.23.2, v1.22.6, v1.22.5, v1.21.6, latest.
9462+
Must be one of: v1.24.1, v1.24.0, v1.23.3, v1.23.2, v1.22.6, v1.22.5, v1.21.6, latest.
94639463
enum:
9464+
- v1.24.1
94649465
- v1.24.0
94659466
- v1.23.3
94669467
- v1.23.2

0 commit comments

Comments
 (0)