This repository was archived by the owner on Dec 6, 2022. It is now read-only.
File tree 6 files changed +77
-0
lines changed
6 files changed +77
-0
lines changed Original file line number Diff line number Diff line change 21
21
22
22
proto/agent/agent.pb.go : proto/agent/agent.proto
23
23
protoc -I proto proto/agent/agent.proto --go_out=plugins=grpc:proto
24
+ cat hack/go-license-header.txt proto/agent/agent.pb.go > proto/agent/agent.licensed.go
25
+ mv proto/agent/agent.licensed.go proto/agent/agent.pb.go
24
26
25
27
proto/proxy.pb.go : proto/proxy.proto
26
28
protoc -I proto proto/proxy.proto --go_out=plugins=grpc:proto
29
+ cat hack/go-license-header.txt proto/proxy.pb.go > proto/proxy.licensed.go
30
+ mv proto/proxy.licensed.go proto/proxy.pb.go
27
31
28
32
bin/proxy-agent : bin cmd/agent/main.go proto/agent/agent.pb.go
29
33
go build -o bin/proxy-agent cmd/agent/main.go
Original file line number Diff line number Diff line change
1
+ /*
2
+ Copyright The Kubernetes Authors.
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ */
Original file line number Diff line number Diff line change
1
+ // Copyright The Kubernetes Authors.
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // http://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
1
15
syntax = "proto3" ;
2
16
3
17
// Retransmit?
Original file line number Diff line number Diff line change
1
+ // Copyright The Kubernetes Authors.
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // http://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ // See the License for the specific language governing permissions and
13
+ // limitations under the License.
14
+
1
15
// LEGACY
2
16
3
17
syntax = "proto3" ;
You can’t perform that action at this time.
0 commit comments