Skip to content

Latest commit

 

History

History
executable file
·
81 lines (70 loc) · 2.05 KB

kubernetes.md

File metadata and controls

executable file
·
81 lines (70 loc) · 2.05 KB

Run AlloyCI Runner on a Kubernetes cluster

To get started with the AlloyCI Runner on Kubernetes you need to define resources that you can then push to the cluster with kubectl.

A recommended approach to this is to create a ConfigMap in Kubernetes such as the following:

apiVersion: v1
kind: ConfigMap
metadata:
  name: gitlab-runner
  namespace: gitlab
data:
  config.toml: |
    concurrent = 4

    [[runners]]
      name = "Kubernetes Runner"
      url = "https://gitlab.com/ci"
      token = "...."
      executor = "kubernetes"
      [runners.kubernetes]
        namespace = "gitlab"
        image = "busybox"

Where image (optional) is the default Docker image to run jobs on top of.

Note: The token can be found in /etc/gitlab-runner/config.toml and should have been generated after registering the Runner. It's not to be confused with the registration token that can be found under your project's Settings > CI/CD > Runners settings.

Then create a Deployment or ReplicationController which uses the ConfigMap. This is an example of a Deployment:

apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: gitlab-runner
  namespace: gitlab
spec:
  replicas: 1
  selector:
    matchLabels:
      name: gitlab-runner
  template:
    metadata:
      labels:
        name: gitlab-runner
    spec:
      containers:
      - args:
        - run
        image: gitlab/gitlab-runner:latest
        imagePullPolicy: Always
        name: gitlab-runner
        volumeMounts:
        - mountPath: /etc/gitlab-runner
          name: config
        - mountPath: /etc/ssl/certs
          name: cacerts
          readOnly: true
      restartPolicy: Always
      volumes:
      - configMap:
          name: gitlab-runner
        name: config
      - hostPath:
          path: /usr/share/ca-certificates/mozilla
        name: cacerts

For more details see Kubernetes executor and the [runners.kubernetes] section of advanced configuration.