API Reference

Packages

octorun.github.io/v1alpha1

Package v1alpha1 contains API Schema definitions for the v1alpha1 API group

Resource Types

Runner

Runner is the Schema for the runners API

Appears in:

FieldDescription
apiVersion stringoctorun.github.io/v1alpha1
kind stringRunner
TypeMeta TypeMeta
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec RunnerSpec
status RunnerStatus

RunnerImage

Appears in:

FieldDescription
name stringRunner Container image name.
pullPolicy PullPolicyImage pull policy. One of Always, Never, IfNotPresent.
pullSecrets LocalObjectReference arrayAn optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod

RunnerList

RunnerList contains a list of Runner

FieldDescription
apiVersion stringoctorun.github.io/v1alpha1
kind stringRunnerList
TypeMeta TypeMeta
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items Runner array

RunnerPlacement

Appears in:

FieldDescription
nodeSelector object (keys:string, values:string)A selector which must be true for the pod to fit on a node. Selector which must match a node’s labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
tolerations Toleration arrayIf specified, the pod’s tolerations.
affinity AffinityIf specified, the pod’s scheduling constraints

RunnerSet

RunnerSet is the Schema for the runnersets API

Appears in:

FieldDescription
apiVersion stringoctorun.github.io/v1alpha1
kind stringRunnerSet
TypeMeta TypeMeta
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec RunnerSetSpec
status RunnerSetStatus

RunnerSetList

RunnerSetList contains a list of RunnerSet

FieldDescription
apiVersion stringoctorun.github.io/v1alpha1
kind stringRunnerSetList
TypeMeta TypeMeta
metadata ListMetaRefer to Kubernetes API documentation for fields of metadata.
items RunnerSet array

RunnerSetSpec

RunnerSetSpec defines the desired state of RunnerSet

Appears in:

FieldDescription
runners integerRunners is the number of desired runners. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1.
selector LabelSelectorSelector is a label query over runners that should match the replica count. Label keys and values that must match in order to be controlled by this RunnerSet. It must match the runner template’s labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
template RunnerTemplateSpecTemplate is the object that describes the runner that will be created if insufficient replicas are detected.

RunnerSetStatus

RunnerSetStatus defines the observed state of RunnerSet

Appears in:

FieldDescription
runners integerRunners is the most recently observed number of runners.
idleRunners integerThe number of idle runners for this RunnerSet.
activeRunners integerThe number of active runners for this RunnerSet.
conditions Condition arrayConditions defines current service state of the runner.
selector stringSelector is the same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: http://kubernetes.io/docs/user-guide/labels#label-selectors

RunnerSpec

RunnerSpec defines the desired state of Runner

Appears in:

FieldDescription
url stringThe github Organization or Repository URL for this runner. Must be a valid Github Org or Repository URL. eg: - “https://github.com/org” - “https://github.com/org/repo”
id integerID of the runner assigned by Github, basically it is sequential number. Read-only.
os stringOS type of the runner. Populated by the system. Read-only.
group stringName of the runner group to add to this runner. Defaults to Default.
workdir stringRelative runner work directory.
image RunnerImageRunner container image specification
placement RunnerPlacementPlacement configuration to pass to kubernetes pod (affinity, node selector, etc).
resources ResourceRequirementsCompute resources required by runner container.
serviceAccountName stringServiceAccountName is the name of the ServiceAccount to use to run this runner pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
securityContext SecurityContextSecurityContext holds security configuration that will be applied to the runner container.
runtimeClassName stringRuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this runner pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the “legacy” RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler.
volumes Volume arrayList of volumes that can be mounted by runner container belonging to the runner pod.
volumeMounts VolumeMount arrayRunner pod volumes to mount into the runner container filesystem.

RunnerStatus

RunnerStatus defines the observed state of Runner

Appears in:

FieldDescription
phase RunnerPhasePhase represents the current phase of runner.
conditions Condition arrayConditions defines current service state of the runner.

RunnerTemplateSpec

RunnerTemplateSpec describes the data a runner should have when created from a template

Appears in:

FieldDescription
metadata ObjectMetaRefer to Kubernetes API documentation for fields of metadata.
spec RunnerSpecSpecification of the desired behavior of the runner. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status