Skip to content

Commit

Permalink
fix(jenkins): use correct compat package (#2700)
Browse files Browse the repository at this point in the history
Jenkins does not have a version streamed compat package. Change the extra_packages
directive to stop trying to translate the package name into a version-streamed
version of it.

Signed-off-by: Mauren Berti <mauren.berti@chainguard.dev>
  • Loading branch information
stormqueen1990 authored May 16, 2024
1 parent 76c83f0 commit 09a17e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion images/jenkins/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module "versions" {
module "config" {
for_each = module.versions.versions
source = "./config"
extra_packages = [each.key, replace(each.key, "jenkins", "jenkins-compat"), "openjdk-17-default-jvm"]
extra_packages = [each.key, "jenkins-compat", "openjdk-17-default-jvm"]
}

module "versioned" {
Expand Down

0 comments on commit 09a17e2

Please sign in to comment.