* [PATCH] Makefile: terraform wasn't building the kdevops_nodes file
@ 2025-10-02 20:13 Chuck Lever
2025-10-02 20:38 ` Daniel Gomez
0 siblings, 1 reply; 2+ messages in thread
From: Chuck Lever @ 2025-10-02 20:13 UTC (permalink / raw)
To: Daniel Gomez; +Cc: kdevops
From: Daniel Gomez <da.gomez@kernel.org>
When "make bringup" runs "terraform plan", it complains that the
kdevops_nodes variable isn't set.
extra_vars.yaml does contain the variable, but I'm guessing that
somehow gen_nodes runs after gen_tfvars now? Not really sure.
Daniel suggests:
> I think it'd be best to move KDEVOPS_NODES just after we assign
> the filename to it (provision.Makefile -> guestfs.Makefile):
Fixes: 5457b742d611 ("Makefile: fix target dependency order")
Signed-off-by: Daniel Gomez <da.gomez@kernel.org>
---
Makefile | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
Daniel, I've totally lost the plot. Is this patch adequate for fixing
the "terraform plan" failures, or do you have something else in mind?
diff --git a/Makefile b/Makefile
index 9ea479c95a10..565f2b2bb4ee 100644
--- a/Makefile
+++ b/Makefile
@@ -144,16 +144,16 @@ endif
DEFAULT_DEPS += $(ANSIBLE_CFG_FILE)
DEFAULT_DEPS += $(ANSIBLE_INVENTORY_FILE)
-ifneq (,$(KDEVOPS_NODES))
-DEFAULT_DEPS += $(KDEVOPS_NODES)
-endif
-
include scripts/provision.Makefile
include scripts/firstconfig.Makefile
include scripts/systemd-timesync.Makefile
include scripts/journal-server.Makefile
include scripts/update_etc_hosts.Makefile
+ifneq (,$(KDEVOPS_NODES))
+DEFAULT_DEPS += $(KDEVOPS_NODES)
+endif
+
KDEVOPS_BRING_UP_DEPS += $(KDEVOPS_BRING_UP_DEPS_EARLY)
KDEVOPS_BRING_UP_DEPS += $(KDEVOPS_PROVISIONED_DEVCONFIG)
--
2.51.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] Makefile: terraform wasn't building the kdevops_nodes file
2025-10-02 20:13 [PATCH] Makefile: terraform wasn't building the kdevops_nodes file Chuck Lever
@ 2025-10-02 20:38 ` Daniel Gomez
0 siblings, 0 replies; 2+ messages in thread
From: Daniel Gomez @ 2025-10-02 20:38 UTC (permalink / raw)
To: Chuck Lever; +Cc: kdevops
On 02/10/2025 22.13, Chuck Lever wrote:
> From: Daniel Gomez <da.gomez@kernel.org>
>
> When "make bringup" runs "terraform plan", it complains that the
> kdevops_nodes variable isn't set.
>
> extra_vars.yaml does contain the variable, but I'm guessing that
> somehow gen_nodes runs after gen_tfvars now? Not really sure.
>
> Daniel suggests:
>> I think it'd be best to move KDEVOPS_NODES just after we assign
>> the filename to it (provision.Makefile -> guestfs.Makefile):
>
> Fixes: 5457b742d611 ("Makefile: fix target dependency order")
> Signed-off-by: Daniel Gomez <da.gomez@kernel.org>
> ---
> Makefile | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> Daniel, I've totally lost the plot. Is this patch adequate for fixing
> the "terraform plan" failures, or do you have something else in mind?
Yes, that is correct becuase we want/need to fill DEFAULT_DEPS after
KDEVOPS_NODES is generated.
And sorry if I made it so confusing!
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-10-02 20:38 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-02 20:13 [PATCH] Makefile: terraform wasn't building the kdevops_nodes file Chuck Lever
2025-10-02 20:38 ` Daniel Gomez
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox