Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e4741dede2 | |||
| 2c3f52181a | |||
| b8ee0ed385 | |||
| a335dc75f8 | |||
| 6c4b37ff17 | |||
| 62d5e2fb14 | |||
| c21beda154 | |||
| 2ce7478b5e | |||
| 1f12b513ea | |||
| e0236b0584 |
@@ -0,0 +1 @@
|
||||
description: "Local container image registry for the autobackup-operator image"
|
||||
@@ -8,6 +8,7 @@ patterns:
|
||||
- "^emberstack/helm-charts"
|
||||
- "^fallenbagel/"
|
||||
- "^goauthentik/"
|
||||
- "^goodtune/ghp"
|
||||
- "^home-operations/"
|
||||
- "^jellyfin/"
|
||||
- "^netbox-community/"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
base_url: https://dl.fedoraproject.org/pub/fedora/linux
|
||||
base_url: https://syd.mirror.rackspace.com/fedora
|
||||
description: Fedora Linux RPM package repository
|
||||
immutable_ttl: 0
|
||||
mutable_ttl: 7200
|
||||
|
||||
@@ -9,6 +9,8 @@ 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" {
|
||||
@@ -74,6 +76,8 @@ 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" {
|
||||
|
||||
@@ -8,6 +8,8 @@ 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 = {}
|
||||
}
|
||||
@@ -78,6 +80,8 @@ 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 = {}
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@ terraform {
|
||||
required_providers {
|
||||
artifactapi = {
|
||||
source = "artifactapi.k8s.syd1.au.unkin.net/terraform-unkin/artifactapi"
|
||||
version = "0.2.0"
|
||||
version = "~> 0.5"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user