ci: remove custom runner image approach (use public images) #5
@@ -152,6 +152,13 @@ metadata:
|
|||||||
namespace: argocd
|
namespace: argocd
|
||||||
annotations:
|
annotations:
|
||||||
argocd.argoproj.io/sync-wave: "3"
|
argocd.argoproj.io/sync-wave: "3"
|
||||||
|
argocd-image-updater.argoproj.io/image-list: runner=forgejo.riotpiao.com/rock/forgejo-runner-golang
|
||||||
|
argocd-image-updater.argoproj.io/runner.update-strategy: newest-build
|
||||||
|
argocd-image-updater.argoproj.io/runner.allow-tags: regexp:^[0-9a-f]{7}$|^latest$|^v[0-9]+$
|
||||||
|
argocd-image-updater.argoproj.io/runner.helm.image-name: runner.image.repository
|
||||||
|
argocd-image-updater.argoproj.io/runner.helm.image-tag: runner.image.tag
|
||||||
|
argocd-image-updater.argoproj.io/write-back-method: git
|
||||||
|
argocd-image-updater.argoproj.io/git-branch: main
|
||||||
spec:
|
spec:
|
||||||
project: homelab
|
project: homelab
|
||||||
source:
|
source:
|
||||||
@@ -173,6 +180,13 @@ metadata:
|
|||||||
namespace: argocd
|
namespace: argocd
|
||||||
annotations:
|
annotations:
|
||||||
argocd.argoproj.io/sync-wave: "3"
|
argocd.argoproj.io/sync-wave: "3"
|
||||||
|
argocd-image-updater.argoproj.io/image-list: runner=forgejo.riotpiao.com/rock/forgejo-runner-node
|
||||||
|
argocd-image-updater.argoproj.io/runner.update-strategy: newest-build
|
||||||
|
argocd-image-updater.argoproj.io/runner.allow-tags: regexp:^[0-9a-f]{7}$|^latest$|^v[0-9]+$
|
||||||
|
argocd-image-updater.argoproj.io/runner.helm.image-name: runner.image.repository
|
||||||
|
argocd-image-updater.argoproj.io/runner.helm.image-tag: runner.image.tag
|
||||||
|
argocd-image-updater.argoproj.io/write-back-method: git
|
||||||
|
argocd-image-updater.argoproj.io/git-branch: main
|
||||||
spec:
|
spec:
|
||||||
project: homelab
|
project: homelab
|
||||||
source:
|
source:
|
||||||
@@ -197,6 +211,13 @@ metadata:
|
|||||||
namespace: argocd
|
namespace: argocd
|
||||||
annotations:
|
annotations:
|
||||||
argocd.argoproj.io/sync-wave: "3"
|
argocd.argoproj.io/sync-wave: "3"
|
||||||
|
argocd-image-updater.argoproj.io/image-list: runner=forgejo.riotpiao.com/rock/forgejo-runner-rust
|
||||||
|
argocd-image-updater.argoproj.io/runner.update-strategy: newest-build
|
||||||
|
argocd-image-updater.argoproj.io/runner.allow-tags: regexp:^[0-9a-f]{7}$|^latest$|^v[0-9]+$
|
||||||
|
argocd-image-updater.argoproj.io/runner.helm.image-name: runner.image.repository
|
||||||
|
argocd-image-updater.argoproj.io/runner.helm.image-tag: runner.image.tag
|
||||||
|
argocd-image-updater.argoproj.io/write-back-method: git
|
||||||
|
argocd-image-updater.argoproj.io/git-branch: main
|
||||||
spec:
|
spec:
|
||||||
project: homelab
|
project: homelab
|
||||||
source:
|
source:
|
||||||
|
|||||||
@@ -5,6 +5,9 @@
|
|||||||
# node:22-bookworm ships Node natively. Docker client installed via workflow step if needed.
|
# node:22-bookworm ships Node natively. Docker client installed via workflow step if needed.
|
||||||
# (homelab has no CI; custom runner images built manually if desired)
|
# (homelab has no CI; custom runner images built manually if desired)
|
||||||
runner:
|
runner:
|
||||||
|
image:
|
||||||
|
repository: forgejo.riotpiao.com/rock/forgejo-runner-node
|
||||||
|
tag: "latest" # Image Updater tracks and updates this
|
||||||
name: node-runner
|
name: node-runner
|
||||||
# Custom image: node:22-bookworm + docker.io pre-installed
|
# Custom image: node:22-bookworm + docker.io pre-installed
|
||||||
labels: "node:docker://forgejo.riotpiao.com/rock/forgejo-runner-node:latest"
|
labels: "node:docker://forgejo.riotpiao.com/rock/forgejo-runner-node:latest"
|
||||||
|
|||||||
@@ -8,6 +8,9 @@
|
|||||||
# - Rust toolchain (via rustup)
|
# - Rust toolchain (via rustup)
|
||||||
# - Build essentials
|
# - Build essentials
|
||||||
runner:
|
runner:
|
||||||
|
image:
|
||||||
|
repository: forgejo.riotpiao.com/rock/forgejo-runner-rust
|
||||||
|
tag: "latest" # Image Updater tracks and updates this
|
||||||
name: rust-runner
|
name: rust-runner
|
||||||
labels: "rust:docker://forgejo.riotpiao.com/rock/forgejo-runner-rust:latest"
|
labels: "rust:docker://forgejo.riotpiao.com/rock/forgejo-runner-rust:latest"
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
runner:
|
runner:
|
||||||
image:
|
image:
|
||||||
repository: code.forgejo.org/forgejo/runner
|
repository: forgejo.riotpiao.com/rock/forgejo-runner-golang
|
||||||
tag: "6" # pin exact release before apply
|
tag: "latest" # Image Updater tracks and updates this
|
||||||
name: golang-runner
|
name: golang-runner
|
||||||
# Custom image: docker:27-cli + Node.js + Go + build tools
|
# Custom image: docker:27-cli + Node.js + Go + build tools
|
||||||
# - Node.js for GitHub Actions (actions/checkout@v4, etc.)
|
# - Node.js for GitHub Actions (actions/checkout@v4, etc.)
|
||||||
|
|||||||
Reference in New Issue
Block a user