Skip to content

Commit

Permalink
Merge branch 'main' into feat/managed-grafana-prometheus-loki
Browse files Browse the repository at this point in the history
  • Loading branch information
milldr committed Jun 6, 2024
2 parents a676883 + 9386d29 commit cf315db
Show file tree
Hide file tree
Showing 19 changed files with 293 additions and 210 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/bats.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: bats

on:
pull_request_target:
pull_request:
types: [labeled, opened, synchronize, unlabeled]

jobs:
Expand All @@ -19,10 +19,6 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
repository: ${{ github.event.pull_request.head.repo.full_name }}
# Check out the PR commit, not the merge commit
# Use `ref` instead of `sha` to enable pushing back to `ref`
ref: ${{ github.event.pull_request.head.ref }}

- name: Run tests on modified modules
id: get-modified-files
Expand Down
64 changes: 37 additions & 27 deletions modules/eks/actions-runner-controller/README.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.2
version: 0.2.0

# This chart only deploys Resources for actions-runner-controller, so app version does not really apply.
# We use Resource API version instead.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,34 +1,3 @@
{{- if .Values.pvc_enabled }}
---
# Persistent Volumes can be used for image caching
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: {{ .Values.release_name }}
spec:
accessModes:
- ReadWriteMany
# StorageClassName comes from efs-controller and must be deployed first.
storageClassName: efs-sc
resources:
requests:
# EFS is not actually storage constrained, but this storage request is
# required. 100Gi is a ballpark for how much we initially request, but this
# may grow. We are responsible for docker pruning this periodically to
# save space.
storage: 100Gi
{{- end }}
{{- if .Values.docker_config_json_enabled }}
---
apiVersion: v1
kind: Secret
metadata:
name: {{ .Values.release_name }}-regcred
type: kubernetes.io/dockerconfigjson
data:
.dockerconfigjson: {{ .Values.docker_config_json }}
{{- end }}
---
apiVersion: actions.summerwind.dev/v1alpha1
kind: RunnerDeployment
metadata:
Expand All @@ -38,13 +7,13 @@ spec:
# See https://github.com/actions-runner-controller/actions-runner-controller/issues/206#issuecomment-748601907
# replicas: 1
template:
{{- with index .Values "pod_annotations" }}
{{- with .Values.pod_annotations }}
metadata:
annotations:
{{- toYaml . | nindent 8 }}
{{- end }}
spec:
{{- if .Values.docker_config_json_enabled }}
{{- if .Values.docker_config_json_enabled }}
# secrets volumeMount are always mounted readOnly so config.json has to be copied to the correct directory
# https://github.com/kubernetes/kubernetes/issues/62099
# https://github.com/actions/actions-runner-controller/issues/2123#issuecomment-1527077517
Expand Down Expand Up @@ -82,14 +51,41 @@ spec:
# - effect: NoSchedule
# key: node-role.kubernetes.io/actions-runner
# operator: Exists
{{- with .Values.node_selector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}

{{- with .Values.running_pod_annotations }}
# Run a pre-run hook to set pod annotations
# See https://docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners/running-scripts-before-or-after-a-job#triggering-the-scripts
containers:
- name: runner
# ARC (Summerwind) has its own pre-run hook, so we do not want to set
# env:
# - name: ACTIONS_RUNNER_HOOK_JOB_STARTED
# value: /hooks/pre-run.sh # triggers when a job is started, and sets the pod to NOT safe-to-evict
# Instead, its pre-run hook runs scripts in /etc/arc/hooks/job-started.d/
volumeMounts:
- name: hooks
mountPath: /etc/arc/hooks/job-started.d/
{{- end }}

{{ if eq .Values.type "organization" }}
{{- if eq .Values.type "organization" }}
organization: {{ .Values.scope }}
{{- end }}
{{ if eq .Values.type "repository" }}
{{- if eq .Values.type "repository" }}
repository: {{ .Values.scope }}
{{- end }}
{{ if index .Values "group" }}
{{- if index .Values "group" }}
group: {{ .Values.group }}
{{- end }}
# You can use labels to create subsets of runners.
Expand All @@ -103,14 +99,6 @@ spec:
{{- range .Values.labels }}
- {{ . | quote }}
{{- end }}
{{- if gt ( len (index .Values "node_selector") ) 0 }}
nodeSelector:
{{- toYaml .Values.node_selector | nindent 8 }}
{{- end }}
{{- if gt ( len (index .Values "tolerations") ) 0 }}
tolerations:
{{- toYaml .Values.tolerations | nindent 8 }}
{{- end }}
# dockerdWithinRunnerContainer = false means access to a Docker daemon is provided by a sidecar container.
dockerdWithinRunnerContainer: {{ .Values.dind_enabled }}
image: {{ .Values.image | quote }}
Expand All @@ -133,7 +121,7 @@ spec:
{{- if index .Values.resources.requests "ephemeral_storage" }}
ephemeral-storage: {{ .Values.resources.requests.ephemeral_storage }}
{{- end }}
{{- if and .Values.dind_enabled .Values.storage }}
{{- if and .Values.dind_enabled .Values.docker_storage }}
dockerVolumeMounts:
- mountPath: /var/lib/docker
name: docker-volume
Expand All @@ -150,24 +138,24 @@ spec:
- mountPath: /home/runner/.docker
name: docker-config-volume
{{- end }}
{{- end }}
{{- if or (and .Values.dind_enabled .Values.storage) (.Values.pvc_enabled) (.Values.docker_config_json_enabled) }}
{{- end }}{{/* End of volumeMounts */}}
{{- if or (and .Values.dind_enabled .Values.docker_storage) (.Values.pvc_enabled) (.Values.docker_config_json_enabled) (not (empty .Values.running_pod_annotations)) }}
volumes:
{{- if and .Values.dind_enabled .Values.storage }}
{{- if and .Values.dind_enabled .Values.docker_storage }}
- name: docker-volume
ephemeral:
volumeClaimTemplate:
spec:
accessModes: [ "ReadWriteOnce" ] # Only 1 pod can connect at a time
resources:
requests:
storage: {{ .Values.storage }}
{{- end }}
{{- if .Values.pvc_enabled }}
storage: {{ .Values.docker_storage }}
{{- end }}
{{- if .Values.pvc_enabled }}
- name: shared-volume
persistentVolumeClaim:
claimName: {{ .Values.release_name }}
{{- end }}
{{- end }}
{{- if .Values.docker_config_json_enabled }}
- name: docker-secret
secret:
Expand All @@ -178,4 +166,88 @@ spec:
- name: docker-config-volume
emptyDir:
{{- end }}
{{- end }}
{{- with .Values.running_pod_annotations }}
- name: hooks
configMap:
name: runner-hooks
defaultMode: 0755 # Set execute permissions for all files
{{- end }}
{{- end }}{{/* End of volumes */}}
{{- if .Values.pvc_enabled }}
---
# Persistent Volumes can be used for image caching
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: {{ .Values.release_name }}
spec:
accessModes:
- ReadWriteMany
# StorageClassName comes from efs-controller and must be deployed first.
storageClassName: efs-sc
resources:
requests:
# EFS is not actually storage constrained, but this storage request is
# required. 100Gi is a ballpark for how much we initially request, but this
# may grow. We are responsible for docker pruning this periodically to
# save space.
storage: 100Gi
{{- end }}
{{- if .Values.docker_config_json_enabled }}
---
apiVersion: v1
kind: Secret
metadata:
name: {{ .Values.release_name }}-regcred
type: kubernetes.io/dockerconfigjson
data:
.dockerconfigjson: {{ .Values.docker_config_json }}
{{- end }}
{{- with .Values.running_pod_annotations }}
---
apiVersion: v1
kind: ConfigMap
metadata:
name: runner-hooks
data:
annotate.sh: |
#!/bin/bash
# If we had kubectl and a KUBECONFIG, we could do this:
# kubectl annotate pod $HOSTNAME 'karpenter.sh/do-not-evict="true"' --overwrite
# kubectl annotate pod $HOSTNAME 'karpenter.sh/do-not-disrupt="true"' --overwrite
# This is the same thing, the hard way
# Metadata about the pod
NAMESPACE=$(cat /var/run/secrets/kubernetes.io/serviceaccount/namespace)
POD_NAME=$(hostname)
# Kubernetes API URL
API_URL="https://kubernetes.default.svc"
# Read the service account token
TOKEN=$(cat /var/run/secrets/kubernetes.io/serviceaccount/token)
# Content type
CONTENT_TYPE="application/merge-patch+json"
PATCH_JSON=$(cat <<EOF
{
"metadata": {
"annotations":
{{- . | toJson | nindent 10 }}
}
}
EOF
)
# Use curl to patch the pod
curl -sSk -X PATCH \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: $CONTENT_TYPE" \
-H "Accept: application/json" \
-d "$PATCH_JSON" \
"$API_URL/api/v1/namespaces/$NAMESPACE/pods/$POD_NAME" | jq .metadata.annotations
{{ end }}
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,29 @@ type: "repository" # can be either 'organization' or 'repository'
dind_enabled: true # If `true`, a Docker sidecar container will be deployed
# To run Docker in Docker (dind), change image from summerwind/actions-runner to summerwind/actions-runner-dind
image: summerwind/actions-runner-dind
node_selector:
kubernetes.io/os: "linux"
kubernetes.io/arch: "amd64"

#scope: "example/app"
scale_down_delay_seconds: 300
min_replicas: 1
max_replicas: 2
#scale_down_delay_seconds: 300
#min_replicas: 1
#max_replicas: 2
#busy_metrics:
# scale_up_threshold: 0.75
# scale_down_threshold: 0.25
# scale_up_factor: 2
# scale_down_factor: 0.5
resources:
limits:
cpu: 1.5
memory: 4Gi
# ephemeral_storage: "10Gi"
requests:
cpu: 0.5
memory: 1Gi
# ephemeral_storage: "10Gi"
#resources:
# limits:
# cpu: 1
# memory: 1Gi
# ephemeral_storage: "10Gi"
# requests:
# cpu: 500m
# memory: 512Mi
# ephemeral_storage: "1Gi"

storage: "10Gi"
pvc_enabled: false
webhook_driven_scaling_enabled: true
webhook_startup_timeout: "30m"
webhook_startup_timeout: "90m"
pull_driven_scaling_enabled: false
#labels:
# - "Ubuntu"
Expand Down
17 changes: 10 additions & 7 deletions modules/eks/actions-runner-controller/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ data "aws_ssm_parameter" "docker_config_json" {

module "actions_runner_controller" {
source = "cloudposse/helm-release/aws"
version = "0.10.0"
version = "0.10.1"

name = "" # avoids hitting length restrictions on IAM Role names
chart = var.chart
Expand Down Expand Up @@ -140,14 +140,15 @@ module "actions_runner_controller" {
file("${path.module}/resources/values.yaml"),
# standard k8s object settings
yamlencode({
fullnameOverride = module.this.name,
fullnameOverride = module.this.name
serviceAccount = {
name = module.this.name
},
}
resources = var.resources
rbac = {
create = var.rbac_enabled
}
replicaCount = var.controller_replica_count
githubWebhookServer = {
enabled = var.webhook.enabled
queueLimit = var.webhook.queue_limit
Expand All @@ -166,7 +167,7 @@ module "actions_runner_controller" {
}
]
}
},
}
authSecret = {
enabled = true
create = local.create_secret
Expand Down Expand Up @@ -201,7 +202,7 @@ module "actions_runner" {
for_each = local.enabled ? var.runners : {}

source = "cloudposse/helm-release/aws"
version = "0.10.0"
version = "0.10.1"

name = each.key
chart = "${path.module}/charts/actions-runner"
Expand All @@ -215,15 +216,16 @@ module "actions_runner" {
values = compact([
yamlencode({
release_name = each.key
pod_annotations = lookup(each.value, "pod_annotations", "")
pod_annotations = each.value.pod_annotations
running_pod_annotations = each.value.running_pod_annotations
service_account_name = module.actions_runner_controller.service_account_name
type = each.value.type
scope = each.value.scope
image = each.value.image
dind_enabled = each.value.dind_enabled
service_account_role_arn = module.actions_runner_controller.service_account_role_arn
resources = each.value.resources
storage = each.value.storage
docker_storage = each.value.docker_storage != null ? each.value.docker_storage : each.value.storage
labels = concat(each.value.labels, local.context_labels)
scale_down_delay_seconds = each.value.scale_down_delay_seconds
min_replicas = each.value.min_replicas
Expand All @@ -233,6 +235,7 @@ module "actions_runner" {
pull_driven_scaling_enabled = each.value.pull_driven_scaling_enabled
pvc_enabled = each.value.pvc_enabled
node_selector = each.value.node_selector
affinity = each.value.affinity
tolerations = each.value.tolerations
docker_config_json_enabled = local.docker_config_json_enabled
docker_config_json = local.docker_config_json
Expand Down
Loading

0 comments on commit cf315db

Please sign in to comment.