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