Skip to content

Commit 9302081

Browse files
committed
update proto go module for new repo name
Update the proto go module to reflect the new repo name. 'sigs.k8s.io/container-object-storage-interface-api' becomes 'sigs.k8s.io/container-object-storage-interface'. Signed-off-by: Blaine Gardner <[email protected]>
1 parent bd28f63 commit 9302081

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

proto/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ COSI_GO_FAKE := ./fake/cosi.pb.fake.go
9090

9191
BUILD_TMP_DIR := ./.build
9292
BUILD_TMP_COSI_A := $(BUILD_TMP_DIR)/cosi.a
93-
BUILD_PROTO_PATH := sigs.k8s.io/container-object-storage-interface-api/proto
93+
BUILD_PROTO_PATH := sigs.k8s.io/container-object-storage-interface/proto
9494
BUILD_COSI_GO_TMP := $(BUILD_TMP_DIR)/$(BUILD_PROTO_PATH)/cosi.pb.go
9595
BUILD_COSI_GO_GRPC_TMP := $(BUILD_TMP_DIR)/$(BUILD_PROTO_PATH)/cosi_grpc.pb.go
9696
BUILD_COSI_GO_JSON_TMP := $(BUILD_TMP_DIR)/$(BUILD_PROTO_PATH)/cosi.pb.json.go
@@ -99,7 +99,7 @@ BUILD_COSI_GO_FAKE_TMP := $(BUILD_TMP_DIR)/fake/cosi.pb.fake.go
9999
GO_JSON_OPTS := emit_defaults=true
100100

101101
GO_FAKE_OPTS := emit_defaults
102-
GO_FAKE_OPTS := $(GO_FAKE_OPTS),packagePath=sigs.k8s.io/container-object-storage-interface-api/proto
102+
GO_FAKE_OPTS := $(GO_FAKE_OPTS),packagePath=sigs.k8s.io/container-object-storage-interface/proto
103103

104104
$(COSI_PROTO): $(COSI_SPEC)
105105
echo "// Code generated by make; DO NOT EDIT." > "$(COSI_PROTO)"

proto/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The existing primitives in CSI do not apply to objectstorage. Thus the need for
2222
All API definitions **_MUST_** satisfy the following requirements:
2323

2424
<!-- - Must be backwards compatible -->
25-
- Must be in-sync with the API definitions in [sigs.k8s.io/container-object-storage-interface-api](https://github.com/kubernetes-sigs/container-object-storage-interface-api)
25+
- Must be in-sync with the API definitions in [sigs.k8s.io/container-object-storage-interface/client](https://github.com/kubernetes-sigs/container-object-storage-interface)
2626

2727
### Build and Test
2828

proto/cosi.pb.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

proto/cosi.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package cosi.v1alpha1;
44

55
import "google/protobuf/descriptor.proto";
66

7-
option go_package = "sigs.k8s.io/container-object-storage-interface-api/proto;cosi";
7+
option go_package = "sigs.k8s.io/container-object-storage-interface/proto;cosi";
88

99
extend google.protobuf.EnumOptions {
1010
// Indicates that this enum is OPTIONAL and part of an experimental

proto/fake/cosi.pb.fake.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package fake
33
import (
44
"context"
55
grpc "google.golang.org/grpc"
6-
proto "sigs.k8s.io/container-object-storage-interface-api/proto"
6+
proto "sigs.k8s.io/container-object-storage-interface/proto"
77
)
88

99
type FakeIdentityClient struct {

proto/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module sigs.k8s.io/container-object-storage-interface-api/proto
1+
module sigs.k8s.io/container-object-storage-interface/proto
22

33
go 1.22.4
44

proto/spec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ package cosi.v1alpha1;
131131
132132
import "google/protobuf/descriptor.proto";
133133
134-
option go_package = "sigs.k8s.io/container-object-storage-interface-api/proto;cosi";
134+
option go_package = "sigs.k8s.io/container-object-storage-interface/proto;cosi";
135135
136136
extend google.protobuf.EnumOptions {
137137
// Indicates that this enum is OPTIONAL and part of an experimental

0 commit comments

Comments
 (0)