blob: ed8471a1129f556ed46f03b286485cf39b20e038 [file] [log] [blame]
// Copyright The Monogon Project Authors.
// SPDX-License-Identifier: Apache-2.0
package rpc
import (
epb "source.monogon.dev/metropolis/proto/ext"
)
var (
// nodePermissions are the set of metropolis.common.ext.authorization
// permissions automatically given to nodes when connecting to curator gRPC
// services, either locally or remotely.
nodePermissions = Permissions{
epb.Permission_PERMISSION_READ_CLUSTER_STATUS: true,
epb.Permission_PERMISSION_UPDATE_NODE_SELF: true,
}
)