From 0931f24c1daca7a26640f8cf0e48909eca7fbdc8 Mon Sep 17 00:00:00 2001 From: Anil Belur Date: Sat, 23 Apr 2022 09:02:23 +1000 Subject: [PATCH] Fix: Update arch and flavor in helm template When you list images arch shows up empty. Use V3 flavor instead of V1. Issue-ID: CIMAN-33 Change-Id: I31bd7fd66ef4507d1aedcb6af0ad8a1fbff11a1d Signed-off-by: Anil Belur --- packer/templates/helm.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packer/templates/helm.json b/packer/templates/helm.json index 9568c0146..cdf752af0 100644 --- a/packer/templates/helm.json +++ b/packer/templates/helm.json @@ -1,6 +1,7 @@ { "variables": { "ansible_roles_path": ".galaxy", + "arch": "x86_64", "base_image": null, "distro": null, "cloud_auth_url": null, @@ -9,6 +10,7 @@ "cloud_network": null, "cloud_tenant": null, "cloud_user_data": null, + "flavor": "v3-standard-2", "ssh_user": null, "ssh_proxy_host": "" }, @@ -31,7 +33,7 @@ "user_data_file": "{{user `cloud_user_data`}}", "ssh_username": "{{user `ssh_user`}}", "ssh_proxy_host": "{{user `ssh_proxy_host`}}", - "flavor": "v1-standard-1", + "flavor": "{{user `flavor`}}", "metadata": { "ci_managed": "yes" } -- 2.16.6