1 Commits

Author SHA1 Message Date
unkinben ebf351b5b6 Add kubernetes rpm remote (pkgs.k8s.io stable v1.33)
ci/woodpecker/pr/plan Pipeline was successful
ci/woodpecker/pr/pre-commit Pipeline was successful
Claude-Session: https://claude.ai/code/session_015ur3i7D2azsMAWTSVABApv
2026-07-30 21:08:52 +10:00
13 changed files with 4 additions and 38 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ init:
plan: init
@$(call vault_env) && \
terragrunt run --all --parallelism 4 --non-interactive plan -- -lock=false
terragrunt run --all --parallelism 4 --non-interactive plan
apply: init
@$(call vault_env) && \
-2
View File
@@ -28,9 +28,7 @@ patterns:
- "^jfrog/"
- "^jpgouin/"
- "^kanidm/"
- "^linuxserver/"
- "^natsio/"
- "^oliver006/redis_exporter"
- "^osixia/"
- "^rancher/"
- "^rspamd/rspamd"
-5
View File
@@ -3,18 +3,14 @@ description: GitHub Container Registry
immutable_ttl: 0
mutable_ttl: 300
patterns:
- "^arabcoders/watchstate"
- "^cloudnative-pg/"
- "^dexidp/"
- "^emberstack/helm-charts"
- "^fallenbagel/"
- "^goauthentik/"
- "^goodtune/ghp"
- "^home-operations/"
- "^jellyfin/"
- "^k8up-io/"
- "^netbox-community/"
- "^oauth2-proxy/"
- "^onedr0p/"
- "^open-webui/open-webui"
- "^openvoxproject/"
@@ -22,6 +18,5 @@ patterns:
- "^plexguide/"
- "^stakater/reloader"
- "^stalwartlabs/stalwart"
- "^valkey-io/"
- "^voxpupuli/puppetboard"
- "^woodpecker-ci/helm"
-1
View File
@@ -5,5 +5,4 @@ mutable_ttl: 300
patterns:
- "^autoscaling/vpa-"
- "^external-dns/external-dns"
- "^kube-state-metrics/"
- "^sig-storage/"
-1
View File
@@ -7,4 +7,3 @@ patterns:
- "^brancz/kube-rbac-proxy"
- "^cephcsi/cephcsi"
- "^jetstack/cert-manager-"
- "^oauth2-proxy/"
-1
View File
@@ -10,7 +10,6 @@ mutable_patterns:
- "iplocate/ip-address-databases/raw/.*/ip-to-country/.*"
patterns:
- ".*/archive/refs/tags/.*.tar.gz$"
- "9p4/jellyfin-plugin-sso/.*/sso-authentication_.*.zip$"
- "ahmetb/kubectx/.*/kubectx_.*_linux_x86_64.tar.gz$"
- "ahmetb/kubectx/.*/kubens_.*_linux_x86_64.tar.gz$"
- "apple/foundationdb/.*/libfdb_c.x86_64.so$"
-7
View File
@@ -1,7 +0,0 @@
base_url: https://k8up-io.github.io/k8up
description: K8up backup operator Helm charts
immutable_ttl: 0
mutable_ttl: 3600
check_mutable: true
immutable_patterns:
- "\\.tgz$"
-7
View File
@@ -1,7 +0,0 @@
base_url: https://valkey.io/valkey-helm
description: Valkey Helm charts (valkey-operator)
immutable_ttl: 0
mutable_ttl: 3600
check_mutable: true
immutable_patterns:
- "\\.tgz$"
+2 -2
View File
@@ -1,5 +1,5 @@
base_url: "https://pkgs.k8s.io/core:/stable:"
description: Kubernetes upstream RPMs (kubectl/kubeadm/kubelet); version-agnostic, consumers pick the minor via path (e.g. v1.33/rpm)
base_url: https://pkgs.k8s.io/core:/stable:/v1.33/rpm
description: Kubernetes upstream RPMs (kubectl/kubeadm/kubelet), stable v1.33 channel
immutable_ttl: 0
mutable_ttl: 7200
immutable_patterns:
-2
View File
@@ -10,11 +10,9 @@ members:
- hashicorp-helm
- intel-helm
- jetstack
- k8up
- purelb
- rancher-stable
- stakater
- traefik
- valkey
- victoriametrics
- argo-helm
-4
View File
@@ -9,8 +9,6 @@ resource "artifactapi_remote_alpine" "this" {
immutable_patterns = each.value.immutable_patterns
mutable_patterns = each.value.mutable_patterns
stale_on_error = each.value.stale_on_error
mirrorlist = each.value.mirrorlist
mirror_strategy = each.value.mirror_strategy
}
resource "artifactapi_remote_docker" "this" {
@@ -76,8 +74,6 @@ resource "artifactapi_remote_rpm" "this" {
immutable_patterns = each.value.immutable_patterns
mutable_patterns = each.value.mutable_patterns
stale_on_error = each.value.stale_on_error
mirrorlist = each.value.mirrorlist
mirror_strategy = each.value.mirror_strategy
}
resource "artifactapi_remote_pypi" "this" {
-4
View File
@@ -8,8 +8,6 @@ variable "remote_alpine" {
immutable_patterns = optional(list(string), [])
mutable_patterns = optional(list(string), [])
stale_on_error = optional(bool, true)
mirrorlist = optional(list(string), [])
mirror_strategy = optional(string, null)
}))
default = {}
}
@@ -80,8 +78,6 @@ variable "remote_rpm" {
immutable_patterns = optional(list(string), [])
mutable_patterns = optional(list(string), [])
stale_on_error = optional(bool, true)
mirrorlist = optional(list(string), [])
mirror_strategy = optional(string, null)
}))
default = {}
}
+1 -1
View File
@@ -3,7 +3,7 @@ terraform {
required_providers {
artifactapi = {
source = "artifactapi.k8s.syd1.au.unkin.net/terraform-unkin/artifactapi"
version = "~> 0.5"
version = "0.1.4"
}
}
}