Documentation ¶
Index ¶
- Variables
- type ContainerConfig
- type HealthRequest
- type HealthResponse
- type RunnerHealthRequest
- func (*RunnerHealthRequest) Descriptor() ([]byte, []int)deprecated
- func (x *RunnerHealthRequest) GetRunnerId() string
- func (*RunnerHealthRequest) ProtoMessage()
- func (x *RunnerHealthRequest) ProtoReflect() protoreflect.Message
- func (x *RunnerHealthRequest) Reset()
- func (x *RunnerHealthRequest) String() string
- type RunnerHealthResponse
- func (*RunnerHealthResponse) Descriptor() ([]byte, []int)deprecated
- func (x *RunnerHealthResponse) GetError() string
- func (x *RunnerHealthResponse) GetHealthy() bool
- func (*RunnerHealthResponse) ProtoMessage()
- func (x *RunnerHealthResponse) ProtoReflect() protoreflect.Message
- func (x *RunnerHealthResponse) Reset()
- func (x *RunnerHealthResponse) String() string
- type StartRunnerRequest
- func (*StartRunnerRequest) Descriptor() ([]byte, []int)deprecated
- func (x *StartRunnerRequest) GetBuildArtifact() []byte
- func (x *StartRunnerRequest) GetContainerConfig() *ContainerConfig
- func (x *StartRunnerRequest) GetVars() map[string]string
- func (x *StartRunnerRequest) GetWorkerAddress() string
- func (*StartRunnerRequest) ProtoMessage()
- func (x *StartRunnerRequest) ProtoReflect() protoreflect.Message
- func (x *StartRunnerRequest) Reset()
- func (x *StartRunnerRequest) String() string
- type StartRunnerResponse
- func (*StartRunnerResponse) Descriptor() ([]byte, []int)deprecated
- func (x *StartRunnerResponse) GetError() string
- func (x *StartRunnerResponse) GetRunnerAddress() string
- func (x *StartRunnerResponse) GetRunnerId() string
- func (*StartRunnerResponse) ProtoMessage()
- func (x *StartRunnerResponse) ProtoReflect() protoreflect.Message
- func (x *StartRunnerResponse) Reset()
- func (x *StartRunnerResponse) String() string
- type StopRunnerRequest
- type StopRunnerResponse
- func (*StopRunnerResponse) Descriptor() ([]byte, []int)deprecated
- func (x *StopRunnerResponse) GetError() string
- func (*StopRunnerResponse) ProtoMessage()
- func (x *StopRunnerResponse) ProtoReflect() protoreflect.Message
- func (x *StopRunnerResponse) Reset()
- func (x *StopRunnerResponse) String() string
Constants ¶
This section is empty.
Variables ¶
var File_autokitteh_runner_manager_v1_runner_manager_svc_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type ContainerConfig ¶
type ContainerConfig struct { Image string `protobuf:"bytes,1,opt,name=image,proto3" json:"image,omitempty"` // TBD by @efiShtain // contains filtered or unexported fields }
func (*ContainerConfig) Descriptor
deprecated
func (*ContainerConfig) Descriptor() ([]byte, []int)
Deprecated: Use ContainerConfig.ProtoReflect.Descriptor instead.
func (*ContainerConfig) GetImage ¶
func (x *ContainerConfig) GetImage() string
func (*ContainerConfig) ProtoMessage ¶
func (*ContainerConfig) ProtoMessage()
func (*ContainerConfig) ProtoReflect ¶
func (x *ContainerConfig) ProtoReflect() protoreflect.Message
func (*ContainerConfig) Reset ¶
func (x *ContainerConfig) Reset()
func (*ContainerConfig) String ¶
func (x *ContainerConfig) String() string
type HealthRequest ¶
type HealthRequest struct {
// contains filtered or unexported fields
}
func (*HealthRequest) Descriptor
deprecated
func (*HealthRequest) Descriptor() ([]byte, []int)
Deprecated: Use HealthRequest.ProtoReflect.Descriptor instead.
func (*HealthRequest) ProtoMessage ¶
func (*HealthRequest) ProtoMessage()
func (*HealthRequest) ProtoReflect ¶
func (x *HealthRequest) ProtoReflect() protoreflect.Message
func (*HealthRequest) Reset ¶
func (x *HealthRequest) Reset()
func (*HealthRequest) String ¶
func (x *HealthRequest) String() string
type HealthResponse ¶
type HealthResponse struct { Error string `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"` // contains filtered or unexported fields }
func (*HealthResponse) Descriptor
deprecated
func (*HealthResponse) Descriptor() ([]byte, []int)
Deprecated: Use HealthResponse.ProtoReflect.Descriptor instead.
func (*HealthResponse) GetError ¶
func (x *HealthResponse) GetError() string
func (*HealthResponse) ProtoMessage ¶
func (*HealthResponse) ProtoMessage()
func (*HealthResponse) ProtoReflect ¶
func (x *HealthResponse) ProtoReflect() protoreflect.Message
func (*HealthResponse) Reset ¶
func (x *HealthResponse) Reset()
func (*HealthResponse) String ¶
func (x *HealthResponse) String() string
type RunnerHealthRequest ¶
type RunnerHealthRequest struct { RunnerId string `protobuf:"bytes,1,opt,name=runner_id,json=runnerId,proto3" json:"runner_id,omitempty"` // contains filtered or unexported fields }
func (*RunnerHealthRequest) Descriptor
deprecated
func (*RunnerHealthRequest) Descriptor() ([]byte, []int)
Deprecated: Use RunnerHealthRequest.ProtoReflect.Descriptor instead.
func (*RunnerHealthRequest) GetRunnerId ¶
func (x *RunnerHealthRequest) GetRunnerId() string
func (*RunnerHealthRequest) ProtoMessage ¶
func (*RunnerHealthRequest) ProtoMessage()
func (*RunnerHealthRequest) ProtoReflect ¶
func (x *RunnerHealthRequest) ProtoReflect() protoreflect.Message
func (*RunnerHealthRequest) Reset ¶
func (x *RunnerHealthRequest) Reset()
func (*RunnerHealthRequest) String ¶
func (x *RunnerHealthRequest) String() string
type RunnerHealthResponse ¶
type RunnerHealthResponse struct { Healthy bool `protobuf:"varint,1,opt,name=healthy,proto3" json:"healthy,omitempty"` Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"` // contains filtered or unexported fields }
func (*RunnerHealthResponse) Descriptor
deprecated
func (*RunnerHealthResponse) Descriptor() ([]byte, []int)
Deprecated: Use RunnerHealthResponse.ProtoReflect.Descriptor instead.
func (*RunnerHealthResponse) GetError ¶
func (x *RunnerHealthResponse) GetError() string
func (*RunnerHealthResponse) GetHealthy ¶
func (x *RunnerHealthResponse) GetHealthy() bool
func (*RunnerHealthResponse) ProtoMessage ¶
func (*RunnerHealthResponse) ProtoMessage()
func (*RunnerHealthResponse) ProtoReflect ¶
func (x *RunnerHealthResponse) ProtoReflect() protoreflect.Message
func (*RunnerHealthResponse) Reset ¶
func (x *RunnerHealthResponse) Reset()
func (*RunnerHealthResponse) String ¶
func (x *RunnerHealthResponse) String() string
type StartRunnerRequest ¶
type StartRunnerRequest struct { ContainerConfig *ContainerConfig `protobuf:"bytes,1,opt,name=container_config,json=containerConfig,proto3" json:"container_config,omitempty"` // user code as tar archive BuildArtifact []byte `protobuf:"bytes,2,opt,name=build_artifact,json=buildArtifact,proto3" json:"build_artifact,omitempty"` // vars from manifest, secrets and connections Vars map[string]string `` /* 149-byte string literal not displayed */ WorkerAddress string `protobuf:"bytes,4,opt,name=worker_address,json=workerAddress,proto3" json:"worker_address,omitempty"` // contains filtered or unexported fields }
TODO: Will become Start once we split to files Tell runner manager to start a runner
func (*StartRunnerRequest) Descriptor
deprecated
func (*StartRunnerRequest) Descriptor() ([]byte, []int)
Deprecated: Use StartRunnerRequest.ProtoReflect.Descriptor instead.
func (*StartRunnerRequest) GetBuildArtifact ¶
func (x *StartRunnerRequest) GetBuildArtifact() []byte
func (*StartRunnerRequest) GetContainerConfig ¶
func (x *StartRunnerRequest) GetContainerConfig() *ContainerConfig
func (*StartRunnerRequest) GetVars ¶
func (x *StartRunnerRequest) GetVars() map[string]string
func (*StartRunnerRequest) GetWorkerAddress ¶
func (x *StartRunnerRequest) GetWorkerAddress() string
func (*StartRunnerRequest) ProtoMessage ¶
func (*StartRunnerRequest) ProtoMessage()
func (*StartRunnerRequest) ProtoReflect ¶
func (x *StartRunnerRequest) ProtoReflect() protoreflect.Message
func (*StartRunnerRequest) Reset ¶
func (x *StartRunnerRequest) Reset()
func (*StartRunnerRequest) String ¶
func (x *StartRunnerRequest) String() string
type StartRunnerResponse ¶
type StartRunnerResponse struct { RunnerId string `protobuf:"bytes,1,opt,name=runner_id,json=runnerId,proto3" json:"runner_id,omitempty"` RunnerAddress string `protobuf:"bytes,2,opt,name=runner_address,json=runnerAddress,proto3" json:"runner_address,omitempty"` Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"` // contains filtered or unexported fields }
func (*StartRunnerResponse) Descriptor
deprecated
func (*StartRunnerResponse) Descriptor() ([]byte, []int)
Deprecated: Use StartRunnerResponse.ProtoReflect.Descriptor instead.
func (*StartRunnerResponse) GetError ¶
func (x *StartRunnerResponse) GetError() string
func (*StartRunnerResponse) GetRunnerAddress ¶
func (x *StartRunnerResponse) GetRunnerAddress() string
func (*StartRunnerResponse) GetRunnerId ¶
func (x *StartRunnerResponse) GetRunnerId() string
func (*StartRunnerResponse) ProtoMessage ¶
func (*StartRunnerResponse) ProtoMessage()
func (*StartRunnerResponse) ProtoReflect ¶
func (x *StartRunnerResponse) ProtoReflect() protoreflect.Message
func (*StartRunnerResponse) Reset ¶
func (x *StartRunnerResponse) Reset()
func (*StartRunnerResponse) String ¶
func (x *StartRunnerResponse) String() string
type StopRunnerRequest ¶
type StopRunnerRequest struct { RunnerId string `protobuf:"bytes,1,opt,name=runner_id,json=runnerId,proto3" json:"runner_id,omitempty"` // contains filtered or unexported fields }
func (*StopRunnerRequest) Descriptor
deprecated
func (*StopRunnerRequest) Descriptor() ([]byte, []int)
Deprecated: Use StopRunnerRequest.ProtoReflect.Descriptor instead.
func (*StopRunnerRequest) GetRunnerId ¶
func (x *StopRunnerRequest) GetRunnerId() string
func (*StopRunnerRequest) ProtoMessage ¶
func (*StopRunnerRequest) ProtoMessage()
func (*StopRunnerRequest) ProtoReflect ¶
func (x *StopRunnerRequest) ProtoReflect() protoreflect.Message
func (*StopRunnerRequest) Reset ¶
func (x *StopRunnerRequest) Reset()
func (*StopRunnerRequest) String ¶
func (x *StopRunnerRequest) String() string
type StopRunnerResponse ¶
type StopRunnerResponse struct { Error string `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"` // contains filtered or unexported fields }
func (*StopRunnerResponse) Descriptor
deprecated
func (*StopRunnerResponse) Descriptor() ([]byte, []int)
Deprecated: Use StopRunnerResponse.ProtoReflect.Descriptor instead.
func (*StopRunnerResponse) GetError ¶
func (x *StopRunnerResponse) GetError() string
func (*StopRunnerResponse) ProtoMessage ¶
func (*StopRunnerResponse) ProtoMessage()
func (*StopRunnerResponse) ProtoReflect ¶
func (x *StopRunnerResponse) ProtoReflect() protoreflect.Message
func (*StopRunnerResponse) Reset ¶
func (x *StopRunnerResponse) Reset()
func (*StopRunnerResponse) String ¶
func (x *StopRunnerResponse) String() string