Skip to content

Commit

Permalink
Allow for multiple versions of stakater to be tested concurrently. (#…
Browse files Browse the repository at this point in the history
…1277)

Signed-off-by: Matt Moore <mattmoor@chainguard.dev>
  • Loading branch information
mattmoor authored Aug 29, 2023
1 parent f22d5ca commit fb7b577
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions images/stakater-reloader/tests/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@ variable "digest" {

data "oci_string" "ref" { input = var.digest }

resource "random_pet" "suffix" {}

resource "helm_release" "stakater-reloader" {
name = "stakater-reloader"
name = "stakater-reloader-${random_pet.suffix.id}"

repository = "https://stakater.github.io/stakater-charts"
chart = "reloader"

namespace = "stakater-reloader"
namespace = "stakater-reloader-${random_pet.suffix.id}"
create_namespace = true

values = [jsonencode({
Expand Down

0 comments on commit fb7b577

Please sign in to comment.