Skip to content

Commit

Permalink
automated commit
Browse files Browse the repository at this point in the history
Signed-off-by: Public copy <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Oct 29, 2024
1 parent f9d76b2 commit 44ba270
Show file tree
Hide file tree
Showing 24 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions images/bazel/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ module "config" {
module "versioned" {
build-dev = true
config = module.config[each.key].config
eol = each.value.eol
for_each = module.versions.versions
main_package = each.value.main
name = basename(path.module)
Expand Down
1 change: 1 addition & 0 deletions images/cassandra/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ module "config" {
module "versioned" {
build-dev = true
config = module.config[each.key].config
eol = each.value.eol
for_each = module.versions.versions
main_package = each.value.main
name = basename(path.module)
Expand Down
1 change: 1 addition & 0 deletions images/cert-manager/cmctl.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ module "cmctl-config" {
module "cmctl" {
build-dev = true
config = module.cmctl-config[each.key].config
eol = each.value.eol
for_each = module.versions.versions
main_package = each.value.main
name = basename(path.module)
Expand Down
2 changes: 2 additions & 0 deletions images/cert-manager/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ locals {
for c in local.components : merge([
for k, v in local.versions : {
"${c}${v.suffix}" : {
eol = v.eol
is_latest = v.is_latest
suffix = v.suffix
component = c
Expand All @@ -37,6 +38,7 @@ module "config" {
module "versioned" {
build-dev = true
config = module.config[each.key].config
eol = each.value.eol
extra_dev_packages = [
each.value.suffix == "" ? "cmctl" : (
# If the version is greater than 1.14, use the independently versioned cmctl package
Expand Down
1 change: 1 addition & 0 deletions images/cluster-autoscaler/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ module "config" {
module "versioned" {
build-dev = true
config = module.config[each.key].config
eol = each.value.eol
for_each = module.versions.versions
main_package = each.value.main
name = basename(path.module)
Expand Down
1 change: 1 addition & 0 deletions images/crane/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ module "config" {
module "versioned" {
build-dev = true
config = module.config[each.key].config
eol = each.value.eol
for_each = module.versions.versions
main_package = each.value.main
name = basename(path.module)
Expand Down
1 change: 1 addition & 0 deletions images/erlang/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ module "config" {
module "versioned" {
build-dev = true
config = module.config[each.key].config
eol = each.value.eol
for_each = module.versions.versions
main_package = each.value.main
name = basename(path.module)
Expand Down
1 change: 1 addition & 0 deletions images/gitlab-exporter/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ module "config" {
module "versioned" {
build-dev = true
config = module.config[each.key].config
eol = each.value.eol
for_each = module.versions.versions
main_package = replace(each.value.main, "gitlab-cng", "gitlab-exporter")
name = basename(path.module)
Expand Down
1 change: 1 addition & 0 deletions images/gitlab-pages/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ module "config" {
module "versioned" {
build-dev = true
config = module.config[each.key].config
eol = each.value.eol
for_each = module.versions.versions
main_package = each.value.main
name = basename(path.module)
Expand Down
1 change: 1 addition & 0 deletions images/gitlab-shell/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ module "config" {
module "versioned" {
build-dev = true
config = module.config[each.key].config
eol = each.value.eol
for_each = module.versions.versions
main_package = replace(each.value.main, "gitlab-cng", "gitlab-shell")
name = basename(path.module)
Expand Down
1 change: 1 addition & 0 deletions images/go/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ module "config" {
module "versioned" {
build-dev = true
config = module.config[each.key].config
eol = each.value.eol
for_each = module.versions.versions
main_package = each.value.main
name = basename(path.module)
Expand Down
2 changes: 2 additions & 0 deletions images/keda/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ locals {
# `$component$version` when version data exists. We just smash the two
# together to make it easier to access in subsequent modules.
format("%s%s", component, lookup(version_metadata, "version", "")) : {
eol = version_metadata.eol
is_latest = version_metadata.is_latest
component = component

Expand Down Expand Up @@ -47,6 +48,7 @@ module "config" {
module "versioned" {
build-dev = true
config = module.config[each.key].config
eol = each.value.eol
for_each = local.component_versions
main_package = each.value.main
name = basename(path.module)
Expand Down
1 change: 1 addition & 0 deletions images/ko/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ module "config" {
module "versioned" {
build-dev = true
config = module.config[each.key].config
eol = each.value.eol
for_each = module.versions.versions
main_package = each.value.main
name = basename(path.module)
Expand Down
1 change: 1 addition & 0 deletions images/kubernetes-csi-external-provisioner/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ module "config" {
module "versioned" {
build-dev = true
config = module.config[each.key].config
eol = each.value.eol
for_each = module.versions.versions
main_package = each.value.main
name = basename(path.module)
Expand Down
2 changes: 2 additions & 0 deletions images/kubernetes-csi-external-snapshotter/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ locals {
for c in local.components : merge([
for k, v in local.versions : {
"kubernetes-csi-external-${c}${v.suffix}" : {
eol = v.eol
is_latest = v.is_latest
suffix = v.suffix
component = c
Expand Down Expand Up @@ -40,6 +41,7 @@ module "config" {
module "versioned" {
build-dev = true
config = module.config[each.key].config
eol = each.value.eol
for_each = local.component_versions
main_package = each.key
name = basename(path.module)
Expand Down
1 change: 1 addition & 0 deletions images/loki/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ module "config" {
module "versioned" {
build-dev = true
config = module.config[each.key].config
eol = each.value.eol
for_each = module.versions.versions
main_package = each.value.main
name = basename(path.module)
Expand Down
2 changes: 2 additions & 0 deletions images/node/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ module "versioned" {
build-dev = true
check-apk-update = true
config = module.config[each.key].config
eol = each.value.eol
extra_dev_packages = [
"yarn",
"corepack",
Expand All @@ -51,6 +52,7 @@ module "versioned" {
module "next" {
build-dev = true
config = module.config-next.config
eol = each.value.eol
extra_dev_packages = [
"yarn",
"build-base",
Expand Down
1 change: 1 addition & 0 deletions images/openscap/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ module "config" {
module "versioned" {
build-dev = true
config = module.config[each.key].config
eol = each.value.eol
for_each = module.versions.versions
main_package = each.value.main
name = basename(path.module)
Expand Down
1 change: 1 addition & 0 deletions images/rabbitmq-cluster-operator/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ module "config" {
module "versioned" {
build-dev = true
config = module.config[each.key].config
eol = each.value.eol
for_each = module.versions.versions
main_package = each.value.main
name = basename(path.module)
Expand Down
1 change: 1 addition & 0 deletions images/rabbitmq/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ module "config" {
module "versioned" {
build-dev = true
config = module.config[each.key].config
eol = each.value.eol
for_each = module.versions.versions
main_package = each.value.main
name = basename(path.module)
Expand Down
1 change: 1 addition & 0 deletions images/rust/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ module "config" {
module "versioned" {
build-dev = true
config = module.config[each.key].config
eol = each.value.eol
extra_dev_packages = ["rustup"]
for_each = module.versions.versions
main_package = each.value.main
Expand Down
1 change: 1 addition & 0 deletions images/spdx-tools/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ module "versioned" {
build-dev = true
check-sbom = false
config = module.config[each.key].config
eol = each.value.eol
for_each = module.versions.versions
main_package = each.value.main
name = basename(path.module)
Expand Down
1 change: 1 addition & 0 deletions images/telegraf/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ module "config" {
module "versioned" {
build-dev = true
config = module.config[each.key].config
eol = each.value.eol
for_each = module.versions.versions
main_package = each.value.main
name = basename(path.module)
Expand Down
1 change: 1 addition & 0 deletions images/zookeeper/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ module "config" {
module "versioned" {
build-dev = true
config = module.config[each.key].config
eol = each.value.eol
for_each = module.versions.versions
main_package = each.value.main
name = basename(path.module)
Expand Down

0 comments on commit 44ba270

Please sign in to comment.