blob: 41e57d0f57d5bddeed6875c735b20dcf722bf659 [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 {
Serge Bazanski72068da2021-03-16 13:15:45 +010029 bytes owner_public_key = 1;
Serge Bazanski0ed2f962021-03-15 16:39:30 +010030 }
31 message ClusterRegister {
32 }
33 oneof cluster {
34 ClusterBootstrap cluster_bootstrap = 1;
35 ClusterRegister cluster_register = 2;
36 }
37}