Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions osdc/modules/arc/kubernetes/hooks-warmer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
# Downloads the patched runner-container-hooks zip once per node to NVMe,
# so runner pods can mount it read-only without per-pod downloads.
#
# See: https://github.com/jeanschmidt/runner-container-hooks/releases/tag/v0.8.16
# Remove this when upstream merges the fixes into actions/runner-container-hooks
# See: https://github.com/huydhn/runner-container-hooks/releases/tag/v0.8.17
# Built from the huydhn fork until the stream-buffers/DEP0005 fix lands in the
# jeanschmidt fork (jeanschmidt/runner-container-hooks#12), then upstream.
apiVersion: apps/v1
kind: DaemonSet
metadata:
Expand Down Expand Up @@ -54,8 +55,8 @@ spec:
- -c
- |
set -eu
HOOKS_VERSION="0.8.16"
HOOKS_URL="https://github.com/jeanschmidt/runner-container-hooks/releases/download/v${HOOKS_VERSION}/actions-runner-hooks-k8s-${HOOKS_VERSION}.zip"
HOOKS_VERSION="0.8.17"
HOOKS_URL="https://github.com/huydhn/runner-container-hooks/releases/download/v${HOOKS_VERSION}/actions-runner-hooks-k8s-${HOOKS_VERSION}.zip"
DEST="/mnt/runner-container-hooks"
MARKER="$DEST/.version"

Expand Down
Loading