Compare commits

...

2 Commits

Author SHA1 Message Date
unkinben 7535d655fe feat: add docker remotes to artifactapi (#86)
- set artifactapi to specific version
- add dockerhub and ghcr to remotes

Reviewed-on: #86
2026-04-25 17:40:35 +10:00
unkinben 3fc9cfa41a feat: add claude-code remote (#85)
Reviewed-on: #85
2026-04-25 11:20:47 +10:00
2 changed files with 35 additions and 2 deletions
@@ -19,8 +19,8 @@ spec:
automountServiceAccountToken: true
containers:
- name: artifactapi
image: git.unkin.net/unkin/almalinux9-artifactapi:latest
imagePullPolicy: Always
image: git.unkin.net/unkin/almalinux9-artifactapi:2.1.1
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8000
name: http
@@ -278,6 +278,21 @@ remotes:
index_ttl: 7200
claude-ai:
base_url: "https://downloads.claude.ai"
type: "remote"
package: "generic"
description: "Anthropic Claude Code binary releases"
include_patterns:
- "claude-code-releases/.*/linux-x64/claude$"
- "claude-code-releases/.*/linux-arm64/claude$"
- "claude-code-releases/.*/linux-x64-musl/claude$"
- "claude-code-releases/.*/linux-arm64-musl/claude$"
- "claude-code-releases/.*/manifest.json$"
cache:
file_ttl: 0
index_ttl: 300
local-generic:
type: "local"
package: "generic"
@@ -285,3 +300,21 @@ remotes:
cache:
file_ttl: 0
index_ttl: 0
ghcr:
base_url: "https://ghcr.io"
type: "docker"
package: "generic"
description: "GitHub Container Registry"
cache:
file_ttl: 0
index_ttl: 300
dockerhub:
base_url: "https://registry-1.docker.io"
type: "docker"
package: "generic"
description: "Docker Hub registry"
cache:
file_ttl: 0
index_ttl: 300