alertops

package
v0.12.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 17, 2023 License: Apache-2.0 Imports: 16 Imported by: 0

Documentation

Index

Constants

View Source
const (
	AlertingAdmin_GetClusterConfiguration_FullMethodName = "/alerting.ops.AlertingAdmin/GetClusterConfiguration"
	AlertingAdmin_ConfigureCluster_FullMethodName        = "/alerting.ops.AlertingAdmin/ConfigureCluster"
	AlertingAdmin_GetClusterStatus_FullMethodName        = "/alerting.ops.AlertingAdmin/GetClusterStatus"
	AlertingAdmin_InstallCluster_FullMethodName          = "/alerting.ops.AlertingAdmin/InstallCluster"
	AlertingAdmin_UninstallCluster_FullMethodName        = "/alerting.ops.AlertingAdmin/UninstallCluster"
	AlertingAdmin_Info_FullMethodName                    = "/alerting.ops.AlertingAdmin/Info"
)
View Source
const (
	AdminInfo_SyncInfo_FullMethodName = "/alerting.ops.AdminInfo/SyncInfo"
)
View Source
const (
	ConfigReconciler_SyncConfig_FullMethodName = "/alerting.ops.ConfigReconciler/SyncConfig"
)

Variables

View Source
var (
	SyncState_name = map[int32]string{
		0: "SyncUnknown",
		1: "Synced",
		2: "SyncError",
	}
	SyncState_value = map[string]int32{
		"SyncUnknown": 0,
		"Synced":      1,
		"SyncError":   2,
	}
)

Enum value maps for SyncState.

View Source
var (
	InstallState_name = map[int32]string{
		0: "InstallUnknown",
		1: "NotInstalled",
		2: "InstallUpdating",
		3: "Installed",
		4: "Uninstalling",
	}
	InstallState_value = map[string]int32{
		"InstallUnknown":  0,
		"NotInstalled":    1,
		"InstallUpdating": 2,
		"Installed":       3,
		"Uninstalling":    4,
	}
)

Enum value maps for InstallState.

View Source
var AdminInfo_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "alerting.ops.AdminInfo",
	HandlerType: (*AdminInfoServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "SyncInfo",
			Handler:    _AdminInfo_SyncInfo_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "github.com/rancher/opni/plugins/alerting/apis/alertops/alertops.proto",
}

AdminInfo_ServiceDesc is the grpc.ServiceDesc for AdminInfo service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var AlertingAdmin_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "alerting.ops.AlertingAdmin",
	HandlerType: (*AlertingAdminServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetClusterConfiguration",
			Handler:    _AlertingAdmin_GetClusterConfiguration_Handler,
		},
		{
			MethodName: "ConfigureCluster",
			Handler:    _AlertingAdmin_ConfigureCluster_Handler,
		},
		{
			MethodName: "GetClusterStatus",
			Handler:    _AlertingAdmin_GetClusterStatus_Handler,
		},
		{
			MethodName: "InstallCluster",
			Handler:    _AlertingAdmin_InstallCluster_Handler,
		},
		{
			MethodName: "UninstallCluster",
			Handler:    _AlertingAdmin_UninstallCluster_Handler,
		},
		{
			MethodName: "Info",
			Handler:    _AlertingAdmin_Info_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "github.com/rancher/opni/plugins/alerting/apis/alertops/alertops.proto",
}

AlertingAdmin_ServiceDesc is the grpc.ServiceDesc for AlertingAdmin service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var ConfigReconciler_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "alerting.ops.ConfigReconciler",
	HandlerType: (*ConfigReconcilerServer)(nil),
	Methods:     []grpc.MethodDesc{},
	Streams: []grpc.StreamDesc{
		{
			StreamName:    "SyncConfig",
			Handler:       _ConfigReconciler_SyncConfig_Handler,
			ServerStreams: true,
			ClientStreams: true,
		},
	},
	Metadata: "github.com/rancher/opni/plugins/alerting/apis/alertops/alertops.proto",
}

ConfigReconciler_ServiceDesc is the grpc.ServiceDesc for ConfigReconciler service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_github_com_rancher_opni_plugins_alerting_apis_alertops_alertops_proto protoreflect.FileDescriptor

Functions

func RegisterAdminInfoServer added in v0.11.1

func RegisterAdminInfoServer(s grpc.ServiceRegistrar, srv AdminInfoServer)

func RegisterAlertingAdminServer

func RegisterAlertingAdminServer(s grpc.ServiceRegistrar, srv AlertingAdminServer)

func RegisterConfigReconcilerServer

func RegisterConfigReconcilerServer(s grpc.ServiceRegistrar, srv ConfigReconcilerServer)

Types

type AdminInfoClient added in v0.11.1

type AdminInfoClient interface {
	SyncInfo(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*emptypb.Empty, error)
}

AdminInfoClient is the client API for AdminInfo service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewAdminInfoClient added in v0.11.1

func NewAdminInfoClient(cc grpc.ClientConnInterface) AdminInfoClient

type AdminInfoServer added in v0.11.1

type AdminInfoServer interface {
	SyncInfo(context.Context, *emptypb.Empty) (*emptypb.Empty, error)
	// contains filtered or unexported methods
}

AdminInfoServer is the server API for AdminInfo service. All implementations must embed UnimplementedAdminInfoServer for forward compatibility

type AlertingAdminClient

type AlertingAdminClient interface {
	GetClusterConfiguration(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*ClusterConfiguration, error)
	// Install/Uninstall the alerting cluster by setting enabled=true/false
	ConfigureCluster(ctx context.Context, in *ClusterConfiguration, opts ...grpc.CallOption) (*emptypb.Empty, error)
	GetClusterStatus(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*InstallStatus, error)
	InstallCluster(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*emptypb.Empty, error)
	UninstallCluster(ctx context.Context, in *UninstallRequest, opts ...grpc.CallOption) (*emptypb.Empty, error)
	Info(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*ComponentInfo, error)
}

AlertingAdminClient is the client API for AlertingAdmin service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type AlertingAdminServer

type AlertingAdminServer interface {
	GetClusterConfiguration(context.Context, *emptypb.Empty) (*ClusterConfiguration, error)
	// Install/Uninstall the alerting cluster by setting enabled=true/false
	ConfigureCluster(context.Context, *ClusterConfiguration) (*emptypb.Empty, error)
	GetClusterStatus(context.Context, *emptypb.Empty) (*InstallStatus, error)
	InstallCluster(context.Context, *emptypb.Empty) (*emptypb.Empty, error)
	UninstallCluster(context.Context, *UninstallRequest) (*emptypb.Empty, error)
	Info(context.Context, *emptypb.Empty) (*ComponentInfo, error)
	// contains filtered or unexported methods
}

AlertingAdminServer is the server API for AlertingAdmin service. All implementations must embed UnimplementedAlertingAdminServer for forward compatibility

type ClusterConfiguration

type ClusterConfiguration struct {

	// number of replicas for the opni-alerting (odd-number for HA)
	NumReplicas int32 `protobuf:"varint,2,opt,name=numReplicas,proto3" json:"numReplicas,omitempty"`
	// Maximum time to wait for cluster
	// connections to settle before
	// evaluating notifications.
	ClusterSettleTimeout string `protobuf:"bytes,3,opt,name=clusterSettleTimeout,proto3" json:"clusterSettleTimeout,omitempty"`
	// Interval for gossip state syncs.
	// Setting this interval lower
	// (more frequent) will increase
	// convergence speeds across larger
	// clusters at the expense of
	// increased bandwidth usage.
	ClusterPushPullInterval string `protobuf:"bytes,4,opt,name=clusterPushPullInterval,proto3" json:"clusterPushPullInterval,omitempty"`
	// Interval between sending gossip
	// messages. By lowering this
	// value (more frequent) gossip
	// messages are propagated across
	// the cluster more quickly at the
	// expense of increased bandwidth.
	ClusterGossipInterval string             `protobuf:"bytes,5,opt,name=clusterGossipInterval,proto3" json:"clusterGossipInterval,omitempty"`
	ResourceLimits        *ResourceLimitSpec `protobuf:"bytes,6,opt,name=resourceLimits,proto3" json:"resourceLimits,omitempty"`
	// contains filtered or unexported fields
}

func (*ClusterConfiguration) Descriptor deprecated

func (*ClusterConfiguration) Descriptor() ([]byte, []int)

Deprecated: Use ClusterConfiguration.ProtoReflect.Descriptor instead.

func (*ClusterConfiguration) GetClusterGossipInterval

func (x *ClusterConfiguration) GetClusterGossipInterval() string

func (*ClusterConfiguration) GetClusterPushPullInterval

func (x *ClusterConfiguration) GetClusterPushPullInterval() string

func (*ClusterConfiguration) GetClusterSettleTimeout

func (x *ClusterConfiguration) GetClusterSettleTimeout() string

func (*ClusterConfiguration) GetNumReplicas

func (x *ClusterConfiguration) GetNumReplicas() int32

func (*ClusterConfiguration) GetResourceLimits

func (x *ClusterConfiguration) GetResourceLimits() *ResourceLimitSpec

func (*ClusterConfiguration) ProtoMessage

func (*ClusterConfiguration) ProtoMessage()

func (*ClusterConfiguration) ProtoReflect

func (x *ClusterConfiguration) ProtoReflect() protoreflect.Message

func (*ClusterConfiguration) Reset

func (x *ClusterConfiguration) Reset()

func (*ClusterConfiguration) String

func (x *ClusterConfiguration) String() string

func (*ClusterConfiguration) Validate

func (c *ClusterConfiguration) Validate() error

type Component added in v0.11.1

type Component struct {
	ConnectInfo   *ConnectInfo           `protobuf:"bytes,1,opt,name=connectInfo,proto3" json:"connectInfo,omitempty"`
	LastHandshake *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=lastHandshake,proto3" json:"lastHandshake,omitempty"`
	// contains filtered or unexported fields
}

func (*Component) Descriptor deprecated added in v0.11.1

func (*Component) Descriptor() ([]byte, []int)

Deprecated: Use Component.ProtoReflect.Descriptor instead.

func (*Component) GetConnectInfo added in v0.11.1

func (x *Component) GetConnectInfo() *ConnectInfo

func (*Component) GetLastHandshake added in v0.11.1

func (x *Component) GetLastHandshake() *timestamppb.Timestamp

func (*Component) ProtoMessage added in v0.11.1

func (*Component) ProtoMessage()

func (*Component) ProtoReflect added in v0.11.1

func (x *Component) ProtoReflect() protoreflect.Message

func (*Component) Reset added in v0.11.1

func (x *Component) Reset()

func (*Component) String added in v0.11.1

func (x *Component) String() string

type ComponentInfo added in v0.11.1

