Skip to content

Commit

Permalink
runtime: Add hypervisor proto to support peer pod VMs
Browse files Browse the repository at this point in the history
This patch adds a protobuf definiton of the remote hypervisor type.

Signed-off-by: Yohei Ueda <[email protected]>
Co-authored-by: stevenhorsman <[email protected]>
(based on commit 150e8ab)
  • Loading branch information
yoheiueda authored and stevenhorsman committed Nov 17, 2023
1 parent f8322ff commit 8ac9a22
Show file tree
Hide file tree
Showing 4 changed files with 901 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/runtime/hack/update-generated-hypervisor-proto.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash
# (C) Copyright IBM Corp. 2022, 2023
# SPDX-License-Identifier: Apache-2.0

set -o errexit -o pipefail -o nounset

HYPERVISOR_PATH="protocols/hypervisor"

protoc \
-I=$GOPATH/src \
--proto_path=$HYPERVISOR_PATH \
--go_out=$HYPERVISOR_PATH \
--go-grpc_out=$HYPERVISOR_PATH \
$HYPERVISOR_PATH/hypervisor.proto
Loading

0 comments on commit 8ac9a22

Please sign in to comment.