From 275496f5d7b5f95c3bbdb64c04b10985d86b59bc Mon Sep 17 00:00:00 2001 From: openstack-k8s-operators-ci Date: Sat, 2 May 2026 10:45:27 +0000 Subject: [PATCH] Update openstack-k8s-operators (main) --- ....openstack.org_openstackcontrolplanes.yaml | 97 +++++++++++++++++ api/go.mod | 42 ++++---- api/go.sum | 84 +++++++-------- bindata/crds/crds.yaml | 97 +++++++++++++++++ .../crds/glance.openstack.org_glanceapis.yaml | 87 +++++++++++++++ .../crds/glance.openstack.org_glances.yaml | 88 +++++++++++++++ .../ovn.openstack.org_ovncontrollers.yaml | 18 +++- .../crds/ovn.openstack.org_ovndbclusters.yaml | 10 +- .../crds/ovn.openstack.org_ovnnorthds.yaml | 10 +- ....openstack.org_openstackcontrolplanes.yaml | 97 +++++++++++++++++ config/operator/manager_operator_images.yaml | 40 +++---- go.mod | 50 ++++----- go.sum | 100 +++++++++--------- hack/export_operator_related_images.sh | 40 +++---- 14 files changed, 678 insertions(+), 182 deletions(-) diff --git a/api/bases/core.openstack.org_openstackcontrolplanes.yaml b/api/bases/core.openstack.org_openstackcontrolplanes.yaml index 81a216d318..31e2de4a89 100644 --- a/api/bases/core.openstack.org_openstackcontrolplanes.yaml +++ b/api/bases/core.openstack.org_openstackcontrolplanes.yaml @@ -4538,6 +4538,75 @@ spec: type: object override: properties: + probes: + properties: + livenessProbes: + properties: + failureThreshold: + format: int32 + minimum: 1 + type: integer + initialDelaySeconds: + format: int32 + minimum: 0 + type: integer + path: + pattern: ^(/.*)?$ + type: string + periodSeconds: + format: int32 + minimum: 1 + type: integer + timeoutSeconds: + format: int32 + minimum: 1 + type: integer + type: object + readinessProbes: + properties: + failureThreshold: + format: int32 + minimum: 1 + type: integer + initialDelaySeconds: + format: int32 + minimum: 0 + type: integer + path: + pattern: ^(/.*)?$ + type: string + periodSeconds: + format: int32 + minimum: 1 + type: integer + timeoutSeconds: + format: int32 + minimum: 1 + type: integer + type: object + startupProbes: + properties: + failureThreshold: + format: int32 + minimum: 1 + type: integer + initialDelaySeconds: + format: int32 + minimum: 0 + type: integer + path: + pattern: ^(/.*)?$ + type: string + periodSeconds: + format: int32 + minimum: 1 + type: integer + timeoutSeconds: + format: int32 + minimum: 1 + type: integer + type: object + type: object service: additionalProperties: properties: @@ -13079,9 +13148,23 @@ spec: type: object ovnLogLevel: default: info + enum: + - "off" + - emer + - err + - warn + - info + - dbg type: string ovsLogLevel: default: info + enum: + - "off" + - emer + - err + - warn + - info + - dbg type: string resources: properties: @@ -13148,6 +13231,13 @@ spec: type: integer logLevel: default: info + enum: + - "off" + - emer + - err + - warn + - info + - dbg type: string metricsEnabled: default: true @@ -13283,6 +13373,13 @@ spec: properties: logLevel: default: info + enum: + - "off" + - emer + - err + - warn + - info + - dbg type: string metricsEnabled: default: true diff --git a/api/go.mod b/api/go.mod index b5c960729d..9134887b00 100644 --- a/api/go.mod +++ b/api/go.mod @@ -7,28 +7,28 @@ require ( github.com/go-playground/validator/v10 v10.30.1 github.com/onsi/ginkgo/v2 v2.28.2 github.com/onsi/gomega v1.39.1 - github.com/openstack-k8s-operators/barbican-operator/api v0.6.1-0.20260420052305-96c3a8196933 - github.com/openstack-k8s-operators/cinder-operator/api v0.6.1-0.20260418071314-55ff2fc10b0c - github.com/openstack-k8s-operators/designate-operator/api v0.6.1-0.20260418051458-40035e96e631 - github.com/openstack-k8s-operators/glance-operator/api v0.6.1-0.20260418071313-4af756ba3dac - github.com/openstack-k8s-operators/heat-operator/api v0.6.1-0.20260420052550-a562e0ee16fd - github.com/openstack-k8s-operators/horizon-operator/api v0.6.1-0.20260418053129-fb096ad89dce - github.com/openstack-k8s-operators/infra-operator/apis v0.6.1-0.20260416122644-5476763a36b6 - github.com/openstack-k8s-operators/ironic-operator/api v0.6.1-0.20260420052552-1ba026c533d6 - github.com/openstack-k8s-operators/keystone-operator/api v0.6.1-0.20260420052838-77f94aef5af2 - github.com/openstack-k8s-operators/lib-common/modules/common v0.6.1-0.20260417092244-81c71b39e981 - github.com/openstack-k8s-operators/lib-common/modules/storage v0.6.1-0.20260417092244-81c71b39e981 - github.com/openstack-k8s-operators/manila-operator/api v0.6.1-0.20260420052836-ac1a4d8a769e - github.com/openstack-k8s-operators/mariadb-operator/api v0.6.1-0.20260413152655-564a51226a2a - github.com/openstack-k8s-operators/neutron-operator/api v0.6.1-0.20260420052839-b9314e4e03a3 - github.com/openstack-k8s-operators/nova-operator/api v0.6.1-0.20260413153813-b59b2a226c10 - github.com/openstack-k8s-operators/octavia-operator/api v0.6.1-0.20260413082059-d107b5bac378 - github.com/openstack-k8s-operators/openstack-baremetal-operator/api v0.6.1-0.20260413094947-83f411fa655c - github.com/openstack-k8s-operators/ovn-operator/api v0.6.1-0.20260420053123-cf0908d8cf39 + github.com/openstack-k8s-operators/barbican-operator/api v0.6.1-0.20260428063333-0a225c8d5510 + github.com/openstack-k8s-operators/cinder-operator/api v0.6.1-0.20260430090430-c95756ebdf64 + github.com/openstack-k8s-operators/designate-operator/api v0.6.1-0.20260428063332-408c912c480a + github.com/openstack-k8s-operators/glance-operator/api v0.6.1-0.20260430094336-e0146f3fbf46 + github.com/openstack-k8s-operators/heat-operator/api v0.6.1-0.20260428063332-32d27fe544a9 + github.com/openstack-k8s-operators/horizon-operator/api v0.6.1-0.20260430085555-5d886c8db8b0 + github.com/openstack-k8s-operators/infra-operator/apis v0.6.1-0.20260429072348-e2e8eaa49a92 + github.com/openstack-k8s-operators/ironic-operator/api v0.6.1-0.20260429232424-241f1b9467e4 + github.com/openstack-k8s-operators/keystone-operator/api v0.6.1-0.20260425213537-3fb7aab1c5a4 + github.com/openstack-k8s-operators/lib-common/modules/common v0.6.1-0.20260430090237-a4265c18a162 + github.com/openstack-k8s-operators/lib-common/modules/storage v0.6.1-0.20260430090237-a4265c18a162 + github.com/openstack-k8s-operators/manila-operator/api v0.6.1-0.20260430052821-795fe4401ef4 + github.com/openstack-k8s-operators/mariadb-operator/api v0.6.1-0.20260428063048-3a190112bad3 + github.com/openstack-k8s-operators/neutron-operator/api v0.6.1-0.20260427095537-d1f5e517f199 + github.com/openstack-k8s-operators/nova-operator/api v0.6.1-0.20260421072856-123b74ba975b + github.com/openstack-k8s-operators/octavia-operator/api v0.6.1-0.20260425214107-96bce8dcad8b + github.com/openstack-k8s-operators/openstack-baremetal-operator/api v0.6.1-0.20260428063048-b5adaaed7659 + github.com/openstack-k8s-operators/ovn-operator/api v0.6.1-0.20260428063332-55b3554934b5 github.com/openstack-k8s-operators/placement-operator/api v0.6.1-0.20260413090520-f18a11875c1d - github.com/openstack-k8s-operators/swift-operator/api v0.6.1-0.20260418085220-949c802081aa - github.com/openstack-k8s-operators/telemetry-operator/api v0.6.1-0.20260420053123-02a691a5b4d4 - github.com/openstack-k8s-operators/watcher-operator/api v0.6.1-0.20260414124111-458e17672b3c + github.com/openstack-k8s-operators/swift-operator/api v0.6.1-0.20260430052822-e67818864e26 + github.com/openstack-k8s-operators/telemetry-operator/api v0.6.1-0.20260430174810-f0e56413c3c0 + github.com/openstack-k8s-operators/watcher-operator/api v0.6.1-0.20260428084423-26f6eac1e089 github.com/rhobs/obo-prometheus-operator/pkg/apis/monitoring v0.77.1-rhobs1 // indirect github.com/rhobs/observability-operator v1.0.0 // indirect go.uber.org/multierr v1.11.0 // indirect diff --git a/api/go.sum b/api/go.sum index 47e9a6861b..bc3cae1f0e 100644 --- a/api/go.sum +++ b/api/go.sum @@ -114,52 +114,52 @@ github.com/onsi/gomega v1.39.1 h1:1IJLAad4zjPn2PsnhH70V4DKRFlrCzGBNrNaru+Vf28= github.com/onsi/gomega v1.39.1/go.mod h1:hL6yVALoTOxeWudERyfppUcZXjMwIMLnuSfruD2lcfg= github.com/openshift/api v0.0.0-20250711200046-c86d80652a9e h1:E1OdwSpqWuDPCedyUt0GEdoAE+r5TXy7YS21yNEo+2U= github.com/openshift/api v0.0.0-20250711200046-c86d80652a9e/go.mod h1:Shkl4HanLwDiiBzakv+con/aMGnVE2MAGvoKp5oyYUo= -github.com/openstack-k8s-operators/barbican-operator/api v0.6.1-0.20260420052305-96c3a8196933 h1:Ks/OYlX2ipYy1XjAezm1955VkmwXoi+fAZlL0X0NDwM= -github.com/openstack-k8s-operators/barbican-operator/api v0.6.1-0.20260420052305-96c3a8196933/go.mod h1:GlhOX7fRcMXxNrRsxPcJOSWd8zvL3/Aitkjr7VWqP68= -github.com/openstack-k8s-operators/cinder-operator/api v0.6.1-0.20260418071314-55ff2fc10b0c h1:ID5FHF6qRqtiRyPtLvRbAYDPs3cDfE+jzElj1yuxCUk= -github.com/openstack-k8s-operators/cinder-operator/api v0.6.1-0.20260418071314-55ff2fc10b0c/go.mod h1:Jc3ZlAc3K1jWPcs9LChGtm0wEB2C2Uiescl63Z8CRAc= -github.com/openstack-k8s-operators/designate-operator/api v0.6.1-0.20260418051458-40035e96e631 h1:1sVW8CssuWlvjqcgcreKNfUesNIq/w5HqBWJ1gRZ5GA= -github.com/openstack-k8s-operators/designate-operator/api v0.6.1-0.20260418051458-40035e96e631/go.mod h1:hbnEtksRUDnwO6taj16Mny9exJQ/W89pSDZ8g8bFH5Q= -github.com/openstack-k8s-operators/glance-operator/api v0.6.1-0.20260418071313-4af756ba3dac h1:BfH8D+SaB/h9fQazX4SaurHLm4IfqHzB19K3+osmOgE= -github.com/openstack-k8s-operators/glance-operator/api v0.6.1-0.20260418071313-4af756ba3dac/go.mod h1:s2zNb7EGQoJXpuifWYeioTIEqjAL8hCR39tRbqxBnPU= -github.com/openstack-k8s-operators/heat-operator/api v0.6.1-0.20260420052550-a562e0ee16fd h1:qaM7SSTbdGbyb19CabSrniwnhnFpiRTkKipirpYTc+A= -github.com/openstack-k8s-operators/heat-operator/api v0.6.1-0.20260420052550-a562e0ee16fd/go.mod h1:aA+YEZ3UJCQvJB2X3qOliGVB7EXdImfJ0qV2jUG/L0E= -github.com/openstack-k8s-operators/horizon-operator/api v0.6.1-0.20260418053129-fb096ad89dce h1:4nqAqtmfoN3VoWtFhHj65iZhi40KNp254/trUuoTD0M= -github.com/openstack-k8s-operators/horizon-operator/api v0.6.1-0.20260418053129-fb096ad89dce/go.mod h1:ZMH+2206hZgGFjEhC+hhPvU+v6haNaeh5FR1mHylfqw= -github.com/openstack-k8s-operators/infra-operator/apis v0.6.1-0.20260416122644-5476763a36b6 h1:117Gu9HCSu2tAp579WnCJ9QtnslH2qnPB8UFvn8ZpqE= -github.com/openstack-k8s-operators/infra-operator/apis v0.6.1-0.20260416122644-5476763a36b6/go.mod h1:i7l8cihvFktd/LSuyvL2z6OcwauarQGoVhDMePL4VyI= -github.com/openstack-k8s-operators/ironic-operator/api v0.6.1-0.20260420052552-1ba026c533d6 h1:thGt9sbYC1L9/UvkeYQQbWGxeiNeaXVckB/0QuBkN78= -github.com/openstack-k8s-operators/ironic-operator/api v0.6.1-0.20260420052552-1ba026c533d6/go.mod h1:pnFZOetSrSoCdyMyTOUTfsFTdwtGwNFKtaPNNZtyHuw= -github.com/openstack-k8s-operators/keystone-operator/api v0.6.1-0.20260420052838-77f94aef5af2 h1:h7pTz90cHqX6nTYjYDphuitIfD4UpM9yGnI3AbLdHrY= -github.com/openstack-k8s-operators/keystone-operator/api v0.6.1-0.20260420052838-77f94aef5af2/go.mod h1:SpO4CL7c5/1HG+61fP6kWhL2+3aqR+5SNatdZueKrz8= -github.com/openstack-k8s-operators/lib-common/modules/common v0.6.1-0.20260417092244-81c71b39e981 h1:v1viH0gmNb+AXMg/0GxDcj8VUTdjVLotfOIGrNyMxHk= -github.com/openstack-k8s-operators/lib-common/modules/common v0.6.1-0.20260417092244-81c71b39e981/go.mod h1:I/VBXZLdjk8DUGsEbB+Ha72JBFYYntP7Pm2FpEto9K8= +github.com/openstack-k8s-operators/barbican-operator/api v0.6.1-0.20260428063333-0a225c8d5510 h1:i2ShapqE2SsCZ3Tv/g4S3Y11FJ1gPObB9m4qCpb0L/A= +github.com/openstack-k8s-operators/barbican-operator/api v0.6.1-0.20260428063333-0a225c8d5510/go.mod h1:6bu/qohiAeJW4HxTPOiU84vcT3sJT8o9ujwSGoYiP40= +github.com/openstack-k8s-operators/cinder-operator/api v0.6.1-0.20260430090430-c95756ebdf64 h1:z+8R234+LCzZux/HEfz/HR65yrl9CWiwxBHMbL8eNdw= +github.com/openstack-k8s-operators/cinder-operator/api v0.6.1-0.20260430090430-c95756ebdf64/go.mod h1:E7wUzgxiPnq0YKazr8E4DfLYSA2X5ZvxVeFZhSv9uSM= +github.com/openstack-k8s-operators/designate-operator/api v0.6.1-0.20260428063332-408c912c480a h1:8lsLYhuKR2VzeRGESzWzcRfVmPrcL13Uq3YetX1K5xg= +github.com/openstack-k8s-operators/designate-operator/api v0.6.1-0.20260428063332-408c912c480a/go.mod h1:6+eh8ruuZGkYVstMD5fjAxqAPljEnSRQlkJU007WWcc= +github.com/openstack-k8s-operators/glance-operator/api v0.6.1-0.20260430094336-e0146f3fbf46 h1:5rJh+HeBDs/zQEXKook2uYZSYgOkA6KTeR1rraq/vGY= +github.com/openstack-k8s-operators/glance-operator/api v0.6.1-0.20260430094336-e0146f3fbf46/go.mod h1:83/F/WSVOkh40RQG9Qqst7IBbx/qrEJRcztmt7imSFI= +github.com/openstack-k8s-operators/heat-operator/api v0.6.1-0.20260428063332-32d27fe544a9 h1:DpUqWKiI65YNSDknN/uHO0Yl90DdS7omfrdszZHA1Pw= +github.com/openstack-k8s-operators/heat-operator/api v0.6.1-0.20260428063332-32d27fe544a9/go.mod h1:QV5Oj54Ewg3pRycVeW9LLKl/NZJzHomhiL1lFRvf0dk= +github.com/openstack-k8s-operators/horizon-operator/api v0.6.1-0.20260430085555-5d886c8db8b0 h1:oL+p/diR6LR6UwLzE+X9tu8L3RwU9aQ0zJbyf+sxmbs= +github.com/openstack-k8s-operators/horizon-operator/api v0.6.1-0.20260430085555-5d886c8db8b0/go.mod h1:PW7ebQPPfld1OY0lIXR4CFsle7qH7bQhTWqU5M1BUAQ= +github.com/openstack-k8s-operators/infra-operator/apis v0.6.1-0.20260429072348-e2e8eaa49a92 h1:/xZ+mtizRRxDmL2eMlnBBFT5b2Yr2Pxi5I5W23BppBY= +github.com/openstack-k8s-operators/infra-operator/apis v0.6.1-0.20260429072348-e2e8eaa49a92/go.mod h1:Z2Wawr4ua5ORCFEjMGs8i8ijbPY0MS1mg8PVVR7q4NA= +github.com/openstack-k8s-operators/ironic-operator/api v0.6.1-0.20260429232424-241f1b9467e4 h1:dkIItWolByojCmNRFa/YQlTklJsJDTRyoq/KeZQZNDU= +github.com/openstack-k8s-operators/ironic-operator/api v0.6.1-0.20260429232424-241f1b9467e4/go.mod h1:Pmpv3CXIpJHfuKmnXJX3K5m93g9wydTBH6STQAd3Gts= +github.com/openstack-k8s-operators/keystone-operator/api v0.6.1-0.20260425213537-3fb7aab1c5a4 h1:qOo3koBusH6COM2VYGCEKqeluFLB5GzPR3i+kHTLb8o= +github.com/openstack-k8s-operators/keystone-operator/api v0.6.1-0.20260425213537-3fb7aab1c5a4/go.mod h1:SpO4CL7c5/1HG+61fP6kWhL2+3aqR+5SNatdZueKrz8= +github.com/openstack-k8s-operators/lib-common/modules/common v0.6.1-0.20260430090237-a4265c18a162 h1:VocgU7/0Z1cR8zmw7eoY/mTdLRKvEPpvP4znr8MS0+0= +github.com/openstack-k8s-operators/lib-common/modules/common v0.6.1-0.20260430090237-a4265c18a162/go.mod h1:F5HjUr4ISngkO9343y7m7oG7GFCh0bOSi3G7sQ61qH8= github.com/openstack-k8s-operators/lib-common/modules/openstack v0.6.1-0.20260417092244-81c71b39e981 h1:jN3Kvt+RYUTaL9EXeeeIqRXVjqeNF74SuLTDXmi4X2Y= github.com/openstack-k8s-operators/lib-common/modules/openstack v0.6.1-0.20260417092244-81c71b39e981/go.mod h1:7yqbVpg0k0vW+kZks+TMU/cd1ovoejyHfVPWcyGYLHI= -github.com/openstack-k8s-operators/lib-common/modules/storage v0.6.1-0.20260417092244-81c71b39e981 h1:X3/Gc+i0ZxaROExrpLXonz9EPhftlubFnOK4aSkRLvo= -github.com/openstack-k8s-operators/lib-common/modules/storage v0.6.1-0.20260417092244-81c71b39e981/go.mod h1:3loLaPUDQyvbPekylZd9OCLF+EXH2klRI9IeeQhuMcs= -github.com/openstack-k8s-operators/manila-operator/api v0.6.1-0.20260420052836-ac1a4d8a769e h1:bymDbHC6lMbZUbg3dJi5ajS+i4/z5Q77r2nuz4VpBfc= -github.com/openstack-k8s-operators/manila-operator/api v0.6.1-0.20260420052836-ac1a4d8a769e/go.mod h1:aKKbe1AraYGWby2tLTT0sBB4iFH5ZnrZ/uzhf7RwzLs= -github.com/openstack-k8s-operators/mariadb-operator/api v0.6.1-0.20260413152655-564a51226a2a h1:1VRHhhCE8U0+Q6jPNppxcklIVfK7gZ2Js9VaLpPR7sw= -github.com/openstack-k8s-operators/mariadb-operator/api v0.6.1-0.20260413152655-564a51226a2a/go.mod h1:g/xgMnzNHxdTkqnEgAKwVOv75uPN4nuApbkGqSvASvs= -github.com/openstack-k8s-operators/neutron-operator/api v0.6.1-0.20260420052839-b9314e4e03a3 h1:XyJrYBPiLCyUysII5RtHKjTekxrL3wxPEBlSvo0SKOQ= -github.com/openstack-k8s-operators/neutron-operator/api v0.6.1-0.20260420052839-b9314e4e03a3/go.mod h1:5jWDZDariGwym2q926i/VtR16dgNAvY4mTM/UekciKw= -github.com/openstack-k8s-operators/nova-operator/api v0.6.1-0.20260413153813-b59b2a226c10 h1:6DQAN11CMaStZezMumXgayPpJQVGfsWxn04xPsOsHaM= -github.com/openstack-k8s-operators/nova-operator/api v0.6.1-0.20260413153813-b59b2a226c10/go.mod h1:ZQpGqN3AszLv7OoySPuCFyrNkuOEi1lPTymhbd1gOrc= -github.com/openstack-k8s-operators/octavia-operator/api v0.6.1-0.20260413082059-d107b5bac378 h1:h72lnvPcecgJqOindL68zIZmcJY6xM0EjY5FYe5Z7Qw= -github.com/openstack-k8s-operators/octavia-operator/api v0.6.1-0.20260413082059-d107b5bac378/go.mod h1:XO02J/MSp7f+HMyoT5xImUvTtDvDY4SgG2mi+nwdTMY= -github.com/openstack-k8s-operators/openstack-baremetal-operator/api v0.6.1-0.20260413094947-83f411fa655c h1:77hLym7nButLmaRm2aKozn0kW2WmrAaaYpx/HWHlUzc= -github.com/openstack-k8s-operators/openstack-baremetal-operator/api v0.6.1-0.20260413094947-83f411fa655c/go.mod h1:WKiIsGtY1q6VbpSa8QmOY3rYFpI061hwqYVFnAFfiFI= -github.com/openstack-k8s-operators/ovn-operator/api v0.6.1-0.20260420053123-cf0908d8cf39 h1:PQ025L6DttCoxwHqLTpw0v0W9VEXrCqYLfGDnR04GyI= -github.com/openstack-k8s-operators/ovn-operator/api v0.6.1-0.20260420053123-cf0908d8cf39/go.mod h1:ODYNTFMUlzvjlqXAh9AGXrzpBNQBAOkWiNQ6UldsqFw= +github.com/openstack-k8s-operators/lib-common/modules/storage v0.6.1-0.20260430090237-a4265c18a162 h1:b/E0t3klHOxMUzpp/TaMB6OwLliv9mwsHxE94i8Rifc= +github.com/openstack-k8s-operators/lib-common/modules/storage v0.6.1-0.20260430090237-a4265c18a162/go.mod h1:xSRQQt2ygoUdjq0pJelQ7X2aeKPIgAj71O9NpV10CQY= +github.com/openstack-k8s-operators/manila-operator/api v0.6.1-0.20260430052821-795fe4401ef4 h1:MbiTWH9GUmdmz8+nio5It/vBBj0bkd0Pt5+zqGLA2II= +github.com/openstack-k8s-operators/manila-operator/api v0.6.1-0.20260430052821-795fe4401ef4/go.mod h1:gKMvtwhXQr++WBGorQd1iuzBflZ/1Nh6v41Eztsq3NU= +github.com/openstack-k8s-operators/mariadb-operator/api v0.6.1-0.20260428063048-3a190112bad3 h1:DpFGsHG6W3iBETORDeZq+mb6SNzzfqvRAs3hEb03x8o= +github.com/openstack-k8s-operators/mariadb-operator/api v0.6.1-0.20260428063048-3a190112bad3/go.mod h1:/G9BlQgetewOvw3YAouzZGM0foymuzQPV51GhYf6uuY= +github.com/openstack-k8s-operators/neutron-operator/api v0.6.1-0.20260427095537-d1f5e517f199 h1:K1Q8fm0VEjqCgTFmMXmh5lMwQ6AQmlGRneglfn9OMqY= +github.com/openstack-k8s-operators/neutron-operator/api v0.6.1-0.20260427095537-d1f5e517f199/go.mod h1:+byFQ1kxLQWwhNaNnTIKPpmCJsZE9rjx6SBGD/71Bq4= +github.com/openstack-k8s-operators/nova-operator/api v0.6.1-0.20260421072856-123b74ba975b h1:h8+J0P2wm9ASaZGPIkP15fcjUfoyUyIKFlKFzf8Z1y0= +github.com/openstack-k8s-operators/nova-operator/api v0.6.1-0.20260421072856-123b74ba975b/go.mod h1:BBdKyLuKyCTwMWShJAWIiZEgSPCKx6AAv/V5XoOIkd4= +github.com/openstack-k8s-operators/octavia-operator/api v0.6.1-0.20260425214107-96bce8dcad8b h1:L7BMIITBxSr3IRVzdRt8FBttEIIGxptoFtMZn+MaDg8= +github.com/openstack-k8s-operators/octavia-operator/api v0.6.1-0.20260425214107-96bce8dcad8b/go.mod h1:WDZ3yrs6c+umsd4jomayJhC1StUzK2doXzJ0UAM6RwE= +github.com/openstack-k8s-operators/openstack-baremetal-operator/api v0.6.1-0.20260428063048-b5adaaed7659 h1:8w82E6RbWOdZj26vru7O7Cix7TFNIDYAiFMFCVuLXRI= +github.com/openstack-k8s-operators/openstack-baremetal-operator/api v0.6.1-0.20260428063048-b5adaaed7659/go.mod h1:aFdkGMEhceuEdOLZFIHrD67C87AxnMMv1DeRLSOunu4= +github.com/openstack-k8s-operators/ovn-operator/api v0.6.1-0.20260428063332-55b3554934b5 h1:E8KZkBUK2QzIEksFVxMUg0ETzvAX7uNuEg+2UqmX45I= +github.com/openstack-k8s-operators/ovn-operator/api v0.6.1-0.20260428063332-55b3554934b5/go.mod h1:ODYNTFMUlzvjlqXAh9AGXrzpBNQBAOkWiNQ6UldsqFw= github.com/openstack-k8s-operators/placement-operator/api v0.6.1-0.20260413090520-f18a11875c1d h1:ZvVIq5E/F82tqQckheo3WnL6XywTPc+PiJWyrllkyVo= github.com/openstack-k8s-operators/placement-operator/api v0.6.1-0.20260413090520-f18a11875c1d/go.mod h1:34ka8QoEZ2LFmJv6wO5l9U29f9Kd1vizVzbkzRQnwVA= -github.com/openstack-k8s-operators/swift-operator/api v0.6.1-0.20260418085220-949c802081aa h1:pnzRdcdTy91mxcU93e7xp9gn+pNyWyOdB8w/WlRynvo= -github.com/openstack-k8s-operators/swift-operator/api v0.6.1-0.20260418085220-949c802081aa/go.mod h1:REDdMRGrY7JhGOsrKXt4hNZJAq0f6b3ykVh/Wyy4UXs= -github.com/openstack-k8s-operators/telemetry-operator/api v0.6.1-0.20260420053123-02a691a5b4d4 h1:82WLFtF/6P1VwcVoyfO9vjEdMnkQFpHkVq4I3YY7L28= -github.com/openstack-k8s-operators/telemetry-operator/api v0.6.1-0.20260420053123-02a691a5b4d4/go.mod h1:5PWJhM4FSPNBlA6+ClP6/ZbKQA8zlaL31ryWZIDRtAY= -github.com/openstack-k8s-operators/watcher-operator/api v0.6.1-0.20260414124111-458e17672b3c h1:LnydnAg5YQD6994n0FAv3X7awJXl5b1FQsUeqNFzPws= -github.com/openstack-k8s-operators/watcher-operator/api v0.6.1-0.20260414124111-458e17672b3c/go.mod h1:9ubKnJmL/9HLt6cqbbiv4XTcPrqf5ddfPKTxZi3LD/s= +github.com/openstack-k8s-operators/swift-operator/api v0.6.1-0.20260430052822-e67818864e26 h1:8DGvP9Y/IJAbvucMDvVi1k+ubp3bW17zB7kQClfbZpE= +github.com/openstack-k8s-operators/swift-operator/api v0.6.1-0.20260430052822-e67818864e26/go.mod h1:G8lQoQMRz4GKxdYL0MLGF8XJpZRbzQlDfbXLGAIqmSY= +github.com/openstack-k8s-operators/telemetry-operator/api v0.6.1-0.20260430174810-f0e56413c3c0 h1:BIkLvrMdG6fmXJ+OOazVKiujaP4RIkosf4fICuGAhhY= +github.com/openstack-k8s-operators/telemetry-operator/api v0.6.1-0.20260430174810-f0e56413c3c0/go.mod h1:5PWJhM4FSPNBlA6+ClP6/ZbKQA8zlaL31ryWZIDRtAY= +github.com/openstack-k8s-operators/watcher-operator/api v0.6.1-0.20260428084423-26f6eac1e089 h1:KyEAJQweVb/rbJIu8Vu5ZZDgvMcnuRhwGDa+y8sLA1c= +github.com/openstack-k8s-operators/watcher-operator/api v0.6.1-0.20260428084423-26f6eac1e089/go.mod h1:iE1kDOYq+/IW9IjOQeK19/BkcjzaHxOrV+TmJyqcNd8= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= diff --git a/bindata/crds/crds.yaml b/bindata/crds/crds.yaml index 38aed21500..0d3d8bd8e9 100644 --- a/bindata/crds/crds.yaml +++ b/bindata/crds/crds.yaml @@ -5072,6 +5072,75 @@ spec: type: object override: properties: + probes: + properties: + livenessProbes: + properties: + failureThreshold: + format: int32 + minimum: 1 + type: integer + initialDelaySeconds: + format: int32 + minimum: 0 + type: integer + path: + pattern: ^(/.*)?$ + type: string + periodSeconds: + format: int32 + minimum: 1 + type: integer + timeoutSeconds: + format: int32 + minimum: 1 + type: integer + type: object + readinessProbes: + properties: + failureThreshold: + format: int32 + minimum: 1 + type: integer + initialDelaySeconds: + format: int32 + minimum: 0 + type: integer + path: + pattern: ^(/.*)?$ + type: string + periodSeconds: + format: int32 + minimum: 1 + type: integer + timeoutSeconds: + format: int32 + minimum: 1 + type: integer + type: object + startupProbes: + properties: + failureThreshold: + format: int32 + minimum: 1 + type: integer + initialDelaySeconds: + format: int32 + minimum: 0 + type: integer + path: + pattern: ^(/.*)?$ + type: string + periodSeconds: + format: int32 + minimum: 1 + type: integer + timeoutSeconds: + format: int32 + minimum: 1 + type: integer + type: object + type: object service: additionalProperties: properties: @@ -13613,9 +13682,23 @@ spec: type: object ovnLogLevel: default: info + enum: + - "off" + - emer + - err + - warn + - info + - dbg type: string ovsLogLevel: default: info + enum: + - "off" + - emer + - err + - warn + - info + - dbg type: string resources: properties: @@ -13682,6 +13765,13 @@ spec: type: integer logLevel: default: info + enum: + - "off" + - emer + - err + - warn + - info + - dbg type: string metricsEnabled: default: true @@ -13817,6 +13907,13 @@ spec: properties: logLevel: default: info + enum: + - "off" + - emer + - err + - warn + - info + - dbg type: string metricsEnabled: default: true diff --git a/bindata/crds/glance.openstack.org_glanceapis.yaml b/bindata/crds/glance.openstack.org_glanceapis.yaml index a8fcb900d6..704a36fd1a 100644 --- a/bindata/crds/glance.openstack.org_glanceapis.yaml +++ b/bindata/crds/glance.openstack.org_glanceapis.yaml @@ -1266,6 +1266,93 @@ spec: description: Override, provides the ability to override the generated manifest of several child resources. properties: + probes: + description: Override probes and other common fields in the StatefulSet + properties: + livenessProbes: + description: |- + Override configuration for the StatefulSet like Probes and other tunable + fields + properties: + failureThreshold: + format: int32 + minimum: 1 + type: integer + initialDelaySeconds: + format: int32 + minimum: 0 + type: integer + path: + pattern: ^(/.*)?$ + type: string + periodSeconds: + format: int32 + minimum: 1 + type: integer + timeoutSeconds: + format: int32 + minimum: 1 + type: integer + type: object + readinessProbes: + description: |- + ProbeConf - the configuration for liveness and readiness probes + LivenessPath - Endpoint path for the liveness probe + ReadinessPath - Endpoint path for the readiness probe + InitialDelaySeconds - Number of seconds after the container starts before liveness/readiness probes are initiated + TimeoutSeconds - Number of seconds after which the probe times out + PeriodSeconds - How often (in seconds) to perform the probe + properties: + failureThreshold: + format: int32 + minimum: 1 + type: integer + initialDelaySeconds: + format: int32 + minimum: 0 + type: integer + path: + pattern: ^(/.*)?$ + type: string + periodSeconds: + format: int32 + minimum: 1 + type: integer + timeoutSeconds: + format: int32 + minimum: 1 + type: integer + type: object + startupProbes: + description: |- + ProbeConf - the configuration for liveness and readiness probes + LivenessPath - Endpoint path for the liveness probe + ReadinessPath - Endpoint path for the readiness probe + InitialDelaySeconds - Number of seconds after the container starts before liveness/readiness probes are initiated + TimeoutSeconds - Number of seconds after which the probe times out + PeriodSeconds - How often (in seconds) to perform the probe + properties: + failureThreshold: + format: int32 + minimum: 1 + type: integer + initialDelaySeconds: + format: int32 + minimum: 0 + type: integer + path: + pattern: ^(/.*)?$ + type: string + periodSeconds: + format: int32 + minimum: 1 + type: integer + timeoutSeconds: + format: int32 + minimum: 1 + type: integer + type: object + type: object service: additionalProperties: description: |- diff --git a/bindata/crds/glance.openstack.org_glances.yaml b/bindata/crds/glance.openstack.org_glances.yaml index 730a56fb59..835cfaf38c 100644 --- a/bindata/crds/glance.openstack.org_glances.yaml +++ b/bindata/crds/glance.openstack.org_glances.yaml @@ -1290,6 +1290,94 @@ spec: description: Override, provides the ability to override the generated manifest of several child resources. properties: + probes: + description: Override probes and other common fields in + the StatefulSet + properties: + livenessProbes: + description: |- + Override configuration for the StatefulSet like Probes and other tunable + fields + properties: + failureThreshold: + format: int32 + minimum: 1 + type: integer + initialDelaySeconds: + format: int32 + minimum: 0 + type: integer + path: + pattern: ^(/.*)?$ + type: string + periodSeconds: + format: int32 + minimum: 1 + type: integer + timeoutSeconds: + format: int32 + minimum: 1 + type: integer + type: object + readinessProbes: + description: |- + ProbeConf - the configuration for liveness and readiness probes + LivenessPath - Endpoint path for the liveness probe + ReadinessPath - Endpoint path for the readiness probe + InitialDelaySeconds - Number of seconds after the container starts before liveness/readiness probes are initiated + TimeoutSeconds - Number of seconds after which the probe times out + PeriodSeconds - How often (in seconds) to perform the probe + properties: + failureThreshold: + format: int32 + minimum: 1 + type: integer + initialDelaySeconds: + format: int32 + minimum: 0 + type: integer + path: + pattern: ^(/.*)?$ + type: string + periodSeconds: + format: int32 + minimum: 1 + type: integer + timeoutSeconds: + format: int32 + minimum: 1 + type: integer + type: object + startupProbes: + description: |- + ProbeConf - the configuration for liveness and readiness probes + LivenessPath - Endpoint path for the liveness probe + ReadinessPath - Endpoint path for the readiness probe + InitialDelaySeconds - Number of seconds after the container starts before liveness/readiness probes are initiated + TimeoutSeconds - Number of seconds after which the probe times out + PeriodSeconds - How often (in seconds) to perform the probe + properties: + failureThreshold: + format: int32 + minimum: 1 + type: integer + initialDelaySeconds: + format: int32 + minimum: 0 + type: integer + path: + pattern: ^(/.*)?$ + type: string + periodSeconds: + format: int32 + minimum: 1 + type: integer + timeoutSeconds: + format: int32 + minimum: 1 + type: integer + type: object + type: object service: additionalProperties: description: |- diff --git a/bindata/crds/ovn.openstack.org_ovncontrollers.yaml b/bindata/crds/ovn.openstack.org_ovncontrollers.yaml index 9a34138036..8fe402eed0 100644 --- a/bindata/crds/ovn.openstack.org_ovncontrollers.yaml +++ b/bindata/crds/ovn.openstack.org_ovncontrollers.yaml @@ -152,8 +152,15 @@ spec: type: string ovnLogLevel: default: info - description: OVNLogLevel - Set log level off, emer, err, warn, info, + description: OVNLogLevel - Set log level off, emer, err, warn, info or dbg. Default is info. + enum: + - "off" + - emer + - err + - warn + - info + - dbg type: string ovsContainerImage: description: Image used for the ovsdb-server and ovs-vswitchd containers @@ -161,8 +168,15 @@ spec: type: string ovsLogLevel: default: info - description: OVSLogLevel - Set log level off, emer, err, warn, info, + description: OVSLogLevel - Set log level off, emer, err, warn, info or dbg. Default is info. + enum: + - "off" + - emer + - err + - warn + - info + - dbg type: string resources: description: |- diff --git a/bindata/crds/ovn.openstack.org_ovndbclusters.yaml b/bindata/crds/ovn.openstack.org_ovndbclusters.yaml index ad2d4748dc..08d3501a49 100644 --- a/bindata/crds/ovn.openstack.org_ovndbclusters.yaml +++ b/bindata/crds/ovn.openstack.org_ovndbclusters.yaml @@ -78,7 +78,15 @@ spec: type: integer logLevel: default: info - description: LogLevel - Set log level info, dbg, emer etc + description: LogLevel - Set log level off, emer, err, warn, info or + dbg. Default is info. + enum: + - "off" + - emer + - err + - warn + - info + - dbg type: string metricsEnabled: default: true diff --git a/bindata/crds/ovn.openstack.org_ovnnorthds.yaml b/bindata/crds/ovn.openstack.org_ovnnorthds.yaml index 6a5a7264ac..08b3de43e2 100644 --- a/bindata/crds/ovn.openstack.org_ovnnorthds.yaml +++ b/bindata/crds/ovn.openstack.org_ovnnorthds.yaml @@ -58,7 +58,15 @@ spec: type: string logLevel: default: info - description: LogLevel - Set log level info, dbg, emer etc + description: LogLevel - Set log level off, emer, err, warn, info or + dbg. Default is info. + enum: + - "off" + - emer + - err + - warn + - info + - dbg type: string metricsEnabled: default: true diff --git a/config/crd/bases/core.openstack.org_openstackcontrolplanes.yaml b/config/crd/bases/core.openstack.org_openstackcontrolplanes.yaml index 81a216d318..31e2de4a89 100644 --- a/config/crd/bases/core.openstack.org_openstackcontrolplanes.yaml +++ b/config/crd/bases/core.openstack.org_openstackcontrolplanes.yaml @@ -4538,6 +4538,75 @@ spec: type: object override: properties: + probes: + properties: + livenessProbes: + properties: + failureThreshold: + format: int32 + minimum: 1 + type: integer + initialDelaySeconds: + format: int32 + minimum: 0 + type: integer + path: + pattern: ^(/.*)?$ + type: string + periodSeconds: + format: int32 + minimum: 1 + type: integer + timeoutSeconds: + format: int32 + minimum: 1 + type: integer + type: object + readinessProbes: + properties: + failureThreshold: + format: int32 + minimum: 1 + type: integer + initialDelaySeconds: + format: int32 + minimum: 0 + type: integer + path: + pattern: ^(/.*)?$ + type: string + periodSeconds: + format: int32 + minimum: 1 + type: integer + timeoutSeconds: + format: int32 + minimum: 1 + type: integer + type: object + startupProbes: + properties: + failureThreshold: + format: int32 + minimum: 1 + type: integer + initialDelaySeconds: + format: int32 + minimum: 0 + type: integer + path: + pattern: ^(/.*)?$ + type: string + periodSeconds: + format: int32 + minimum: 1 + type: integer + timeoutSeconds: + format: int32 + minimum: 1 + type: integer + type: object + type: object service: additionalProperties: properties: @@ -13079,9 +13148,23 @@ spec: type: object ovnLogLevel: default: info + enum: + - "off" + - emer + - err + - warn + - info + - dbg type: string ovsLogLevel: default: info + enum: + - "off" + - emer + - err + - warn + - info + - dbg type: string resources: properties: @@ -13148,6 +13231,13 @@ spec: type: integer logLevel: default: info + enum: + - "off" + - emer + - err + - warn + - info + - dbg type: string metricsEnabled: default: true @@ -13283,6 +13373,13 @@ spec: properties: logLevel: default: info + enum: + - "off" + - emer + - err + - warn + - info + - dbg type: string metricsEnabled: default: true diff --git a/config/operator/manager_operator_images.yaml b/config/operator/manager_operator_images.yaml index d98666ab03..c62a1f7c50 100644 --- a/config/operator/manager_operator_images.yaml +++ b/config/operator/manager_operator_images.yaml @@ -14,44 +14,44 @@ spec: - name: operator env: - name: RELATED_IMAGE_BARBICAN_OPERATOR_MANAGER_IMAGE_URL - value: quay.io/openstack-k8s-operators/barbican-operator@sha256:cc087821d117bd400dd4701776f4dd94a2e159729a94eeef3711e90acd9e1652 + value: quay.io/openstack-k8s-operators/barbican-operator@sha256:e1861fbfa014aad1847de7b4aeafc21a6fe23c4b7e551ec7d5b3580a90942b81 - name: RELATED_IMAGE_CINDER_OPERATOR_MANAGER_IMAGE_URL - value: quay.io/openstack-k8s-operators/cinder-operator@sha256:7a2ff35a26f4540cabe5818a86abdd1ce34104560109fc22d228e06cdb3b63ea + value: quay.io/openstack-k8s-operators/cinder-operator@sha256:c0e74a00669d6d5922659c11007286cafdda3f1e08b8600397561eb075a3fda5 - name: RELATED_IMAGE_DESIGNATE_OPERATOR_MANAGER_IMAGE_URL - value: quay.io/openstack-k8s-operators/designate-operator@sha256:fb71a1f261da5620aa4d7fe5f6e698b5f03c12c0b8982aec5367b00792635cb3 + value: quay.io/openstack-k8s-operators/designate-operator@sha256:626dacfea5a6722d092841dc7f179444ae1874795e95e403638c36593cf6cb60 - name: RELATED_IMAGE_GLANCE_OPERATOR_MANAGER_IMAGE_URL - value: quay.io/openstack-k8s-operators/glance-operator@sha256:c6c51902eae4064427040a648a3172b2a2663ed75ba5fe65bf4f5ea20ff4b983 + value: quay.io/openstack-k8s-operators/glance-operator@sha256:b0151fffcb9c7ce672e6f4822e0fbea92fc4b345a5b60422fa296ec9e43036c7 - name: RELATED_IMAGE_HEAT_OPERATOR_MANAGER_IMAGE_URL - value: quay.io/openstack-k8s-operators/heat-operator@sha256:051fb60096064551502a9e69bb1b54f4303e7941ceb91cebdb12f24aa12bc301 + value: quay.io/openstack-k8s-operators/heat-operator@sha256:597a6cba39ee8f3a939b5435fccac85fda200a23f69a48231ab1fdb2d95823d0 - name: RELATED_IMAGE_HORIZON_OPERATOR_MANAGER_IMAGE_URL - value: quay.io/openstack-k8s-operators/horizon-operator@sha256:705211b1980c1d4c84b284a20b7a6e1662da9912027377e611b682da88dca8ec + value: quay.io/openstack-k8s-operators/horizon-operator@sha256:f12a5ce5fb73d8d1210914c6bcfad9df5e7026759bd94ef9d0b46451c6b6b2d4 - name: RELATED_IMAGE_INFRA_OPERATOR_MANAGER_IMAGE_URL - value: quay.io/openstack-k8s-operators/infra-operator@sha256:508d7cc33da4e4d1bc03e0b0f03dfb8f5875639e9b18354f8aea1c2110224d08 + value: quay.io/openstack-k8s-operators/infra-operator@sha256:0da2022270b508781271f009befe1050b265447d41a248215371f4079ac3d8a5 - name: RELATED_IMAGE_IRONIC_OPERATOR_MANAGER_IMAGE_URL - value: quay.io/openstack-k8s-operators/ironic-operator@sha256:d32d5dc44157ad38f7df15630a03a6d0429f98360fc7f798a392d33f8fbf1869 + value: quay.io/openstack-k8s-operators/ironic-operator@sha256:b93c4a3f0fdc2829d591051e7e582a46cd0b58314bdbec3309d61d985a697113 - name: RELATED_IMAGE_KEYSTONE_OPERATOR_MANAGER_IMAGE_URL - value: quay.io/openstack-k8s-operators/keystone-operator@sha256:dee0da68f43b117f55bcf0d5bf224deba7845cd3058eb7b6f49d757d96829f2b + value: quay.io/openstack-k8s-operators/keystone-operator@sha256:c1a635b812eeb99f92badac729e18f12255843b0fce8662b839cd35195a4b55b - name: RELATED_IMAGE_MANILA_OPERATOR_MANAGER_IMAGE_URL - value: quay.io/openstack-k8s-operators/manila-operator@sha256:4a1978fcd77a62c0ee127dfc3c75b5a5273b871aac52c60ad1a0cef46d004acf + value: quay.io/openstack-k8s-operators/manila-operator@sha256:e97d1cfe70ff2af2b2ae7803a08894a891257e50b09686fe93fded855b9a6e64 - name: RELATED_IMAGE_MARIADB_OPERATOR_MANAGER_IMAGE_URL - value: quay.io/openstack-k8s-operators/mariadb-operator@sha256:8fc0cdfb302b8e16ff7a990a8a6219877e52ae1a4555440255fd11da830c8fcc + value: quay.io/openstack-k8s-operators/mariadb-operator@sha256:9f9fbe8a0e57548f01d787101f620d66ec0b37b6d6e1ed24e8f731790966e182 - name: RELATED_IMAGE_NEUTRON_OPERATOR_MANAGER_IMAGE_URL - value: quay.io/openstack-k8s-operators/neutron-operator@sha256:c256f93a5226c9aa0ad094ce8c9c9d1cd06ce05149b36e15863f96c965219e04 + value: quay.io/openstack-k8s-operators/neutron-operator@sha256:fe8652e123667acd0014231498e8232cd47b9044a232642706fb1e2494e4ddaf - name: RELATED_IMAGE_NOVA_OPERATOR_MANAGER_IMAGE_URL - value: quay.io/openstack-k8s-operators/nova-operator@sha256:6fbc3cddca9ccfd70a160f4e2d1e7a3199fd774fd483a3303228245c8fc0e859 + value: quay.io/openstack-k8s-operators/nova-operator@sha256:d837d30127945a40462b62e9bf47e659bfc4ec7bb6690aaf890ab5e1be43d63a - name: RELATED_IMAGE_OCTAVIA_OPERATOR_MANAGER_IMAGE_URL - value: quay.io/openstack-k8s-operators/octavia-operator@sha256:3d89dcb18665d069912ab91c3d5ff5b7466b1def1ef03a9f7a833e3275742dee + value: quay.io/openstack-k8s-operators/octavia-operator@sha256:ffd17a974cda9d549490d1388c6248d2d72ef3fdd6125970d90a667a7b49766d - name: RELATED_IMAGE_OPENSTACK_BAREMETAL_OPERATOR_MANAGER_IMAGE_URL - value: quay.io/openstack-k8s-operators/openstack-baremetal-operator@sha256:03e1133636014341091acf892ed749f92643dabe4bfbc40c6b23ffc323581f02 + value: quay.io/openstack-k8s-operators/openstack-baremetal-operator@sha256:14de33cc802bcb31c0d3e7ae1765de7804a870ea96726cacd36d22e7faf0781b - name: RELATED_IMAGE_OVN_OPERATOR_MANAGER_IMAGE_URL - value: quay.io/openstack-k8s-operators/ovn-operator@sha256:9772d4018805275576f53367592d0cc1416bb4430594450a71d95ad936b8220b + value: quay.io/openstack-k8s-operators/ovn-operator@sha256:6c090a31ce39e3ccbae9b2d20b9271bda02a420eb2985a5ca7536a1a09667f2b - name: RELATED_IMAGE_PLACEMENT_OPERATOR_MANAGER_IMAGE_URL value: quay.io/openstack-k8s-operators/placement-operator@sha256:ca04fe7352ca3d6eaed5842f84c0efaa160403649d5bd6281d9b4ff7b315b6ec - name: RELATED_IMAGE_SWIFT_OPERATOR_MANAGER_IMAGE_URL - value: quay.io/openstack-k8s-operators/swift-operator@sha256:2e9e2417f81f4ff9d270a79cb03d1febb2741cd935e34d846fb9e2751ffffb87 + value: quay.io/openstack-k8s-operators/swift-operator@sha256:c3149a125c98ee4bc9cb675f32959ea7886b3944723120799bf8a0fc54982b7e - name: RELATED_IMAGE_TELEMETRY_OPERATOR_MANAGER_IMAGE_URL - value: quay.io/openstack-k8s-operators/telemetry-operator@sha256:281bc644d91aa53e716bcf0252e71b1c6f87b4937c2d1b661f3eee40539bb8a4 + value: quay.io/openstack-k8s-operators/telemetry-operator@sha256:cd08e99594edd23412888af7df736a1162df9a4622241bab2b3f7c54bd7ed659 - name: RELATED_IMAGE_TEST_OPERATOR_MANAGER_IMAGE_URL - value: quay.io/openstack-k8s-operators/test-operator@sha256:c85b39f2ac267b373b84dda5cfd88304eba5b5a8481045fe36f864a0b2c152fe + value: quay.io/openstack-k8s-operators/test-operator@sha256:2e7ff2b142b3ce81461cd33308687fec20ea560174b807e5ba4141892637ef2d - name: RELATED_IMAGE_WATCHER_OPERATOR_MANAGER_IMAGE_URL - value: quay.io/openstack-k8s-operators/watcher-operator@sha256:05dfc4e923d6a67418b3bb93f462c75d0d915b9eff8251ccc56b0f6b6d783ab8 + value: quay.io/openstack-k8s-operators/watcher-operator@sha256:957f63187188ca32ec8b985772070937f9ac78025b0bfa655b6fcd54282e30b3 diff --git a/go.mod b/go.mod index b14cb31975..9878c2641f 100644 --- a/go.mod +++ b/go.mod @@ -12,33 +12,33 @@ require ( github.com/onsi/ginkgo/v2 v2.28.2 github.com/onsi/gomega v1.39.1 github.com/openshift/api v3.9.0+incompatible - github.com/openstack-k8s-operators/barbican-operator/api v0.6.1-0.20260420052305-96c3a8196933 - github.com/openstack-k8s-operators/cinder-operator/api v0.6.1-0.20260418071314-55ff2fc10b0c - github.com/openstack-k8s-operators/designate-operator/api v0.6.1-0.20260418051458-40035e96e631 - github.com/openstack-k8s-operators/glance-operator/api v0.6.1-0.20260418071313-4af756ba3dac - github.com/openstack-k8s-operators/heat-operator/api v0.6.1-0.20260420052550-a562e0ee16fd - github.com/openstack-k8s-operators/horizon-operator/api v0.6.1-0.20260418053129-fb096ad89dce - github.com/openstack-k8s-operators/infra-operator/apis v0.6.1-0.20260416122644-5476763a36b6 - github.com/openstack-k8s-operators/ironic-operator/api v0.6.1-0.20260420052552-1ba026c533d6 - github.com/openstack-k8s-operators/keystone-operator/api v0.6.1-0.20260420052838-77f94aef5af2 - github.com/openstack-k8s-operators/lib-common/modules/ansible v0.6.1-0.20260417092244-81c71b39e981 - github.com/openstack-k8s-operators/lib-common/modules/certmanager v0.6.1-0.20260417092244-81c71b39e981 - github.com/openstack-k8s-operators/lib-common/modules/common v0.6.1-0.20260417092244-81c71b39e981 - github.com/openstack-k8s-operators/lib-common/modules/storage v0.6.1-0.20260417092244-81c71b39e981 - github.com/openstack-k8s-operators/lib-common/modules/test v0.6.1-0.20260417092244-81c71b39e981 - github.com/openstack-k8s-operators/manila-operator/api v0.6.1-0.20260420052836-ac1a4d8a769e - github.com/openstack-k8s-operators/mariadb-operator/api v0.6.1-0.20260413152655-564a51226a2a - github.com/openstack-k8s-operators/neutron-operator/api v0.6.1-0.20260420052839-b9314e4e03a3 - github.com/openstack-k8s-operators/nova-operator/api v0.6.1-0.20260413153813-b59b2a226c10 - github.com/openstack-k8s-operators/octavia-operator/api v0.6.1-0.20260413082059-d107b5bac378 - github.com/openstack-k8s-operators/openstack-baremetal-operator/api v0.6.1-0.20260413094947-83f411fa655c + github.com/openstack-k8s-operators/barbican-operator/api v0.6.1-0.20260428063333-0a225c8d5510 + github.com/openstack-k8s-operators/cinder-operator/api v0.6.1-0.20260430090430-c95756ebdf64 + github.com/openstack-k8s-operators/designate-operator/api v0.6.1-0.20260428063332-408c912c480a + github.com/openstack-k8s-operators/glance-operator/api v0.6.1-0.20260430094336-e0146f3fbf46 + github.com/openstack-k8s-operators/heat-operator/api v0.6.1-0.20260428063332-32d27fe544a9 + github.com/openstack-k8s-operators/horizon-operator/api v0.6.1-0.20260430085555-5d886c8db8b0 + github.com/openstack-k8s-operators/infra-operator/apis v0.6.1-0.20260429072348-e2e8eaa49a92 + github.com/openstack-k8s-operators/ironic-operator/api v0.6.1-0.20260429232424-241f1b9467e4 + github.com/openstack-k8s-operators/keystone-operator/api v0.6.1-0.20260425213537-3fb7aab1c5a4 + github.com/openstack-k8s-operators/lib-common/modules/ansible v0.6.1-0.20260430090237-a4265c18a162 + github.com/openstack-k8s-operators/lib-common/modules/certmanager v0.6.1-0.20260430090237-a4265c18a162 + github.com/openstack-k8s-operators/lib-common/modules/common v0.6.1-0.20260430090237-a4265c18a162 + github.com/openstack-k8s-operators/lib-common/modules/storage v0.6.1-0.20260430090237-a4265c18a162 + github.com/openstack-k8s-operators/lib-common/modules/test v0.6.1-0.20260430090237-a4265c18a162 + github.com/openstack-k8s-operators/manila-operator/api v0.6.1-0.20260430052821-795fe4401ef4 + github.com/openstack-k8s-operators/mariadb-operator/api v0.6.1-0.20260428063048-3a190112bad3 + github.com/openstack-k8s-operators/neutron-operator/api v0.6.1-0.20260427095537-d1f5e517f199 + github.com/openstack-k8s-operators/nova-operator/api v0.6.1-0.20260421072856-123b74ba975b + github.com/openstack-k8s-operators/octavia-operator/api v0.6.1-0.20260425214107-96bce8dcad8b + github.com/openstack-k8s-operators/openstack-baremetal-operator/api v0.6.1-0.20260428063048-b5adaaed7659 github.com/openstack-k8s-operators/openstack-operator/api v0.0.0-00010101000000-000000000000 - github.com/openstack-k8s-operators/ovn-operator/api v0.6.1-0.20260420053123-cf0908d8cf39 + github.com/openstack-k8s-operators/ovn-operator/api v0.6.1-0.20260428063332-55b3554934b5 github.com/openstack-k8s-operators/placement-operator/api v0.6.1-0.20260413090520-f18a11875c1d - github.com/openstack-k8s-operators/swift-operator/api v0.6.1-0.20260418085220-949c802081aa - github.com/openstack-k8s-operators/telemetry-operator/api v0.6.1-0.20260420053123-02a691a5b4d4 - github.com/openstack-k8s-operators/test-operator/api v0.6.1-0.20260416110435-a3f78e737417 - github.com/openstack-k8s-operators/watcher-operator/api v0.6.1-0.20260414124111-458e17672b3c + github.com/openstack-k8s-operators/swift-operator/api v0.6.1-0.20260430052822-e67818864e26 + github.com/openstack-k8s-operators/telemetry-operator/api v0.6.1-0.20260430174810-f0e56413c3c0 + github.com/openstack-k8s-operators/test-operator/api v0.6.1-0.20260428130236-ec6fe35fb77a + github.com/openstack-k8s-operators/watcher-operator/api v0.6.1-0.20260428084423-26f6eac1e089 github.com/pkg/errors v0.9.1 github.com/rabbitmq/cluster-operator/v2 v2.16.0 github.com/stretchr/testify v1.11.1 diff --git a/go.sum b/go.sum index a5b411964c..1a1d44684b 100644 --- a/go.sum +++ b/go.sum @@ -138,62 +138,62 @@ github.com/onsi/gomega v1.39.1 h1:1IJLAad4zjPn2PsnhH70V4DKRFlrCzGBNrNaru+Vf28= github.com/onsi/gomega v1.39.1/go.mod h1:hL6yVALoTOxeWudERyfppUcZXjMwIMLnuSfruD2lcfg= github.com/openshift/api v0.0.0-20250711200046-c86d80652a9e h1:E1OdwSpqWuDPCedyUt0GEdoAE+r5TXy7YS21yNEo+2U= github.com/openshift/api v0.0.0-20250711200046-c86d80652a9e/go.mod h1:Shkl4HanLwDiiBzakv+con/aMGnVE2MAGvoKp5oyYUo= -github.com/openstack-k8s-operators/barbican-operator/api v0.6.1-0.20260420052305-96c3a8196933 h1:Ks/OYlX2ipYy1XjAezm1955VkmwXoi+fAZlL0X0NDwM= -github.com/openstack-k8s-operators/barbican-operator/api v0.6.1-0.20260420052305-96c3a8196933/go.mod h1:GlhOX7fRcMXxNrRsxPcJOSWd8zvL3/Aitkjr7VWqP68= -github.com/openstack-k8s-operators/cinder-operator/api v0.6.1-0.20260418071314-55ff2fc10b0c h1:ID5FHF6qRqtiRyPtLvRbAYDPs3cDfE+jzElj1yuxCUk= -github.com/openstack-k8s-operators/cinder-operator/api v0.6.1-0.20260418071314-55ff2fc10b0c/go.mod h1:Jc3ZlAc3K1jWPcs9LChGtm0wEB2C2Uiescl63Z8CRAc= -github.com/openstack-k8s-operators/designate-operator/api v0.6.1-0.20260418051458-40035e96e631 h1:1sVW8CssuWlvjqcgcreKNfUesNIq/w5HqBWJ1gRZ5GA= -github.com/openstack-k8s-operators/designate-operator/api v0.6.1-0.20260418051458-40035e96e631/go.mod h1:hbnEtksRUDnwO6taj16Mny9exJQ/W89pSDZ8g8bFH5Q= -github.com/openstack-k8s-operators/glance-operator/api v0.6.1-0.20260418071313-4af756ba3dac h1:BfH8D+SaB/h9fQazX4SaurHLm4IfqHzB19K3+osmOgE= -github.com/openstack-k8s-operators/glance-operator/api v0.6.1-0.20260418071313-4af756ba3dac/go.mod h1:s2zNb7EGQoJXpuifWYeioTIEqjAL8hCR39tRbqxBnPU= -github.com/openstack-k8s-operators/heat-operator/api v0.6.1-0.20260420052550-a562e0ee16fd h1:qaM7SSTbdGbyb19CabSrniwnhnFpiRTkKipirpYTc+A= -github.com/openstack-k8s-operators/heat-operator/api v0.6.1-0.20260420052550-a562e0ee16fd/go.mod h1:aA+YEZ3UJCQvJB2X3qOliGVB7EXdImfJ0qV2jUG/L0E= -github.com/openstack-k8s-operators/horizon-operator/api v0.6.1-0.20260418053129-fb096ad89dce h1:4nqAqtmfoN3VoWtFhHj65iZhi40KNp254/trUuoTD0M= -github.com/openstack-k8s-operators/horizon-operator/api v0.6.1-0.20260418053129-fb096ad89dce/go.mod h1:ZMH+2206hZgGFjEhC+hhPvU+v6haNaeh5FR1mHylfqw= -github.com/openstack-k8s-operators/infra-operator/apis v0.6.1-0.20260416122644-5476763a36b6 h1:117Gu9HCSu2tAp579WnCJ9QtnslH2qnPB8UFvn8ZpqE= -github.com/openstack-k8s-operators/infra-operator/apis v0.6.1-0.20260416122644-5476763a36b6/go.mod h1:i7l8cihvFktd/LSuyvL2z6OcwauarQGoVhDMePL4VyI= -github.com/openstack-k8s-operators/ironic-operator/api v0.6.1-0.20260420052552-1ba026c533d6 h1:thGt9sbYC1L9/UvkeYQQbWGxeiNeaXVckB/0QuBkN78= -github.com/openstack-k8s-operators/ironic-operator/api v0.6.1-0.20260420052552-1ba026c533d6/go.mod h1:pnFZOetSrSoCdyMyTOUTfsFTdwtGwNFKtaPNNZtyHuw= -github.com/openstack-k8s-operators/keystone-operator/api v0.6.1-0.20260420052838-77f94aef5af2 h1:h7pTz90cHqX6nTYjYDphuitIfD4UpM9yGnI3AbLdHrY= -github.com/openstack-k8s-operators/keystone-operator/api v0.6.1-0.20260420052838-77f94aef5af2/go.mod h1:SpO4CL7c5/1HG+61fP6kWhL2+3aqR+5SNatdZueKrz8= -github.com/openstack-k8s-operators/lib-common/modules/ansible v0.6.1-0.20260417092244-81c71b39e981 h1:3aS6IFc8SHDf/tso8FKONOnhampZ3hV0ic0NH2FYmio= -github.com/openstack-k8s-operators/lib-common/modules/ansible v0.6.1-0.20260417092244-81c71b39e981/go.mod h1:tXxVkkk8HlATwTmDA5RTP3b+c8apfuMM15mZ2wW5iNs= -github.com/openstack-k8s-operators/lib-common/modules/certmanager v0.6.1-0.20260417092244-81c71b39e981 h1:G0YU5B6AhXDy/46urlNjz6tMXmHGDdoslgucTIN3F30= -github.com/openstack-k8s-operators/lib-common/modules/certmanager v0.6.1-0.20260417092244-81c71b39e981/go.mod h1:GzD7Jc5o98ptJ97DSjhC0CQ6OiTP0PB/2qJqxYGcOH8= -github.com/openstack-k8s-operators/lib-common/modules/common v0.6.1-0.20260417092244-81c71b39e981 h1:v1viH0gmNb+AXMg/0GxDcj8VUTdjVLotfOIGrNyMxHk= -github.com/openstack-k8s-operators/lib-common/modules/common v0.6.1-0.20260417092244-81c71b39e981/go.mod h1:I/VBXZLdjk8DUGsEbB+Ha72JBFYYntP7Pm2FpEto9K8= +github.com/openstack-k8s-operators/barbican-operator/api v0.6.1-0.20260428063333-0a225c8d5510 h1:i2ShapqE2SsCZ3Tv/g4S3Y11FJ1gPObB9m4qCpb0L/A= +github.com/openstack-k8s-operators/barbican-operator/api v0.6.1-0.20260428063333-0a225c8d5510/go.mod h1:6bu/qohiAeJW4HxTPOiU84vcT3sJT8o9ujwSGoYiP40= +github.com/openstack-k8s-operators/cinder-operator/api v0.6.1-0.20260430090430-c95756ebdf64 h1:z+8R234+LCzZux/HEfz/HR65yrl9CWiwxBHMbL8eNdw= +github.com/openstack-k8s-operators/cinder-operator/api v0.6.1-0.20260430090430-c95756ebdf64/go.mod h1:E7wUzgxiPnq0YKazr8E4DfLYSA2X5ZvxVeFZhSv9uSM= +github.com/openstack-k8s-operators/designate-operator/api v0.6.1-0.20260428063332-408c912c480a h1:8lsLYhuKR2VzeRGESzWzcRfVmPrcL13Uq3YetX1K5xg= +github.com/openstack-k8s-operators/designate-operator/api v0.6.1-0.20260428063332-408c912c480a/go.mod h1:6+eh8ruuZGkYVstMD5fjAxqAPljEnSRQlkJU007WWcc= +github.com/openstack-k8s-operators/glance-operator/api v0.6.1-0.20260430094336-e0146f3fbf46 h1:5rJh+HeBDs/zQEXKook2uYZSYgOkA6KTeR1rraq/vGY= +github.com/openstack-k8s-operators/glance-operator/api v0.6.1-0.20260430094336-e0146f3fbf46/go.mod h1:83/F/WSVOkh40RQG9Qqst7IBbx/qrEJRcztmt7imSFI= +github.com/openstack-k8s-operators/heat-operator/api v0.6.1-0.20260428063332-32d27fe544a9 h1:DpUqWKiI65YNSDknN/uHO0Yl90DdS7omfrdszZHA1Pw= +github.com/openstack-k8s-operators/heat-operator/api v0.6.1-0.20260428063332-32d27fe544a9/go.mod h1:QV5Oj54Ewg3pRycVeW9LLKl/NZJzHomhiL1lFRvf0dk= +github.com/openstack-k8s-operators/horizon-operator/api v0.6.1-0.20260430085555-5d886c8db8b0 h1:oL+p/diR6LR6UwLzE+X9tu8L3RwU9aQ0zJbyf+sxmbs= +github.com/openstack-k8s-operators/horizon-operator/api v0.6.1-0.20260430085555-5d886c8db8b0/go.mod h1:PW7ebQPPfld1OY0lIXR4CFsle7qH7bQhTWqU5M1BUAQ= +github.com/openstack-k8s-operators/infra-operator/apis v0.6.1-0.20260429072348-e2e8eaa49a92 h1:/xZ+mtizRRxDmL2eMlnBBFT5b2Yr2Pxi5I5W23BppBY= +github.com/openstack-k8s-operators/infra-operator/apis v0.6.1-0.20260429072348-e2e8eaa49a92/go.mod h1:Z2Wawr4ua5ORCFEjMGs8i8ijbPY0MS1mg8PVVR7q4NA= +github.com/openstack-k8s-operators/ironic-operator/api v0.6.1-0.20260429232424-241f1b9467e4 h1:dkIItWolByojCmNRFa/YQlTklJsJDTRyoq/KeZQZNDU= +github.com/openstack-k8s-operators/ironic-operator/api v0.6.1-0.20260429232424-241f1b9467e4/go.mod h1:Pmpv3CXIpJHfuKmnXJX3K5m93g9wydTBH6STQAd3Gts= +github.com/openstack-k8s-operators/keystone-operator/api v0.6.1-0.20260425213537-3fb7aab1c5a4 h1:qOo3koBusH6COM2VYGCEKqeluFLB5GzPR3i+kHTLb8o= +github.com/openstack-k8s-operators/keystone-operator/api v0.6.1-0.20260425213537-3fb7aab1c5a4/go.mod h1:SpO4CL7c5/1HG+61fP6kWhL2+3aqR+5SNatdZueKrz8= +github.com/openstack-k8s-operators/lib-common/modules/ansible v0.6.1-0.20260430090237-a4265c18a162 h1:aNLf8F568nqYGbKzn9BBNYfG4z97lbvX5LzFu6hreJU= +github.com/openstack-k8s-operators/lib-common/modules/ansible v0.6.1-0.20260430090237-a4265c18a162/go.mod h1:tXxVkkk8HlATwTmDA5RTP3b+c8apfuMM15mZ2wW5iNs= +github.com/openstack-k8s-operators/lib-common/modules/certmanager v0.6.1-0.20260430090237-a4265c18a162 h1:9+el45deWlPQnF65svfP65eC/UytLxDWgllb/ykaH68= +github.com/openstack-k8s-operators/lib-common/modules/certmanager v0.6.1-0.20260430090237-a4265c18a162/go.mod h1:xC5nl9/Mu3+g0ENu60SZKxKA8PWvDVquiWp5hi+xII0= +github.com/openstack-k8s-operators/lib-common/modules/common v0.6.1-0.20260430090237-a4265c18a162 h1:VocgU7/0Z1cR8zmw7eoY/mTdLRKvEPpvP4znr8MS0+0= +github.com/openstack-k8s-operators/lib-common/modules/common v0.6.1-0.20260430090237-a4265c18a162/go.mod h1:F5HjUr4ISngkO9343y7m7oG7GFCh0bOSi3G7sQ61qH8= github.com/openstack-k8s-operators/lib-common/modules/openstack v0.6.1-0.20260417092244-81c71b39e981 h1:jN3Kvt+RYUTaL9EXeeeIqRXVjqeNF74SuLTDXmi4X2Y= github.com/openstack-k8s-operators/lib-common/modules/openstack v0.6.1-0.20260417092244-81c71b39e981/go.mod h1:7yqbVpg0k0vW+kZks+TMU/cd1ovoejyHfVPWcyGYLHI= -github.com/openstack-k8s-operators/lib-common/modules/storage v0.6.1-0.20260417092244-81c71b39e981 h1:X3/Gc+i0ZxaROExrpLXonz9EPhftlubFnOK4aSkRLvo= -github.com/openstack-k8s-operators/lib-common/modules/storage v0.6.1-0.20260417092244-81c71b39e981/go.mod h1:3loLaPUDQyvbPekylZd9OCLF+EXH2klRI9IeeQhuMcs= -github.com/openstack-k8s-operators/lib-common/modules/test v0.6.1-0.20260417092244-81c71b39e981 h1:KAQ8T+Ri3JWgsyK1D6QybScMh6fpkYUUA+0ntnOiAl4= -github.com/openstack-k8s-operators/lib-common/modules/test v0.6.1-0.20260417092244-81c71b39e981/go.mod h1:dEjz8zHRIlP3vnMmWdHytlLeSZ6BHcIiSTPM7xTQxFg= -github.com/openstack-k8s-operators/manila-operator/api v0.6.1-0.20260420052836-ac1a4d8a769e h1:bymDbHC6lMbZUbg3dJi5ajS+i4/z5Q77r2nuz4VpBfc= -github.com/openstack-k8s-operators/manila-operator/api v0.6.1-0.20260420052836-ac1a4d8a769e/go.mod h1:aKKbe1AraYGWby2tLTT0sBB4iFH5ZnrZ/uzhf7RwzLs= -github.com/openstack-k8s-operators/mariadb-operator/api v0.6.1-0.20260413152655-564a51226a2a h1:1VRHhhCE8U0+Q6jPNppxcklIVfK7gZ2Js9VaLpPR7sw= -github.com/openstack-k8s-operators/mariadb-operator/api v0.6.1-0.20260413152655-564a51226a2a/go.mod h1:g/xgMnzNHxdTkqnEgAKwVOv75uPN4nuApbkGqSvASvs= -github.com/openstack-k8s-operators/neutron-operator/api v0.6.1-0.20260420052839-b9314e4e03a3 h1:XyJrYBPiLCyUysII5RtHKjTekxrL3wxPEBlSvo0SKOQ= -github.com/openstack-k8s-operators/neutron-operator/api v0.6.1-0.20260420052839-b9314e4e03a3/go.mod h1:5jWDZDariGwym2q926i/VtR16dgNAvY4mTM/UekciKw= -github.com/openstack-k8s-operators/nova-operator/api v0.6.1-0.20260413153813-b59b2a226c10 h1:6DQAN11CMaStZezMumXgayPpJQVGfsWxn04xPsOsHaM= -github.com/openstack-k8s-operators/nova-operator/api v0.6.1-0.20260413153813-b59b2a226c10/go.mod h1:ZQpGqN3AszLv7OoySPuCFyrNkuOEi1lPTymhbd1gOrc= -github.com/openstack-k8s-operators/octavia-operator/api v0.6.1-0.20260413082059-d107b5bac378 h1:h72lnvPcecgJqOindL68zIZmcJY6xM0EjY5FYe5Z7Qw= -github.com/openstack-k8s-operators/octavia-operator/api v0.6.1-0.20260413082059-d107b5bac378/go.mod h1:XO02J/MSp7f+HMyoT5xImUvTtDvDY4SgG2mi+nwdTMY= -github.com/openstack-k8s-operators/openstack-baremetal-operator/api v0.6.1-0.20260413094947-83f411fa655c h1:77hLym7nButLmaRm2aKozn0kW2WmrAaaYpx/HWHlUzc= -github.com/openstack-k8s-operators/openstack-baremetal-operator/api v0.6.1-0.20260413094947-83f411fa655c/go.mod h1:WKiIsGtY1q6VbpSa8QmOY3rYFpI061hwqYVFnAFfiFI= -github.com/openstack-k8s-operators/ovn-operator/api v0.6.1-0.20260420053123-cf0908d8cf39 h1:PQ025L6DttCoxwHqLTpw0v0W9VEXrCqYLfGDnR04GyI= -github.com/openstack-k8s-operators/ovn-operator/api v0.6.1-0.20260420053123-cf0908d8cf39/go.mod h1:ODYNTFMUlzvjlqXAh9AGXrzpBNQBAOkWiNQ6UldsqFw= +github.com/openstack-k8s-operators/lib-common/modules/storage v0.6.1-0.20260430090237-a4265c18a162 h1:b/E0t3klHOxMUzpp/TaMB6OwLliv9mwsHxE94i8Rifc= +github.com/openstack-k8s-operators/lib-common/modules/storage v0.6.1-0.20260430090237-a4265c18a162/go.mod h1:xSRQQt2ygoUdjq0pJelQ7X2aeKPIgAj71O9NpV10CQY= +github.com/openstack-k8s-operators/lib-common/modules/test v0.6.1-0.20260430090237-a4265c18a162 h1:ckk8XRuo2bk01dbc0siY/xu3Uq4MhPnoEK6Dt6bi5z4= +github.com/openstack-k8s-operators/lib-common/modules/test v0.6.1-0.20260430090237-a4265c18a162/go.mod h1:EBNxPdk/c5/oKqWjjapeiJb5D1n1G4KeKFNGEWZMdTk= +github.com/openstack-k8s-operators/manila-operator/api v0.6.1-0.20260430052821-795fe4401ef4 h1:MbiTWH9GUmdmz8+nio5It/vBBj0bkd0Pt5+zqGLA2II= +github.com/openstack-k8s-operators/manila-operator/api v0.6.1-0.20260430052821-795fe4401ef4/go.mod h1:gKMvtwhXQr++WBGorQd1iuzBflZ/1Nh6v41Eztsq3NU= +github.com/openstack-k8s-operators/mariadb-operator/api v0.6.1-0.20260428063048-3a190112bad3 h1:DpFGsHG6W3iBETORDeZq+mb6SNzzfqvRAs3hEb03x8o= +github.com/openstack-k8s-operators/mariadb-operator/api v0.6.1-0.20260428063048-3a190112bad3/go.mod h1:/G9BlQgetewOvw3YAouzZGM0foymuzQPV51GhYf6uuY= +github.com/openstack-k8s-operators/neutron-operator/api v0.6.1-0.20260427095537-d1f5e517f199 h1:K1Q8fm0VEjqCgTFmMXmh5lMwQ6AQmlGRneglfn9OMqY= +github.com/openstack-k8s-operators/neutron-operator/api v0.6.1-0.20260427095537-d1f5e517f199/go.mod h1:+byFQ1kxLQWwhNaNnTIKPpmCJsZE9rjx6SBGD/71Bq4= +github.com/openstack-k8s-operators/nova-operator/api v0.6.1-0.20260421072856-123b74ba975b h1:h8+J0P2wm9ASaZGPIkP15fcjUfoyUyIKFlKFzf8Z1y0= +github.com/openstack-k8s-operators/nova-operator/api v0.6.1-0.20260421072856-123b74ba975b/go.mod h1:BBdKyLuKyCTwMWShJAWIiZEgSPCKx6AAv/V5XoOIkd4= +github.com/openstack-k8s-operators/octavia-operator/api v0.6.1-0.20260425214107-96bce8dcad8b h1:L7BMIITBxSr3IRVzdRt8FBttEIIGxptoFtMZn+MaDg8= +github.com/openstack-k8s-operators/octavia-operator/api v0.6.1-0.20260425214107-96bce8dcad8b/go.mod h1:WDZ3yrs6c+umsd4jomayJhC1StUzK2doXzJ0UAM6RwE= +github.com/openstack-k8s-operators/openstack-baremetal-operator/api v0.6.1-0.20260428063048-b5adaaed7659 h1:8w82E6RbWOdZj26vru7O7Cix7TFNIDYAiFMFCVuLXRI= +github.com/openstack-k8s-operators/openstack-baremetal-operator/api v0.6.1-0.20260428063048-b5adaaed7659/go.mod h1:aFdkGMEhceuEdOLZFIHrD67C87AxnMMv1DeRLSOunu4= +github.com/openstack-k8s-operators/ovn-operator/api v0.6.1-0.20260428063332-55b3554934b5 h1:E8KZkBUK2QzIEksFVxMUg0ETzvAX7uNuEg+2UqmX45I= +github.com/openstack-k8s-operators/ovn-operator/api v0.6.1-0.20260428063332-55b3554934b5/go.mod h1:ODYNTFMUlzvjlqXAh9AGXrzpBNQBAOkWiNQ6UldsqFw= github.com/openstack-k8s-operators/placement-operator/api v0.6.1-0.20260413090520-f18a11875c1d h1:ZvVIq5E/F82tqQckheo3WnL6XywTPc+PiJWyrllkyVo= github.com/openstack-k8s-operators/placement-operator/api v0.6.1-0.20260413090520-f18a11875c1d/go.mod h1:34ka8QoEZ2LFmJv6wO5l9U29f9Kd1vizVzbkzRQnwVA= github.com/openstack-k8s-operators/rabbitmq-cluster-operator/v2 v2.6.1-0.20250929174222-a0d328fa4dec h1:saovr368HPAKHN0aRPh8h8n9s9dn3d8Frmfua0UYRlc= github.com/openstack-k8s-operators/rabbitmq-cluster-operator/v2 v2.6.1-0.20250929174222-a0d328fa4dec/go.mod h1:Nh2NEePLjovUQof2krTAg4JaAoLacqtPTZQXK6izNfg= -github.com/openstack-k8s-operators/swift-operator/api v0.6.1-0.20260418085220-949c802081aa h1:pnzRdcdTy91mxcU93e7xp9gn+pNyWyOdB8w/WlRynvo= -github.com/openstack-k8s-operators/swift-operator/api v0.6.1-0.20260418085220-949c802081aa/go.mod h1:REDdMRGrY7JhGOsrKXt4hNZJAq0f6b3ykVh/Wyy4UXs= -github.com/openstack-k8s-operators/telemetry-operator/api v0.6.1-0.20260420053123-02a691a5b4d4 h1:82WLFtF/6P1VwcVoyfO9vjEdMnkQFpHkVq4I3YY7L28= -github.com/openstack-k8s-operators/telemetry-operator/api v0.6.1-0.20260420053123-02a691a5b4d4/go.mod h1:5PWJhM4FSPNBlA6+ClP6/ZbKQA8zlaL31ryWZIDRtAY= -github.com/openstack-k8s-operators/test-operator/api v0.6.1-0.20260416110435-a3f78e737417 h1:lFm9HeKjWNk7Lom+mpO+XdzDiqd/negACtEbo6DHlHg= -github.com/openstack-k8s-operators/test-operator/api v0.6.1-0.20260416110435-a3f78e737417/go.mod h1:spi9J+G46BuuiPJiBqp1IL8DCh93lfiXZlvcRbPzTwo= -github.com/openstack-k8s-operators/watcher-operator/api v0.6.1-0.20260414124111-458e17672b3c h1:LnydnAg5YQD6994n0FAv3X7awJXl5b1FQsUeqNFzPws= -github.com/openstack-k8s-operators/watcher-operator/api v0.6.1-0.20260414124111-458e17672b3c/go.mod h1:9ubKnJmL/9HLt6cqbbiv4XTcPrqf5ddfPKTxZi3LD/s= +github.com/openstack-k8s-operators/swift-operator/api v0.6.1-0.20260430052822-e67818864e26 h1:8DGvP9Y/IJAbvucMDvVi1k+ubp3bW17zB7kQClfbZpE= +github.com/openstack-k8s-operators/swift-operator/api v0.6.1-0.20260430052822-e67818864e26/go.mod h1:G8lQoQMRz4GKxdYL0MLGF8XJpZRbzQlDfbXLGAIqmSY= +github.com/openstack-k8s-operators/telemetry-operator/api v0.6.1-0.20260430174810-f0e56413c3c0 h1:BIkLvrMdG6fmXJ+OOazVKiujaP4RIkosf4fICuGAhhY= +github.com/openstack-k8s-operators/telemetry-operator/api v0.6.1-0.20260430174810-f0e56413c3c0/go.mod h1:5PWJhM4FSPNBlA6+ClP6/ZbKQA8zlaL31ryWZIDRtAY= +github.com/openstack-k8s-operators/test-operator/api v0.6.1-0.20260428130236-ec6fe35fb77a h1:8jf3Dpj5MuzQA2yXHHQg17vr5uT7Vz7vWBt1SmJCA5Q= +github.com/openstack-k8s-operators/test-operator/api v0.6.1-0.20260428130236-ec6fe35fb77a/go.mod h1:wmn29aFmzEfaIdNJmn2zq3YypsXMHeRXg0Sk0X1RTXY= +github.com/openstack-k8s-operators/watcher-operator/api v0.6.1-0.20260428084423-26f6eac1e089 h1:KyEAJQweVb/rbJIu8Vu5ZZDgvMcnuRhwGDa+y8sLA1c= +github.com/openstack-k8s-operators/watcher-operator/api v0.6.1-0.20260428084423-26f6eac1e089/go.mod h1:iE1kDOYq+/IW9IjOQeK19/BkcjzaHxOrV+TmJyqcNd8= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= diff --git a/hack/export_operator_related_images.sh b/hack/export_operator_related_images.sh index 31280479e6..53aaf6400e 100644 --- a/hack/export_operator_related_images.sh +++ b/hack/export_operator_related_images.sh @@ -1,23 +1,23 @@ # NOTE: this file is automatically generated by hack/sync-bindata.sh! -export RELATED_IMAGE_BARBICAN_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/barbican-operator@sha256:cc087821d117bd400dd4701776f4dd94a2e159729a94eeef3711e90acd9e1652 -export RELATED_IMAGE_CINDER_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/cinder-operator@sha256:7a2ff35a26f4540cabe5818a86abdd1ce34104560109fc22d228e06cdb3b63ea -export RELATED_IMAGE_DESIGNATE_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/designate-operator@sha256:fb71a1f261da5620aa4d7fe5f6e698b5f03c12c0b8982aec5367b00792635cb3 -export RELATED_IMAGE_GLANCE_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/glance-operator@sha256:c6c51902eae4064427040a648a3172b2a2663ed75ba5fe65bf4f5ea20ff4b983 -export RELATED_IMAGE_HEAT_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/heat-operator@sha256:051fb60096064551502a9e69bb1b54f4303e7941ceb91cebdb12f24aa12bc301 -export RELATED_IMAGE_HORIZON_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/horizon-operator@sha256:705211b1980c1d4c84b284a20b7a6e1662da9912027377e611b682da88dca8ec -export RELATED_IMAGE_INFRA_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/infra-operator@sha256:508d7cc33da4e4d1bc03e0b0f03dfb8f5875639e9b18354f8aea1c2110224d08 -export RELATED_IMAGE_IRONIC_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/ironic-operator@sha256:d32d5dc44157ad38f7df15630a03a6d0429f98360fc7f798a392d33f8fbf1869 -export RELATED_IMAGE_KEYSTONE_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/keystone-operator@sha256:dee0da68f43b117f55bcf0d5bf224deba7845cd3058eb7b6f49d757d96829f2b -export RELATED_IMAGE_MANILA_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/manila-operator@sha256:4a1978fcd77a62c0ee127dfc3c75b5a5273b871aac52c60ad1a0cef46d004acf -export RELATED_IMAGE_MARIADB_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/mariadb-operator@sha256:8fc0cdfb302b8e16ff7a990a8a6219877e52ae1a4555440255fd11da830c8fcc -export RELATED_IMAGE_NEUTRON_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/neutron-operator@sha256:c256f93a5226c9aa0ad094ce8c9c9d1cd06ce05149b36e15863f96c965219e04 -export RELATED_IMAGE_NOVA_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/nova-operator@sha256:6fbc3cddca9ccfd70a160f4e2d1e7a3199fd774fd483a3303228245c8fc0e859 -export RELATED_IMAGE_OCTAVIA_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/octavia-operator@sha256:3d89dcb18665d069912ab91c3d5ff5b7466b1def1ef03a9f7a833e3275742dee -export RELATED_IMAGE_OPENSTACK_BAREMETAL_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/openstack-baremetal-operator@sha256:03e1133636014341091acf892ed749f92643dabe4bfbc40c6b23ffc323581f02 -export RELATED_IMAGE_OVN_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/ovn-operator@sha256:9772d4018805275576f53367592d0cc1416bb4430594450a71d95ad936b8220b +export RELATED_IMAGE_BARBICAN_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/barbican-operator@sha256:e1861fbfa014aad1847de7b4aeafc21a6fe23c4b7e551ec7d5b3580a90942b81 +export RELATED_IMAGE_CINDER_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/cinder-operator@sha256:c0e74a00669d6d5922659c11007286cafdda3f1e08b8600397561eb075a3fda5 +export RELATED_IMAGE_DESIGNATE_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/designate-operator@sha256:626dacfea5a6722d092841dc7f179444ae1874795e95e403638c36593cf6cb60 +export RELATED_IMAGE_GLANCE_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/glance-operator@sha256:b0151fffcb9c7ce672e6f4822e0fbea92fc4b345a5b60422fa296ec9e43036c7 +export RELATED_IMAGE_HEAT_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/heat-operator@sha256:597a6cba39ee8f3a939b5435fccac85fda200a23f69a48231ab1fdb2d95823d0 +export RELATED_IMAGE_HORIZON_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/horizon-operator@sha256:f12a5ce5fb73d8d1210914c6bcfad9df5e7026759bd94ef9d0b46451c6b6b2d4 +export RELATED_IMAGE_INFRA_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/infra-operator@sha256:0da2022270b508781271f009befe1050b265447d41a248215371f4079ac3d8a5 +export RELATED_IMAGE_IRONIC_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/ironic-operator@sha256:b93c4a3f0fdc2829d591051e7e582a46cd0b58314bdbec3309d61d985a697113 +export RELATED_IMAGE_KEYSTONE_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/keystone-operator@sha256:c1a635b812eeb99f92badac729e18f12255843b0fce8662b839cd35195a4b55b +export RELATED_IMAGE_MANILA_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/manila-operator@sha256:e97d1cfe70ff2af2b2ae7803a08894a891257e50b09686fe93fded855b9a6e64 +export RELATED_IMAGE_MARIADB_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/mariadb-operator@sha256:9f9fbe8a0e57548f01d787101f620d66ec0b37b6d6e1ed24e8f731790966e182 +export RELATED_IMAGE_NEUTRON_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/neutron-operator@sha256:fe8652e123667acd0014231498e8232cd47b9044a232642706fb1e2494e4ddaf +export RELATED_IMAGE_NOVA_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/nova-operator@sha256:d837d30127945a40462b62e9bf47e659bfc4ec7bb6690aaf890ab5e1be43d63a +export RELATED_IMAGE_OCTAVIA_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/octavia-operator@sha256:ffd17a974cda9d549490d1388c6248d2d72ef3fdd6125970d90a667a7b49766d +export RELATED_IMAGE_OPENSTACK_BAREMETAL_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/openstack-baremetal-operator@sha256:14de33cc802bcb31c0d3e7ae1765de7804a870ea96726cacd36d22e7faf0781b +export RELATED_IMAGE_OVN_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/ovn-operator@sha256:6c090a31ce39e3ccbae9b2d20b9271bda02a420eb2985a5ca7536a1a09667f2b export RELATED_IMAGE_PLACEMENT_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/placement-operator@sha256:ca04fe7352ca3d6eaed5842f84c0efaa160403649d5bd6281d9b4ff7b315b6ec -export RELATED_IMAGE_SWIFT_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/swift-operator@sha256:2e9e2417f81f4ff9d270a79cb03d1febb2741cd935e34d846fb9e2751ffffb87 -export RELATED_IMAGE_TELEMETRY_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/telemetry-operator@sha256:281bc644d91aa53e716bcf0252e71b1c6f87b4937c2d1b661f3eee40539bb8a4 -export RELATED_IMAGE_TEST_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/test-operator@sha256:c85b39f2ac267b373b84dda5cfd88304eba5b5a8481045fe36f864a0b2c152fe -export RELATED_IMAGE_WATCHER_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/watcher-operator@sha256:05dfc4e923d6a67418b3bb93f462c75d0d915b9eff8251ccc56b0f6b6d783ab8 +export RELATED_IMAGE_SWIFT_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/swift-operator@sha256:c3149a125c98ee4bc9cb675f32959ea7886b3944723120799bf8a0fc54982b7e +export RELATED_IMAGE_TELEMETRY_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/telemetry-operator@sha256:cd08e99594edd23412888af7df736a1162df9a4622241bab2b3f7c54bd7ed659 +export RELATED_IMAGE_TEST_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/test-operator@sha256:2e7ff2b142b3ce81461cd33308687fec20ea560174b807e5ba4141892637ef2d +export RELATED_IMAGE_WATCHER_OPERATOR_MANAGER_IMAGE_URL=quay.io/openstack-k8s-operators/watcher-operator@sha256:957f63187188ca32ec8b985772070937f9ac78025b0bfa655b6fcd54282e30b3