diff --git a/Readme.md b/Readme.md index 947aae14..f0ec5d77 100644 --- a/Readme.md +++ b/Readme.md @@ -35,4 +35,3 @@ The `master` branch should always point to the `master` tag. This can always be ```console make installer VERSION=master ``` - diff --git a/api/v1alpha1/lustrefilesystem_types.go b/api/v1alpha1/lustrefilesystem_types.go index 37976a7b..ea46d2f2 100644 --- a/api/v1alpha1/lustrefilesystem_types.go +++ b/api/v1alpha1/lustrefilesystem_types.go @@ -1,5 +1,5 @@ /* - * Copyright 2021, 2022 Hewlett Packard Enterprise Development LP + * Copyright 2021-2023 Hewlett Packard Enterprise Development LP * Other additional copyright holders may be indicated within. * * The entirety of this work is licensed under the Apache License, @@ -22,7 +22,7 @@ package v1alpha1 import ( "strings" - "github.com/HewlettPackard/dws/utils/updater" + "github.com/DataWorkflowServices/dws/utils/updater" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "sigs.k8s.io/controller-runtime/pkg/client" diff --git a/api/v1beta1/lustrefilesystem_types.go b/api/v1beta1/lustrefilesystem_types.go index 1b6d12c3..40d53d3d 100644 --- a/api/v1beta1/lustrefilesystem_types.go +++ b/api/v1beta1/lustrefilesystem_types.go @@ -22,7 +22,7 @@ package v1beta1 import ( "strings" - "github.com/HewlettPackard/dws/utils/updater" + "github.com/DataWorkflowServices/dws/utils/updater" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "sigs.k8s.io/controller-runtime/pkg/client" diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index f9fd0ad2..6476bb87 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -18,4 +18,4 @@ kind: Kustomization images: - name: controller newName: ghcr.io/nearnodeflash/lustre-fs-operator - newTag: 0.0.5 + newTag: 0.0.6 diff --git a/controllers/lustrefilesystem_controller.go b/controllers/lustrefilesystem_controller.go index 05a7c40d..30308f96 100644 --- a/controllers/lustrefilesystem_controller.go +++ b/controllers/lustrefilesystem_controller.go @@ -33,7 +33,7 @@ import ( corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "github.com/HewlettPackard/dws/utils/updater" + "github.com/DataWorkflowServices/dws/utils/updater" "github.com/HewlettPackard/lustre-csi-driver/pkg/lustre-driver/service" lusv1beta1 "github.com/NearNodeFlash/lustre-fs-operator/api/v1beta1" ) diff --git a/go.mod b/go.mod index d4ef3294..20c09a26 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/NearNodeFlash/lustre-fs-operator go 1.19 require ( - github.com/HewlettPackard/dws v0.0.0-20230322150428-080a05f072a6 + github.com/DataWorkflowServices/dws v0.0.1-0.20230913204342-e78d55d24550 github.com/HewlettPackard/lustre-csi-driver v0.0.0-20220623192103-4ce53adacc95 github.com/google/go-cmp v0.5.9 github.com/google/gofuzz v1.2.0 diff --git a/go.sum b/go.sum index 761beaf1..75f96e9e 100644 --- a/go.sum +++ b/go.sum @@ -1,8 +1,8 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/HewlettPackard/dws v0.0.0-20230322150428-080a05f072a6 h1:5nA5lzzUVnemBY/yRtBQZ3NOf90F80O21ncn3y8kYE8= -github.com/HewlettPackard/dws v0.0.0-20230322150428-080a05f072a6/go.mod h1:LBdoJFhiqcjzqpnxLqCVzDyUrw1ncoEEhho7ni7nuxI= +github.com/DataWorkflowServices/dws v0.0.1-0.20230913204342-e78d55d24550 h1:AMJUdu+Rt5vLEWbdnI5LDqytR5tgZbkYTS9fztMWNL4= +github.com/DataWorkflowServices/dws v0.0.1-0.20230913204342-e78d55d24550/go.mod h1:ZQsfcByZ05Ah9yrgOJsN3JPz4jo374DrdVv8kvcIquA= github.com/HewlettPackard/lustre-csi-driver v0.0.0-20220623192103-4ce53adacc95 h1:5neutLfJ4zWKHLeYw+a1EfW2veMC3sI50RNvgfeax9Q= github.com/HewlettPackard/lustre-csi-driver v0.0.0-20220623192103-4ce53adacc95/go.mod h1:Wwr96QYACIixBjBXpST9yMS81WxMu/tF/zc/5OW21Dk= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= diff --git a/vendor/github.com/HewlettPackard/dws/LICENSE b/vendor/github.com/DataWorkflowServices/dws/LICENSE similarity index 100% rename from vendor/github.com/HewlettPackard/dws/LICENSE rename to vendor/github.com/DataWorkflowServices/dws/LICENSE diff --git a/vendor/github.com/HewlettPackard/dws/utils/updater/status_updater.go b/vendor/github.com/DataWorkflowServices/dws/utils/updater/status_updater.go similarity index 100% rename from vendor/github.com/HewlettPackard/dws/utils/updater/status_updater.go rename to vendor/github.com/DataWorkflowServices/dws/utils/updater/status_updater.go diff --git a/vendor/modules.txt b/vendor/modules.txt index f947ead4..0ee50e3d 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -1,6 +1,6 @@ -# github.com/HewlettPackard/dws v0.0.0-20230322150428-080a05f072a6 +# github.com/DataWorkflowServices/dws v0.0.1-0.20230913204342-e78d55d24550 ## explicit; go 1.19 -github.com/HewlettPackard/dws/utils/updater +github.com/DataWorkflowServices/dws/utils/updater # github.com/HewlettPackard/lustre-csi-driver v0.0.0-20220623192103-4ce53adacc95 ## explicit; go 1.17 github.com/HewlettPackard/lustre-csi-driver/pkg/lustre-driver/service