blob: 8c953ed23b298eb009f433fa7f0a26ad14453db4 [file] [log] [blame]
Serge Bazanski0ed2f962021-03-15 16:39:30 +01001// 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
17syntax = "proto3";
18package metropolis.proto.api;
19option 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).
27message NodeParameters {
28 message ClusterBootstrap {
29 }
30 message ClusterRegister {
31 }
32 oneof cluster {
33 ClusterBootstrap cluster_bootstrap = 1;
34 ClusterRegister cluster_register = 2;
35 }
36}