Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions manifests/claudie/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
images:
- name: ghcr.io/berops/claudie/ansibler
newTag: 7838935-4448
newTag: b57536f-4452
- name: ghcr.io/berops/claudie/claudie-operator
newTag: 7838935-4448
newTag: b57536f-4452
- name: ghcr.io/berops/claudie/kube-eleven
newTag: 7838935-4448
newTag: b57536f-4452
- name: ghcr.io/berops/claudie/kuber
newTag: 7838935-4448
newTag: b57536f-4452
- name: ghcr.io/berops/claudie/manager
newTag: 7838935-4448
newTag: b57536f-4452
- name: ghcr.io/berops/claudie/terraformer
newTag: 7838935-4448
newTag: b57536f-4452
2 changes: 1 addition & 1 deletion manifests/testing-framework/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,4 @@ secretGenerator:

images:
- name: ghcr.io/berops/claudie/testing-framework
newTag: 7838935-4448
newTag: b57536f-4452
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func (t *Terraform) Init() error {
}

//nolint
cmd := exec.Command("tofu", "init", "-upgrade")
cmd := exec.Command("tofu", "init", "-upgrade", "-no-color")
cmd.Dir = t.Directory
cmd.Stdout = t.Stdout
cmd.Stderr = t.Stderr
Expand All @@ -97,7 +97,7 @@ func (t *Terraform) Init() error {
log.Warn().Msgf("Error encountered while executing %s from %s: %v", cmd, t.Directory, err)

retryCmd := comm.Cmd{
Command: "tofu init -upgrade",
Command: "tofu init -upgrade -no-color",
Dir: t.Directory,
Stdout: cmd.Stdout,
Stderr: cmd.Stderr,
Expand Down Expand Up @@ -125,6 +125,7 @@ func (t *Terraform) Apply() error {
args := []string{
"apply",
"--auto-approve",
"-no-color",
fmt.Sprintf("--parallelism=%v", t.Parallelism),
}

Expand Down Expand Up @@ -167,6 +168,7 @@ func (t *Terraform) Destroy() error {
args := []string{
"destroy",
"--auto-approve",
"-no-color",
fmt.Sprintf("--parallelism=%v", t.Parallelism),
}

Expand Down