type ComponentInfo struct {
	CurSyncId  string                `protobuf:"bytes,2,opt,name=curSyncId,proto3" json:"curSyncId,omitempty"`
	Components map[string]*Component `` /* 161-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ComponentInfo) Descriptor deprecated added in v0.11.1

func (*ComponentInfo) Descriptor() ([]byte, []int)

Deprecated: Use ComponentInfo.ProtoReflect.Descriptor instead.

func (*ComponentInfo) GetComponents added in v0.11.1

func (x *ComponentInfo) GetComponents() map[string]*Component

func (*ComponentInfo) GetCurSyncId added in v0.11.1

func (x *ComponentInfo) GetCurSyncId() string

func (*ComponentInfo) ProtoMessage added in v0.11.1

func (*ComponentInfo) ProtoMessage()

func (*ComponentInfo) ProtoReflect added in v0.11.1

func (x *ComponentInfo) ProtoReflect() protoreflect.Message

func (*ComponentInfo) Reset added in v0.11.1

func (x *ComponentInfo) Reset()

func (*ComponentInfo) String added in v0.11.1

func (x *ComponentInfo) String() string

type ConfigReconcilerClient

type ConfigReconcilerClient interface {
	SyncConfig(ctx context.Context, opts ...grpc.CallOption) (ConfigReconciler_SyncConfigClient, error)
}

ConfigReconcilerClient is the client API for ConfigReconciler service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type ConfigReconcilerServer

type ConfigReconcilerServer interface {
	SyncConfig(ConfigReconciler_SyncConfigServer) error
	// contains filtered or unexported methods
}

ConfigReconcilerServer is the server API for ConfigReconciler service. All implementations must embed UnimplementedConfigReconcilerServer for forward compatibility

type ConfigReconciler_SyncConfigClient added in v0.11.1

type ConfigReconciler_SyncConfigClient interface {
	Send(*ConnectInfo) error
	Recv() (*SyncRequest, error)
	grpc.ClientStream
}

type ConfigReconciler_SyncConfigServer added in v0.11.1

type ConfigReconciler_SyncConfigServer interface {
	Send(*SyncRequest) error
	Recv() (*ConnectInfo, error)
	grpc.ServerStream
}

type ConnectInfo added in v0.11.1

type ConnectInfo struct {
	LifecycleUuid string    `protobuf:"bytes,1,opt,name=lifecycleUuid,proto3" json:"lifecycleUuid,omitempty"`
	Whoami        string    `protobuf:"bytes,2,opt,name=whoami,proto3" json:"whoami,omitempty"`
	State         SyncState `protobuf:"varint,3,opt,name=state,proto3,enum=alerting.ops.SyncState" json:"state,omitempty"`
	SyncId        string    `protobuf:"bytes,4,opt,name=syncId,proto3" json:"syncId,omitempty"`
	// contains filtered or unexported fields
}

func (*ConnectInfo) Descriptor deprecated added in v0.11.1

func (*ConnectInfo) Descriptor() ([]byte, []int)

Deprecated: Use ConnectInfo.ProtoReflect.Descriptor instead.

func (*ConnectInfo) GetLifecycleUuid added in v0.11.1

func (x *ConnectInfo) GetLifecycleUuid() string

func (*ConnectInfo) GetState added in v0.11.1

func (x *ConnectInfo) GetState() SyncState

func (*ConnectInfo) GetSyncId added in v0.11.1

func (x *ConnectInfo) GetSyncId() string

func (*ConnectInfo) GetWhoami added in v0.11.1

func (x *ConnectInfo) GetWhoami() string

func (*ConnectInfo) ProtoMessage added in v0.11.1

func (*ConnectInfo) ProtoMessage()

func (*ConnectInfo) ProtoReflect added in v0.11.1

func (x *ConnectInfo) ProtoReflect() protoreflect.Message

func (*ConnectInfo) Reset added in v0.11.1

func (x *ConnectInfo) Reset()

func (*ConnectInfo) String added in v0.11.1

func (x *ConnectInfo) String() string

type InstallState

type InstallState int32
const (
	InstallState_InstallUnknown  InstallState = 0
	InstallState_NotInstalled    InstallState = 1
	InstallState_InstallUpdating InstallState = 2
	InstallState_Installed       InstallState = 3
	InstallState_Uninstalling    InstallState = 4
)

func (InstallState) Descriptor

func (InstallState) Enum

func (x InstallState) Enum() *InstallState

func (InstallState) EnumDescriptor deprecated

func (InstallState) EnumDescriptor() ([]byte, []int)

Deprecated: Use InstallState.Descriptor instead.

func (InstallState) Number

func (InstallState) String

func (x InstallState) String() string

func (InstallState) Type

type InstallStatus

type InstallStatus struct {
	State      InstallState      `protobuf:"varint,1,opt,name=state,proto3,enum=alerting.ops.InstallState" json:"state,omitempty"`
	Version    string            `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
	Metadata   map[string]string `` /* 157-byte string literal not displayed */
	Conditions []string          `protobuf:"bytes,4,rep,name=conditions,proto3" json:"conditions,omitempty"`
	// contains filtered or unexported fields
}

