Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove outdated ITPAAS references #1101

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
tofu: Remove outdated ITPAAS vars
 - The ITPAAS service is no longer used, as confirmed in #1045.
 - Removed all mentions of ITPAAS vars from tofu reflect this change

Signed-off-by: Renata Ravanelli <[email protected]>
ravanelli committed Mar 12, 2025
commit d2f7169c05af205dea5754f13fe8955ca336fd3d
4 changes: 1 addition & 3 deletions multi-arch-builders/provisioning/aarch64/main.tf
Original file line number Diff line number Diff line change
@@ -64,8 +64,7 @@ check "health_check_rhcos_splunk_vars" {
assert {
condition = !(var.distro == "rhcos" && anytrue([
var.splunk_hostname == "",
var.splunk_sidecar_repo == "",
var.itpaas_splunk_repo == ""
var.splunk_sidecar_repo == ""
]))
error_message = "Must define splunk env vars for RCHOS builders"
}
@@ -81,7 +80,6 @@ locals {
templatefile("../../builder-splunk.bu", {
SPLUNK_HOSTNAME = var.splunk_hostname
SPLUNK_SIDECAR_REPO = var.splunk_sidecar_repo
ITPAAS_SPLUNK_REPO = var.itpaas_splunk_repo
})
]
}