Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8f33d9c562 |
@@ -4,5 +4,6 @@ immutable_ttl: 0
|
||||
mutable_ttl: 7200
|
||||
patterns:
|
||||
- "argoproj/argo-cd/.*.yaml$"
|
||||
- "yannh/kubernetes-json-schema/master/.*.json$"
|
||||
- "datreeio/CRDs-catalog/main/.*.json$"
|
||||
- "kubernetes/kubernetes/.*.json$"
|
||||
- "yannh/kubernetes-json-schema/master/.*.json$"
|
||||
@@ -0,0 +1,7 @@
|
||||
base_url: https://charts.goauthentik.io
|
||||
description: Authentik Charts
|
||||
immutable_ttl: 0
|
||||
mutable_ttl: 3600
|
||||
check_mutable: true
|
||||
immutable_patterns:
|
||||
- "\\.tgz$"
|
||||
@@ -0,0 +1,7 @@
|
||||
base_url: https://grafana.github.io/helm-charts
|
||||
description: Grafana Helm charts
|
||||
immutable_ttl: 0
|
||||
mutable_ttl: 3600
|
||||
check_mutable: true
|
||||
immutable_patterns:
|
||||
- "\\.tgz$"
|
||||
@@ -0,0 +1,6 @@
|
||||
base_url: "https://downloads.claude.ai/claude-code/rpm/stable"
|
||||
description: "Claude Code RPM repository"
|
||||
immutable_patterns:
|
||||
- ".*/x86_64/.*\\.rpm$"
|
||||
- ".*/noarch/.*\\.rpm$"
|
||||
- ".*/repodata/.*\\.xml.*$"
|
||||
@@ -1,10 +1,12 @@
|
||||
package_type: helm
|
||||
description: "Virtual repository merging all helm remotes — member order is priority order for duplicate chart+version"
|
||||
members:
|
||||
- authentik
|
||||
- ceph-csi
|
||||
- cnpg
|
||||
- elastic-helm
|
||||
- external-dns
|
||||
- grafana
|
||||
- hashicorp-helm
|
||||
- intel-helm
|
||||
- jetstack
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@ locals {
|
||||
}
|
||||
|
||||
terraform {
|
||||
source = "../../../modules/artifactapi"
|
||||
source = "../../modules/artifactapi"
|
||||
}
|
||||
|
||||
inputs = {
|
||||
@@ -3,7 +3,7 @@ generate "backend" {
|
||||
if_exists = "overwrite"
|
||||
contents = <<EOF
|
||||
provider "artifactapi" {
|
||||
endpoint = "https://artifactapi.k8s.syd1.au.unkin.net"
|
||||
endpoint = "https://${path_relative_to_include()}"
|
||||
}
|
||||
|
||||
terraform {
|
||||
@@ -18,7 +18,7 @@ terraform {
|
||||
required_providers {
|
||||
artifactapi = {
|
||||
source = "git.unkin.net/unkin/artifactapi"
|
||||
version = "0.0.1"
|
||||
version = "0.1.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -96,14 +96,6 @@ variable "remote_pypi" {
|
||||
default = {}
|
||||
}
|
||||
|
||||
variable "local_terraform" {
|
||||
description = "Map of local Terraform registry repositories"
|
||||
type = map(object({
|
||||
description = optional(string, "")
|
||||
}))
|
||||
default = {}
|
||||
}
|
||||
|
||||
variable "local_pypi" {
|
||||
description = "Map of local PyPI repositories"
|
||||
type = map(object({
|
||||
@@ -120,6 +112,14 @@ variable "local_rpm" {
|
||||
default = {}
|
||||
}
|
||||
|
||||
variable "local_terraform" {
|
||||
description = "Map of local Terraform repositories"
|
||||
type = map(object({
|
||||
description = optional(string, "")
|
||||
}))
|
||||
default = {}
|
||||
}
|
||||
|
||||
variable "virtual" {
|
||||
description = "Map of virtual repositories"
|
||||
type = map(object({
|
||||
|
||||
Reference in New Issue
Block a user