Skip to content

Commit f884587

Browse files
committed
Update broker package.
1 parent 87c651e commit f884587

File tree

6 files changed

+50
-51
lines changed

6 files changed

+50
-51
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,10 +145,10 @@ generate: generate-broker-go generate-mesh-go generate-mixer-go generate-routing
145145
# broker/...
146146
#####################
147147

148-
broker_v1_path := broker/v1/config
148+
broker_v1_path := broker/v1alpha1
149149
broker_v1_protos := $(shell find $(broker_v1_path) -type f -name '*.proto' | sort)
150150
broker_v1_pb_gos := $(broker_v1_protos:.proto=.pb.go)
151-
broker_v1_pb_doc := $(broker_v1_path)/istio.broker.v1.config.pb.html
151+
broker_v1_pb_doc := $(broker_v1_path)/istio.broker.v1alpha1.pb.html
152152

153153
generate-broker-go: $(broker_v1_pb_gos) $(broker_v1_pb_doc)
154154

broker/v1/config/service_class.pb.go renamed to broker/v1alpha1/service_class.pb.go

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

broker/v1/config/service_class.proto renamed to broker/v1alpha1/service_class.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ syntax = "proto3";
1717
// $overview: Configuration affecting the Istio service broker
1818
// $location: https://istio.io/docs/reference/config/istio.broker.v1.config.html
1919

20-
package istio.broker.v1.config;
20+
package istio.broker.v1alpha1;
2121

22-
option go_package="istio.io/api/broker/v1/config";
22+
option go_package="istio.io/api/broker/v1alpha1";
2323

2424
// ServiceClass defines a service that are exposed to Istio service consumers.
2525
// The service is linked into one or more ServicePlan.

broker/v1/config/service_plan.pb.go renamed to broker/v1alpha1/service_plan.pb.go

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

broker/v1/config/service_plan.proto renamed to broker/v1alpha1/service_plan.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
// limitations under the License.
1414
syntax = "proto3";
1515

16-
package istio.broker.v1.config;
16+
package istio.broker.v1alpha1;
1717

18-
option go_package="istio.io/api/broker/v1/config";
18+
option go_package="istio.io/api/broker/v1alpha1";
1919

2020
// ServicePlan defines the type of services available to Istio service
2121
// consumers. One or more services are included in a plan. The plan is flexible

0 commit comments

Comments
 (0)