func (*InstallStatus) Descriptor deprecated

func (*InstallStatus) Descriptor() ([]byte, []int)

Deprecated: Use InstallStatus.ProtoReflect.Descriptor instead.

func (*InstallStatus) GetConditions

func (x *InstallStatus) GetConditions() []string

func (*InstallStatus) GetMetadata

func (x *InstallStatus) GetMetadata() map[string]string

func (*InstallStatus) GetState

func (x *InstallStatus) GetState() InstallState

func (*InstallStatus) GetVersion

func (x *InstallStatus) GetVersion() string

func (*InstallStatus) ProtoMessage

func (*InstallStatus) ProtoMessage()

func (*InstallStatus) ProtoReflect

func (x *InstallStatus) ProtoReflect() protoreflect.Message

func (*InstallStatus) Reset

func (x *InstallStatus) Reset()

func (*InstallStatus) String

func (x *InstallStatus) String() string

type ResourceLimitSpec

type ResourceLimitSpec struct {

	// Storage resource limit for alerting volume
	Storage string `protobuf:"bytes,1,opt,name=storage,proto3" json:"storage,omitempty"`
	// CPU resource limit per replica
	Cpu string `protobuf:"bytes,2,opt,name=cpu,proto3" json:"cpu,omitempty"`
	// Memory resource limit per replica
	Memory string `protobuf:"bytes,3,opt,name=memory,proto3" json:"memory,omitempty"`
	// contains filtered or unexported fields
}

func (*ResourceLimitSpec) Descriptor deprecated

func (*ResourceLimitSpec) Descriptor() ([]byte, []int)

Deprecated: Use ResourceLimitSpec.ProtoReflect.Descriptor instead.

func (*ResourceLimitSpec) GetCpu

func (x *ResourceLimitSpec) GetCpu() string

func (*ResourceLimitSpec) GetMemory

func (x *ResourceLimitSpec) GetMemory() string

func (*ResourceLimitSpec) GetStorage

func (x *ResourceLimitSpec) GetStorage() string

func (*ResourceLimitSpec) ProtoMessage

func (*ResourceLimitSpec) ProtoMessage()

func (*ResourceLimitSpec) ProtoReflect

func (x *ResourceLimitSpec) ProtoReflect() protoreflect.Message

func (*ResourceLimitSpec) Reset

func (x *ResourceLimitSpec) Reset()

func (*ResourceLimitSpec) String

func (x *ResourceLimitSpec) String() string

func (*ResourceLimitSpec) Validate

func (r *ResourceLimitSpec) Validate() error

type SyncRequest

type SyncRequest struct {
	LifecycleId string                 `protobuf:"bytes,1,opt,name=lifecycleId,proto3" json:"lifecycleId,omitempty"`
	SyncId      string                 `protobuf:"bytes,2,opt,name=syncId,proto3" json:"syncId,omitempty"`
	Items       []*v1.PutConfigRequest `protobuf:"bytes,3,rep,name=items,proto3" json:"items,omitempty"`
	// contains filtered or unexported fields
}

func (*SyncRequest) Descriptor deprecated

func (*SyncRequest) Descriptor() ([]byte, []int)

Deprecated: Use SyncRequest.ProtoReflect.Descriptor instead.

func (*SyncRequest) GetItems

func (x *SyncRequest) GetItems() []*v1.PutConfigRequest

func (*SyncRequest) GetLifecycleId added in v0.11.1

func (x *SyncRequest) GetLifecycleId() string

func (*SyncRequest) GetSyncId added in v0.11.1

func (x *SyncRequest) GetSyncId() string

