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 26, 2024
1 parent a0ca2b2 commit ac3b1ce
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 19 deletions.
13 changes: 7 additions & 6 deletions images/k3s/aio.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ module "config-aio" {
}

module "latest-aio" {
source = "../../tflib/publisher"
name = basename(path.module)
target_repository = "${var.target_repository}-allinone"
config = module.config-aio.config
build-dev = true
main_package = "k3s"
source = "../../tflib/publisher"
name = basename(path.module)
target_repository = "${var.target_repository}-allinone"
config = module.config-aio.config
build-dev = true
main_package = "k3s"
extra_dev_packages = ["bash-completion"]
}

module "tagger-aio" {
Expand Down
13 changes: 7 additions & 6 deletions images/k3s/k3s.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ module "config" {
}

module "latest" {
source = "../../tflib/publisher"
name = basename(path.module)
target_repository = var.target_repository
config = module.config.config
build-dev = true
main_package = "k3s"
source = "../../tflib/publisher"
name = basename(path.module)
target_repository = var.target_repository
config = module.config.config
build-dev = true
main_package = "k3s"
extra_dev_packages = ["bash-completion"]
}

module "test-latest" {
Expand Down
13 changes: 7 additions & 6 deletions images/k3s/static.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ module "config-static" {
}

module "latest-static" {
source = "../../tflib/publisher"
name = basename(path.module)
target_repository = "${var.target_repository}-static"
config = module.config-static.config
build-dev = true
main_package = "k3s-static"
source = "../../tflib/publisher"
name = basename(path.module)
target_repository = "${var.target_repository}-static"
config = module.config-static.config
build-dev = true
main_package = "k3s-static"
extra_dev_packages = ["bash-completion"]
}

# Statically linked checks are performed at the package level, so just verify
Expand Down
2 changes: 1 addition & 1 deletion images/kubectl/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module "latest" {
target_repository = var.target_repository
config = module.latest-config.config
build-dev = true
extra_dev_packages = ["kustomize"]
extra_dev_packages = ["kustomize", "bash-completion"]
}

module "test-latest" {
Expand Down

0 comments on commit ac3b1ce

Please sign in to comment.