Serge Bazanski | 0ed2f96 | 2021-03-15 16:39:30 +0100 | [diff] [blame] | 1 | // Copyright 2020 The Monogon Project Authors. |
| 2 | // |
| 3 | // SPDX-License-Identifier: Apache-2.0 |
| 4 | // |
| 5 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | // you may not use this file except in compliance with the License. |
| 7 | // You may obtain a copy of the License at |
| 8 | // |
| 9 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | // |
| 11 | // Unless required by applicable law or agreed to in writing, software |
| 12 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | // See the License for the specific language governing permissions and |
| 15 | // limitations under the License. |
| 16 | |
| 17 | syntax = "proto3"; |
| 18 | package metropolis.proto.api; |
| 19 | option go_package = "source.monogon.dev/metropolis/proto/api"; |
| 20 | |
| 21 | // NodeParameters is the data with which a Node is set booted. It contains the |
| 22 | // configuration required for a node to either bootstrap a new cluster, or |
| 23 | // register into an existing one. |
| 24 | // It is serialized into a proto message and supplied to Metropolis in an |
| 25 | // implementation-specific way (currently: either on ESP partition or via qemu |
| 26 | // fw_cfg). |
| 27 | message NodeParameters { |
| 28 | message ClusterBootstrap { |
Serge Bazanski | 72068da | 2021-03-16 13:15:45 +0100 | [diff] [blame] | 29 | bytes owner_public_key = 1; |
Serge Bazanski | 0ed2f96 | 2021-03-15 16:39:30 +0100 | [diff] [blame] | 30 | } |
| 31 | message ClusterRegister { |
| 32 | } |
| 33 | oneof cluster { |
| 34 | ClusterBootstrap cluster_bootstrap = 1; |
| 35 | ClusterRegister cluster_register = 2; |
| 36 | } |
| 37 | } |