Skip to content

Commit

Permalink
Merge pull request #138 from jsafrane/fix-gomod
Browse files Browse the repository at this point in the history
Fix go.mod for v9
  • Loading branch information
k8s-ci-robot committed Feb 21, 2023
2 parents 52106c7 + 21565dd commit f1f3e83
Show file tree
Hide file tree
Showing 13 changed files with 27 additions and 16 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG/CHANGELOG-9.0.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# Release notes for v9.0.1

# Changelog since v9.0.0

## Changes by Kind

### Uncategorized

- Fixed go.mod for v9.

# Release notes for v9.0.0

# Changelog since v8.0.0
Expand All @@ -10,6 +20,7 @@
- Added a new label `source` to `controller_persistentvolumeclaim_provision_total` metric. ([#128](https://github.com/kubernetes-sigs/sig-storage-lib-external-provisioner/pull/128), [@RaunakShah](https://github.com/RaunakShah))
- Added support for `external-provisioner.volume.kubernetes.io/finalizer` on statically provisioned volumes. ([#129](https://github.com/kubernetes-sigs/sig-storage-lib-external-provisioner/pull/129), [@deepakkinni](https://github.com/deepakkinni))


## Dependencies

### Added
Expand Down
2 changes: 1 addition & 1 deletion allocator/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

package allocator // import "sigs.k8s.io/sig-storage-lib-external-provisioner/v8/allocator"
package allocator // import "sigs.k8s.io/sig-storage-lib-external-provisioner/v9/allocator"
4 changes: 2 additions & 2 deletions controller/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ import (
ref "k8s.io/client-go/tools/reference"
"k8s.io/client-go/util/workqueue"
klog "k8s.io/klog/v2"
"sigs.k8s.io/sig-storage-lib-external-provisioner/v8/controller/metrics"
"sigs.k8s.io/sig-storage-lib-external-provisioner/v8/util"
"sigs.k8s.io/sig-storage-lib-external-provisioner/v9/controller/metrics"
"sigs.k8s.io/sig-storage-lib-external-provisioner/v9/util"
)

// This annotation is added to a PV that has been dynamically provisioned by
Expand Down
2 changes: 1 addition & 1 deletion controller/controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import (
ref "k8s.io/client-go/tools/reference"
"k8s.io/client-go/util/workqueue"
klog "k8s.io/klog/v2"
"sigs.k8s.io/sig-storage-lib-external-provisioner/v8/controller/metrics"
"sigs.k8s.io/sig-storage-lib-external-provisioner/v9/controller/metrics"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion controller/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

package controller // import "sigs.k8s.io/sig-storage-lib-external-provisioner/v8/controller"
package controller // import "sigs.k8s.io/sig-storage-lib-external-provisioner/v9/controller"
2 changes: 1 addition & 1 deletion controller/metrics/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

package metrics // import "sigs.k8s.io/sig-storage-lib-external-provisioner/v8/controller/metrics"
package metrics // import "sigs.k8s.io/sig-storage-lib-external-provisioner/v9/controller/metrics"
4 changes: 2 additions & 2 deletions examples/hostpath-provisioner/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
k8s.io/apimachinery v0.19.1
k8s.io/client-go v0.19.1
k8s.io/klog/v2 v2.3.0
sigs.k8s.io/sig-storage-lib-external-provisioner/v8 v8.0.0
sigs.k8s.io/sig-storage-lib-external-provisioner/v9 v9.0.1
)

replace sigs.k8s.io/sig-storage-lib-external-provisioner/v8 => ../..
replace sigs.k8s.io/sig-storage-lib-external-provisioner/v9 => ../..
2 changes: 1 addition & 1 deletion examples/hostpath-provisioner/hostpath-provisioner.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"path"
"syscall"

"sigs.k8s.io/sig-storage-lib-external-provisioner/v8/controller"
"sigs.k8s.io/sig-storage-lib-external-provisioner/v9/controller"

v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down
2 changes: 1 addition & 1 deletion gidallocator/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

package gidallocator // import "sigs.k8s.io/sig-storage-lib-external-provisioner/v8/gidallocator"
package gidallocator // import "sigs.k8s.io/sig-storage-lib-external-provisioner/v9/gidallocator"
6 changes: 3 additions & 3 deletions gidallocator/gidallocator.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
klog "k8s.io/klog/v2"
"sigs.k8s.io/sig-storage-lib-external-provisioner/v8/allocator"
"sigs.k8s.io/sig-storage-lib-external-provisioner/v8/controller"
"sigs.k8s.io/sig-storage-lib-external-provisioner/v8/util"
"sigs.k8s.io/sig-storage-lib-external-provisioner/v9/allocator"
"sigs.k8s.io/sig-storage-lib-external-provisioner/v9/controller"
"sigs.k8s.io/sig-storage-lib-external-provisioner/v9/util"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module sigs.k8s.io/sig-storage-lib-external-provisioner/v8
module sigs.k8s.io/sig-storage-lib-external-provisioner/v9

go 1.19

Expand Down
2 changes: 1 addition & 1 deletion mount/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

package mount // import "sigs.k8s.io/sig-storage-lib-external-provisioner/v8/mount"
package mount // import "sigs.k8s.io/sig-storage-lib-external-provisioner/v9/mount"
2 changes: 1 addition & 1 deletion util/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

package util // import "sigs.k8s.io/sig-storage-lib-external-provisioner/v8/util"
package util // import "sigs.k8s.io/sig-storage-lib-external-provisioner/v9/util"

0 comments on commit f1f3e83

Please sign in to comment.