func (*SyncRequest) ProtoMessage

func (*SyncRequest) ProtoMessage()

func (*SyncRequest) ProtoReflect

func (x *SyncRequest) ProtoReflect() protoreflect.Message

func (*SyncRequest) Reset

func (x *SyncRequest) Reset()

func (*SyncRequest) String

func (x *SyncRequest) String() string

type SyncState added in v0.11.1

type SyncState int32
const (
	SyncState_SyncUnknown SyncState = 0
	SyncState_Synced      SyncState = 1
	SyncState_SyncError   SyncState = 2
)

func (SyncState) Descriptor added in v0.11.1

func (SyncState) Descriptor() protoreflect.EnumDescriptor

func (SyncState) Enum added in v0.11.1

func (x SyncState) Enum() *SyncState

func (SyncState) EnumDescriptor deprecated added in v0.11.1

func (SyncState) EnumDescriptor() ([]byte, []int)

Deprecated: Use SyncState.Descriptor instead.

func (SyncState) Number added in v0.11.1

func (x SyncState) Number() protoreflect.EnumNumber

func (SyncState) String added in v0.11.1

func (x SyncState) String() string

func (SyncState) Type added in v0.11.1

type UnimplementedAdminInfoServer added in v0.11.1

type UnimplementedAdminInfoServer struct {
}

UnimplementedAdminInfoServer must be embedded to have forward compatible implementations.

func (UnimplementedAdminInfoServer) SyncInfo added in v0.11.1

type UnimplementedAlertingAdminServer

type UnimplementedAlertingAdminServer struct {
}

UnimplementedAlertingAdminServer must be embedded to have forward compatible implementations.

func (UnimplementedAlertingAdminServer) ConfigureCluster

func (UnimplementedAlertingAdminServer) GetClusterConfiguration

func (UnimplementedAlertingAdminServer) GetClusterStatus

func (UnimplementedAlertingAdminServer) Info added in v0.11.1

func (UnimplementedAlertingAdminServer) InstallCluster

func (UnimplementedAlertingAdminServer) UninstallCluster

type UnimplementedConfigReconcilerServer

type UnimplementedConfigReconcilerServer struct {
}

UnimplementedConfigReconcilerServer must be embedded to have forward compatible implementations.

func (UnimplementedConfigReconcilerServer) SyncConfig added in v0.11.1

type UninstallRequest

type UninstallRequest struct {
	DeleteData bool `protobuf:"varint,1,opt,name=deleteData,proto3" json:"deleteData,omitempty"`
	// contains filtered or unexported fields
}

func (*UninstallRequest) Descriptor deprecated

func (*UninstallRequest) Descriptor() ([]byte, []int)

Deprecated: Use UninstallRequest.ProtoReflect.Descriptor instead.

func (*UninstallRequest) GetDeleteData

func (x *UninstallRequest) GetDeleteData() bool

func (*UninstallRequest) ProtoMessage

func (*UninstallRequest) ProtoMessage()

func (*UninstallRequest) ProtoReflect

func (x *UninstallRequest) ProtoReflect() protoreflect.Message

func (*UninstallRequest) Reset

func (x *UninstallRequest) Reset()

func (*UninstallRequest) String

func (x *UninstallRequest) String() string

type UnsafeAdminInfoServer added in v0.11.1

type UnsafeAdminInfoServer interface {
	// contains filtered or unexported methods
}

UnsafeAdminInfoServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to AdminInfoServer will result in compilation errors.

type UnsafeAlertingAdminServer

type UnsafeAlertingAdminServer interface {
	// contains filtered or unexported methods
}

UnsafeAlertingAdminServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to AlertingAdminServer will result in compilation errors.

type UnsafeConfigReconcilerServer

type UnsafeConfigReconcilerServer interface {
	// contains filtered or unexported methods
}

UnsafeConfigReconcilerServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to ConfigReconcilerServer will result in compilation errors.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL