Last active
September 26, 2024 13:24
-
-
Save remcohendriks/339594095369db210429fdcb3cdf4434 to your computer and use it in GitHub Desktop.
Gitlab-runner helm values for arm64
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## GitLab Runner Image | |
## | |
## By default it's using gitlab/gitlab-runner:alpine-v{VERSION} | |
## where {VERSION} is taken from Chart.yaml from appVersion field | |
## | |
## ref: https://hub.docker.com/r/gitlab/gitlab-runner/tags/ | |
## | |
# image: gitlab/gitlab-runner:alpine-v11.6.0 | |
## Specify a imagePullPolicy | |
## 'Always' if imageTag is 'latest', else set to 'IfNotPresent' | |
## ref: https://kubernetes.io/docs/concepts/containers/images/#pre-pulled-images | |
## | |
imagePullPolicy: IfNotPresent | |
## The GitLab Server URL (with protocol) that want to register the runner against | |
## ref: https://docs.gitlab.com/runner/commands/README.html#gitlab-runner-register | |
## | |
gitlabUrl: https://gitlab.com/ | |
## The Registration Token for adding new Runners to the GitLab Server. This must | |
## be retrieved from your GitLab Instance. | |
## ref: https://docs.gitlab.com/ce/ci/runners/README.html | |
## | |
runnerRegistrationToken: "your token here" | |
## The Runner Token for adding new Runners to the GitLab Server. This must | |
## be retrieved from your GitLab Instance. It is token of already registered runner. | |
## ref: (we don't yet have docs for that, but we want to use existing token) | |
## | |
# runnerToken: "" | |
# | |
## Unregister all runners before termination | |
## | |
## Updating the runner's chart version or configuration will cause the runner container | |
## to be terminated and created again. This may cause your Gitlab instance to reference | |
## non-existant runners. Un-registering the runner before termination mitigates this issue. | |
## ref: https://docs.gitlab.com/runner/commands/README.html#gitlab-runner-unregister | |
## | |
# unregisterRunners: true | |
## When stopping the runner, give it time to wait for its jobs to terminate. | |
## | |
## Updating the runner's chart version or configuration will cause the runner container | |
## to be terminated with a graceful stop request. terminationGracePeriodSeconds | |
## instructs Kubernetes to wait long enough for the runner pod to terminate gracefully. | |
## ref: https://docs.gitlab.com/runner/commands/#signals | |
terminationGracePeriodSeconds: 3600 | |
## Set the certsSecretName in order to pass custom certficates for GitLab Runner to use | |
## Provide resource name for a Kubernetes Secret Object in the same namespace, | |
## this is used to populate the /home/gitlab-runner/.gitlab-runner/certs/ directory | |
## ref: https://docs.gitlab.com/runner/configuration/tls-self-signed.html#supported-options-for-self-signed-certificates | |
## | |
# certsSecretName: | |
## Configure the maximum number of concurrent jobs | |
## ref: https://docs.gitlab.com/runner/configuration/advanced-configuration.html#the-global-section | |
## | |
concurrent: 2 # down from 10, I don't want to overburden the cluster | |
## Defines in seconds how often to check GitLab for a new builds | |
## ref: https://docs.gitlab.com/runner/configuration/advanced-configuration.html#the-global-section | |
## | |
checkInterval: 5 # down from 30, no performance impact | |
## Configure GitLab Runner's logging level. Available values are: debug, info, warn, error, fatal, panic | |
## ref: https://docs.gitlab.com/runner/configuration/advanced-configuration.html#the-global-section | |
## | |
# logLevel: | |
## Configure GitLab Runner's logging format. Available values are: runner, text, json | |
## ref: https://docs.gitlab.com/runner/configuration/advanced-configuration.html#the-global-section | |
## | |
# logFormat: | |
## For RBAC support: | |
rbac: | |
create: true # from false, to set up permissions. | |
## Define specific rbac permissions. | |
# resources: ["pods", "pods/exec", "secrets"] | |
# verbs: ["get", "list", "watch", "create", "patch", "delete"] | |
## Run the gitlab-bastion container with the ability to deploy/manage containers of jobs | |
## cluster-wide or only within namespace | |
clusterWideAccess: false | |
## Use the following Kubernetes Service Account name if RBAC is disabled in this Helm chart (see rbac.create) | |
## | |
# serviceAccountName: default | |
## Specify annotations for Service Accounts, useful for annotations such as eks.amazonaws.com/role-arn | |
## | |
## ref: https://docs.aws.amazon.com/eks/latest/userguide/specify-service-account-role.html | |
## | |
# serviceAccountAnnotations: {} | |
## Use podSecurity Policy | |
## ref: https://kubernetes.io/docs/concepts/policy/pod-security-policy/ | |
podSecurityPolicy: | |
enabled: false | |
resourceNames: | |
- gitlab-runner | |
## Configure integrated Prometheus metrics exporter | |
## ref: https://docs.gitlab.com/runner/monitoring/#configuration-of-the-metrics-http-server | |
metrics: | |
enabled: true | |
## Configuration for the Pods that that the runner launches for each new job | |
## | |
runners: | |
## Default container image to use for builds when none is specified | |
## | |
image: ubuntu:18.04 # up from 16.04. 20.04 appears not to be working (yet). | |
## Specify one or more imagePullSecrets | |
## | |
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ | |
## | |
# imagePullSecrets: [] | |
## Specify the image pull policy: never, if-not-present, always. The cluster default will be used if not set. | |
## | |
# imagePullPolicy: "" | |
## Defines number of concurrent requests for new job from GitLab | |
## ref: https://docs.gitlab.com/runner/configuration/advanced-configuration.html#the-runners-section | |
## | |
# requestConcurrency: 1 | |
## Specify whether the runner should be locked to a specific project: true, false. Defaults to true. | |
## | |
# locked: true | |
## Specify the tags associated with the runner. Comma-separated list of tags. | |
## | |
## ref: https://docs.gitlab.com/ce/ci/runners/#use-tags-to-limit-the-number-of-jobs-using-the-runner | |
## | |
tags: "arm64" # important to ensure we only run arm64 jobs on the runner. | |
## Specify if jobs without tags should be run. | |
## If not specified, Runner will default to true if no tags were specified. In other case it will | |
## default to false. | |
## | |
## ref: https://docs.gitlab.com/ce/ci/runners/#runner-is-allowed-to-run-untagged-jobs | |
## | |
runUntagged: false # I don't want to run 'regular' x86 jobs on the cluster. | |
## Specify whether the runner should only run protected branches. | |
## Defaults to False. | |
## | |
## ref: https://docs.gitlab.com/ee/ci/runners/#prevent-runners-from-revealing-sensitive-information | |
## | |
# protected: true | |
## Run all containers with the privileged flag enabled | |
## This will allow the docker:dind image to run if you need to run Docker | |
## commands. Please read the docs before turning this on: | |
## ref: https://docs.gitlab.com/runner/executors/kubernetes.html#using-dockerdind | |
## | |
privileged: true # required to run docker:dind | |
## The name of the secret containing runner-token and runner-registration-token | |
# secret: gitlab-runner | |
## Namespace to run Kubernetes jobs in (defaults to the same namespace of this release) | |
## | |
# namespace: | |
## The amount of time, in seconds, that needs to pass before the runner will | |
## timeout attempting to connect to the container it has just created. | |
## ref: https://docs.gitlab.com/runner/executors/kubernetes.html | |
pollTimeout: 180 | |
## Set maximum build log size in kilobytes, by default set to 4096 (4MB) | |
## ref: https://docs.gitlab.com/runner/configuration/advanced-configuration.html#the-runners-section | |
outputLimit: 4096 | |
## Distributed runners caching | |
## ref: https://docs.gitlab.com/runner/configuration/autoscale.html#distributed-runners-caching | |
## | |
## If you want to use s3 based distributing caching: | |
## First of all you need to uncomment General settings and S3 settings sections. | |
## | |
## Create a secret 's3access' containing 'accesskey' & 'secretkey' | |
## ref: https://aws.amazon.com/blogs/security/wheres-my-secret-access-key/ | |
## | |
## $ kubectl create secret generic s3access \ | |
## --from-literal=accesskey="YourAccessKey" \ | |
## --from-literal=secretkey="YourSecretKey" | |
## ref: https://kubernetes.io/docs/concepts/configuration/secret/ | |
## | |
## If you want to use gcs based distributing caching: | |
## First of all you need to uncomment General settings and GCS settings sections. | |
## | |
## Access using credentials file: | |
## Create a secret 'google-application-credentials' containing your application credentials file. | |
## ref: https://docs.gitlab.com/runner/configuration/advanced-configuration.html#the-runnerscachegcs-section | |
## You could configure | |
## $ kubectl create secret generic google-application-credentials \ | |
## --from-file=gcs-application-credentials-file=./path-to-your-google-application-credentials-file.json | |
## ref: https://kubernetes.io/docs/concepts/configuration/secret/ | |
## | |
## Access using access-id and private-key: | |
## Create a secret 'gcsaccess' containing 'gcs-access-id' & 'gcs-private-key'. | |
## ref: https://docs.gitlab.com/runner/configuration/advanced-configuration.html#the-runnerscachegcs-section | |
## You could configure | |
## $ kubectl create secret generic gcsaccess \ | |
## --from-literal=gcs-access-id="YourAccessID" \ | |
## --from-literal=gcs-private-key="YourPrivateKey" | |
## ref: https://kubernetes.io/docs/concepts/configuration/secret/ | |
cache: {} | |
## General settings | |
# cacheType: s3 | |
# cacheShared: true | |
## S3 settings | |
# s3ServerAddress: "minio:9000" | |
# s3BucketName: "gitlab-runner" | |
# s3CacheInsecure: true | |
# secretName: minio | |
## GCS settings | |
# gcsBucketName: | |
## Use this line for access using access-id and private-key | |
# secretName: gcsaccess | |
## Use this line for access using google-application-credentials file | |
# secretName: google-application-credentials | |
## Build Container specific configuration | |
## | |
builds: {} | |
# cpuLimit: 200m | |
# cpuLimitOverwriteMaxAllowed: 400m | |
# memoryLimit: 256Mi | |
# memoryLimitOverwriteMaxAllowed: 512Mi | |
# cpuRequests: 100m | |
# cpuRequestsOverwriteMaxAllowed: 200m | |
# memoryRequests: 128Mi | |
# memoryRequestsOverwriteMaxAllowed: 256Mi | |
## Service Container specific configuration | |
## | |
services: {} | |
# cpuLimit: 200m | |
# memoryLimit: 256Mi | |
# cpuRequests: 100m | |
# memoryRequests: 128Mi | |
## Helper Container specific configuration | |
## | |
helpers: | |
cpuLimit: 200m | |
memoryLimit: 256Mi | |
cpuRequests: 100m | |
memoryRequests: 128Mi | |
image: "gitlab/gitlab-runner-helper:arm64-${CI_RUNNER_REVISION}" # change to use arm64 runner helper | |
## Helper container security context configuration | |
## Refer to https://docs.gitlab.com/runner/executors/kubernetes.html#using-security-context | |
# pod_security_context: | |
# run_as_non_root: true | |
# run_as_user: 100 | |
# run_as_group: 100 | |
# fs_group: 65533 | |
# supplemental_groups: [101, 102] | |
## Service Account to be used for runners | |
## | |
serviceAccountName: gitlab-sa | |
## If Gitlab is not reachable through $CI_SERVER_URL | |
## | |
# cloneUrl: | |
## Specify node labels for CI job pods assignment | |
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ | |
## | |
# nodeSelector: {} | |
## Specify node tolerations for CI job pods assignment | |
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ | |
## | |
# nodeTolerations: {} | |
## Specify pod labels for CI job pods | |
## | |
podLabels: | |
app: runner # add pod label to identify for pod affinity (see below) | |
## Specify annotations for job pods, useful for annotations such as iam.amazonaws.com/role | |
# podAnnotations: {} | |
## Configure environment variables that will be injected to the pods that are created while | |
## the build is running. These variables are passed as parameters, i.e. `--env "NAME=VALUE"`, | |
## to `gitlab-runner register` command. | |
## | |
## Note that `envVars` (see below) are only present in the runner pod, not the pods that are | |
## created for each build. | |
## | |
## ref: https://docs.gitlab.com/runner/commands/#gitlab-runner-register | |
## | |
env: | |
DOCKER_DRIVER: overlay2 # increases performance of file system. | |
## Configure securitycontext | |
## ref: http://kubernetes.io/docs/user-guide/security-context/ | |
## | |
securityContext: | |
fsGroup: 65533 | |
runAsUser: 100 | |
## Configure resource requests and limits | |
## ref: http://kubernetes.io/docs/user-guide/compute-resources/ | |
## | |
resources: {} | |
# limits: | |
# memory: 256Mi | |
# cpu: 200m | |
# requests: | |
# memory: 128Mi | |
# cpu: 100m | |
## Affinity for pod assignment | |
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity | |
## | |
affinity: # this antiAffinity is set up to ensure runners start on differnt nodes. | |
podAntiAffinity: | |
requiredDuringSchedulingIgnoredDuringExecution: | |
- labelSelector: | |
matchExpressions: | |
- key: "app" | |
operator: In | |
values: | |
- runner # same value as on r.290 | |
topologyKey: "kubernetes.io/hostname" | |
## Node labels for pod assignment | |
## Ref: https://kubernetes.io/docs/user-guide/node-selection/ | |
## | |
nodeSelector: {} | |
# Example: The gitlab runner manager should not run on spot instances so you can assign | |
# them to the regular worker nodes only. | |
# node-role.kubernetes.io/worker: "true" | |
## List of node taints to tolerate (requires Kubernetes >= 1.6) | |
## Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ | |
## | |
tolerations: [] | |
# Example: Regular worker nodes may have a taint, thus you need to tolerate the taint | |
# when you assign the gitlab runner manager with nodeSelector or affinity to the nodes. | |
# - key: "node-role.kubernetes.io/worker" | |
# operator: "Exists" | |
## Configure environment variables that will be present when the registration command runs | |
## This provides further control over the registration process and the config.toml file | |
## ref: `gitlab-runner register --help` | |
## ref: https://docs.gitlab.com/runner/configuration/advanced-configuration.html | |
## | |
# envVars: | |
# - name: RUNNER_EXECUTOR | |
# value: kubernetes | |
## list of hosts and IPs that will be injected into the pod's hosts file | |
hostAliases: [] | |
# Example: | |
# - ip: "127.0.0.1" | |
# hostnames: | |
# - "foo.local" | |
# - "bar.local" | |
# - ip: "10.1.2.3" | |
# hostnames: | |
# - "foo.remote" | |
# - "bar.remote" | |
## Annotations to be added to manager pod | |
## | |
podAnnotations: {} | |
# Example: | |
# iam.amazonaws.com/role: <my_role_arn> | |
## Labels to be added to manager pod | |
## | |
podLabels: {} | |
# Example: | |
# owner.team: <my_cool_team> | |
## HPA support for custom metrics: | |
## This section enables runners to autoscale based on defined custom metrics. | |
## In order to use this functionality, Need to enable a custom metrics API server by | |
## implementing "custom.metrics.k8s.io" using supported third party adapter | |
## Example: https://github.com/directxman12/k8s-prometheus-adapter | |
## | |
#hpa: {} | |
# minReplicas: 1 | |
# maxReplicas: 10 | |
# metrics: | |
# - type: Pods | |
# pods: | |
# metricName: gitlab_runner_jobs | |
# targetAverageValue: 400m |
image: "gitlab/gitlab-runner-helper:arm64-${CI_RUNNER_REVISION}"
didn't work.
but:
runners:
config: |
[[runners]]
[runners.kubernetes]
[runners.kubernetes.node_selector]
"kubernetes.io/arch" = "arm64"
works
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You saved my life (:+1: