From 531b47f2affed101225598bab1ca7faccbe8204c Mon Sep 17 00:00:00 2001 From: Imtiaz Uddin Date: Mon, 23 Dec 2024 13:53:50 +0600 Subject: [PATCH] Update deps Signed-off-by: Imtiaz Uddin --- Makefile | 1 + go.mod | 2 +- go.sum | 4 +-- .../kubedbcom_mariadb_editor_options_types.go | 22 +++++++++------- .../kubedbcom_mongodb_editor_options_types.go | 12 +++++---- ...edbcom_mssqlserver_editor_options_types.go | 10 ++++--- .../kubedbcom_mysql_editor_options_types.go | 10 ++++--- ...kubedbcom_postgres_editor_options_types.go | 26 ++++++++++--------- vendor/modules.txt | 2 +- 9 files changed, 50 insertions(+), 39 deletions(-) diff --git a/Makefile b/Makefile index 79b1956d9..fa9131bb0 100644 --- a/Makefile +++ b/Makefile @@ -387,6 +387,7 @@ verify: verify-gen verify-modules .PHONY: verify-modules verify-modules: + rm -rf go.sum vendor go mod tidy go mod vendor @if !(git diff --exit-code HEAD); then \ diff --git a/go.mod b/go.mod index 3f0c2b2d8..3f7ad63ca 100644 --- a/go.mod +++ b/go.mod @@ -7,7 +7,7 @@ toolchain go1.23.2 require ( go.bytebuilders.dev/catalog v0.0.10 go.bytebuilders.dev/resource-model v0.1.1-0.20241023004602-2c43ef3bb37b - go.bytebuilders.dev/ui-wizards v0.11.1-0.20241218123603-056ceff7e82d + go.bytebuilders.dev/ui-wizards v0.11.0 go.openviz.dev/installer v0.0.0-20240731074805-a62b13eaedb0 gomodules.xyz/go-sh v0.1.0 k8s.io/api v0.30.2 diff --git a/go.sum b/go.sum index 846f6cc91..ee733bd37 100644 --- a/go.sum +++ b/go.sum @@ -190,8 +190,8 @@ go.bytebuilders.dev/catalog v0.0.10 h1:j+ai/xmvqnipxnc/4zcdMBlKJwCaBzb4czZvI/+jT go.bytebuilders.dev/catalog v0.0.10/go.mod h1:xzfRUZPNBMwmw+en9Y5o6xAq8EOfx8VXJP57oLLllBM= go.bytebuilders.dev/resource-model v0.1.1-0.20241023004602-2c43ef3bb37b h1:loq3wv7NQY9givjW8djFMqe/1d+8j2wE4k5hueDIWC0= go.bytebuilders.dev/resource-model v0.1.1-0.20241023004602-2c43ef3bb37b/go.mod h1:/uMIfxqPIrDmiYWA28OW3xzogijxpwkicR4kK7jam9g= -go.bytebuilders.dev/ui-wizards v0.11.1-0.20241218123603-056ceff7e82d h1:wjGri/698Nlt3jaFPwJYNneqB93GJ/uyovsYfoZRy28= -go.bytebuilders.dev/ui-wizards v0.11.1-0.20241218123603-056ceff7e82d/go.mod h1:IygAkCSiRohg0lT+nbUGoIqzUy7PdSL+hkG90Cbik5g= +go.bytebuilders.dev/ui-wizards v0.11.0 h1:zOf1XZMyBmObDgR0a7dU49UD8dugd1xFzcdNkfWanQg= +go.bytebuilders.dev/ui-wizards v0.11.0/go.mod h1:IygAkCSiRohg0lT+nbUGoIqzUy7PdSL+hkG90Cbik5g= go.openviz.dev/installer v0.0.0-20240731074805-a62b13eaedb0 h1:zA5/psft6xJPNZZfDh7VpOlEEzqVOWoLQlXRFyOeyjc= go.openviz.dev/installer v0.0.0-20240731074805-a62b13eaedb0/go.mod h1:5q9Z38No4Xw0RGJnWYqAWPpXSG4XQYqiLzGHMv4pTPI= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= diff --git a/vendor/go.bytebuilders.dev/ui-wizards/apis/wizards/v1alpha1/kubedbcom_mariadb_editor_options_types.go b/vendor/go.bytebuilders.dev/ui-wizards/apis/wizards/v1alpha1/kubedbcom_mariadb_editor_options_types.go index d68b8730e..fb00a2a56 100644 --- a/vendor/go.bytebuilders.dev/ui-wizards/apis/wizards/v1alpha1/kubedbcom_mariadb_editor_options_types.go +++ b/vendor/go.bytebuilders.dev/ui-wizards/apis/wizards/v1alpha1/kubedbcom_mariadb_editor_options_types.go @@ -48,16 +48,18 @@ type KubedbcomMariadbEditorOptionsSpecSpec struct { Labels map[string]string `json:"labels"` Mode GeneralMode `json:"mode"` // +optional - Replicas int `json:"replicas,omitempty"` - Persistence Persistence `json:"persistence"` - PodResources PodResources `json:"podResources"` - AuthSecret AuthSecret `json:"authSecret"` - DeletionPolicy DeletionPolicy `json:"deletionPolicy"` - Configuration string `json:"configuration"` - Init InitDatabase `json:"init"` - Admin AdminOptions `json:"admin"` - Backup BackupToolSpec `json:"backup"` - Monitoring MonitoringOperator `json:"monitoring"` + Replicas int `json:"replicas,omitempty"` + Persistence Persistence `json:"persistence"` + PodResources PodResources `json:"podResources"` + AuthSecret AuthSecret `json:"authSecret"` + DeletionPolicy DeletionPolicy `json:"deletionPolicy"` + Configuration string `json:"configuration"` + // +optional + ArchiverName string `json:"archiverName"` + Init InitDatabase `json:"init"` + Admin AdminOptions `json:"admin"` + Backup BackupToolSpec `json:"backup"` + Monitoring MonitoringOperator `json:"monitoring"` // +optional Openshift Openshift `json:"openshift"` } diff --git a/vendor/go.bytebuilders.dev/ui-wizards/apis/wizards/v1alpha1/kubedbcom_mongodb_editor_options_types.go b/vendor/go.bytebuilders.dev/ui-wizards/apis/wizards/v1alpha1/kubedbcom_mongodb_editor_options_types.go index 2173b818a..2fa33075e 100644 --- a/vendor/go.bytebuilders.dev/ui-wizards/apis/wizards/v1alpha1/kubedbcom_mongodb_editor_options_types.go +++ b/vendor/go.bytebuilders.dev/ui-wizards/apis/wizards/v1alpha1/kubedbcom_mongodb_editor_options_types.go @@ -59,11 +59,13 @@ type KubedbcomMongodbEditorOptionsSpecSpec struct { // +optional HostName string `json:"hostName"` // +optional - IP string `json:"ip"` - Init InitDatabase `json:"init"` - Admin AdminOptions `json:"admin"` - Backup BackupToolSpec `json:"backup"` - Monitoring MonitoringOperator `json:"monitoring"` + IP string `json:"ip"` + // +optional + ArchiverName string `json:"archiverName"` + Init InitDatabase `json:"init"` + Admin AdminOptions `json:"admin"` + Backup BackupToolSpec `json:"backup"` + Monitoring MonitoringOperator `json:"monitoring"` // +optional Openshift Openshift `json:"openshift"` } diff --git a/vendor/go.bytebuilders.dev/ui-wizards/apis/wizards/v1alpha1/kubedbcom_mssqlserver_editor_options_types.go b/vendor/go.bytebuilders.dev/ui-wizards/apis/wizards/v1alpha1/kubedbcom_mssqlserver_editor_options_types.go index 28dd2fd55..1e4d0916f 100644 --- a/vendor/go.bytebuilders.dev/ui-wizards/apis/wizards/v1alpha1/kubedbcom_mssqlserver_editor_options_types.go +++ b/vendor/go.bytebuilders.dev/ui-wizards/apis/wizards/v1alpha1/kubedbcom_mssqlserver_editor_options_types.go @@ -56,10 +56,12 @@ type KubedbcomMssqlserverEditorOptionsSpecSpec struct { AuthSecret AuthSecret `json:"authSecret"` DeletionPolicy DeletionPolicy `json:"deletionPolicy"` Configuration string `json:"configuration"` - Init InitDatabase `json:"init"` - Admin AdminOptions `json:"admin"` - Backup BackupToolSpec `json:"backup"` - Monitoring MonitoringOperator `json:"monitoring"` + // +optional + ArchiverName string `json:"archiverName"` + Init InitDatabase `json:"init"` + Admin AdminOptions `json:"admin"` + Backup BackupToolSpec `json:"backup"` + Monitoring MonitoringOperator `json:"monitoring"` // +optional Openshift Openshift `json:"openshift"` } diff --git a/vendor/go.bytebuilders.dev/ui-wizards/apis/wizards/v1alpha1/kubedbcom_mysql_editor_options_types.go b/vendor/go.bytebuilders.dev/ui-wizards/apis/wizards/v1alpha1/kubedbcom_mysql_editor_options_types.go index b6d97601b..f2623652b 100644 --- a/vendor/go.bytebuilders.dev/ui-wizards/apis/wizards/v1alpha1/kubedbcom_mysql_editor_options_types.go +++ b/vendor/go.bytebuilders.dev/ui-wizards/apis/wizards/v1alpha1/kubedbcom_mysql_editor_options_types.go @@ -56,10 +56,12 @@ type KubedbcomMysqlEditorOptionsSpecSpec struct { AuthSecret AuthSecret `json:"authSecret"` DeletionPolicy DeletionPolicy `json:"deletionPolicy"` Configuration string `json:"configuration"` - Init InitDatabase `json:"init"` - Admin AdminOptions `json:"admin"` - Backup BackupToolSpec `json:"backup"` - Monitoring MonitoringOperator `json:"monitoring"` + // +optional + ArchiverName string `json:"archiverName"` + Init InitDatabase `json:"init"` + Admin AdminOptions `json:"admin"` + Backup BackupToolSpec `json:"backup"` + Monitoring MonitoringOperator `json:"monitoring"` // +optional Openshift Openshift `json:"openshift"` } diff --git a/vendor/go.bytebuilders.dev/ui-wizards/apis/wizards/v1alpha1/kubedbcom_postgres_editor_options_types.go b/vendor/go.bytebuilders.dev/ui-wizards/apis/wizards/v1alpha1/kubedbcom_postgres_editor_options_types.go index 79cc8b602..d00a75926 100644 --- a/vendor/go.bytebuilders.dev/ui-wizards/apis/wizards/v1alpha1/kubedbcom_postgres_editor_options_types.go +++ b/vendor/go.bytebuilders.dev/ui-wizards/apis/wizards/v1alpha1/kubedbcom_postgres_editor_options_types.go @@ -45,18 +45,20 @@ type KubedbcomPostgresEditorOptionsSpecSpec struct { // +optional Annotations map[string]string `json:"annotations"` // +optional - Labels map[string]string `json:"labels"` - Mode GeneralMode `json:"mode"` - Replicas int `json:"replicas"` - DeletionPolicy DeletionPolicy `json:"deletionPolicy"` - Persistence Persistence `json:"persistence"` - PodResources PodResources `json:"podResources"` - AuthSecret AuthSecret `json:"authSecret"` - Configuration string `json:"configuration"` - Init InitDatabase `json:"init"` - Admin AdminOptions `json:"admin"` - Backup BackupToolSpec `json:"backup"` - Monitoring MonitoringOperator `json:"monitoring"` + Labels map[string]string `json:"labels"` + Mode GeneralMode `json:"mode"` + Replicas int `json:"replicas"` + DeletionPolicy DeletionPolicy `json:"deletionPolicy"` + Persistence Persistence `json:"persistence"` + PodResources PodResources `json:"podResources"` + AuthSecret AuthSecret `json:"authSecret"` + Configuration string `json:"configuration"` + // +optional + ArchiverName string `json:"archiverName"` + Init InitDatabase `json:"init"` + Admin AdminOptions `json:"admin"` + Backup BackupToolSpec `json:"backup"` + Monitoring MonitoringOperator `json:"monitoring"` // +optional Openshift Openshift `json:"openshift"` } diff --git a/vendor/modules.txt b/vendor/modules.txt index 97ccf8b11..966664977 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -275,7 +275,7 @@ go.bytebuilders.dev/resource-model/apis/cloud go.bytebuilders.dev/resource-model/apis/cloud/v1alpha1 go.bytebuilders.dev/resource-model/apis/config/v1alpha1 go.bytebuilders.dev/resource-model/crds -# go.bytebuilders.dev/ui-wizards v0.11.1-0.20241218123603-056ceff7e82d +# go.bytebuilders.dev/ui-wizards v0.11.0 ## explicit; go 1.22.0 go.bytebuilders.dev/ui-wizards/apis/wizards go.bytebuilders.dev/ui-wizards/apis/wizards/v1alpha1