Skip to content

Commit 3ff7933

Browse files
committed
Make sure that ansible params check the playbook
The ansible provisioning supports using a separate yaml playbook, so check this file (but only the top playbook) for any parameters... The `ansible-playbook` command does not run remotely so it does not use the param.env, which means that the env is set on the command. Signed-off-by: Anders F Björklund <[email protected]>
1 parent 16fd466 commit 3ff7933

File tree

4 files changed

+25
-1
lines changed

4 files changed

+25
-1
lines changed

hack/ansible-test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
tasks:
33
- name: Create test file
44
file:
5-
path: /tmp/ansible
5+
path: "/tmp/{{ lookup('ansible.builtin.env', 'PARAM_ANSIBLE') }}"
66
state: touch

hack/test-templates/test-misc.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ mounts:
2727
writable: true
2828

2929
param:
30+
ANSIBLE: ansible
3031
BOOT: boot
3132
DEPENDENCY: dependency
3233
PROBE: probe

pkg/instance/ansible.go

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package instance
22

33
import (
44
"context"
5+
"fmt"
56
"os"
67
"os/exec"
78
"path/filepath"
@@ -33,6 +34,7 @@ func runAnsiblePlaybook(ctx context.Context, inst *store.Instance, playbook stri
3334
logrus.Debugf("ansible-playbook -i %q %q", inventory, playbook)
3435
args := []string{"-i", inventory, playbook}
3536
cmd := exec.CommandContext(ctx, "ansible-playbook", args...)
37+
cmd.Env = getAnsibleEnvironment(inst)
3638
cmd.Stdout = os.Stdout
3739
cmd.Stderr = os.Stderr
3840
return cmd.Run()
@@ -60,3 +62,14 @@ func createAnsibleInventory(inst *store.Instance) (string, error) {
6062
inventory := filepath.Join(inst.Dir, filenames.AnsibleInventoryYAML)
6163
return inventory, os.WriteFile(inventory, bytes, 0o644)
6264
}
65+
66+
func getAnsibleEnvironment(inst *store.Instance) []string {
67+
env := []string{}
68+
for _, e := range os.Environ() {
69+
env = append(env, e)
70+
}
71+
for key, val := range inst.Config.Param {
72+
env = append(env, fmt.Sprintf("PARAM_%s=%s", key, val))
73+
}
74+
return env
75+
}

pkg/limayaml/validate.go

+10
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,16 @@ func ValidateParamIsUsed(y *LimaYAML) error {
445445
keyIsUsed = true
446446
break
447447
}
448+
if p.Playbook != "" {
449+
playbook, err := os.ReadFile(p.Playbook)
450+
if err != nil {
451+
return err
452+
}
453+
if re.Match(playbook) {
454+
keyIsUsed = true
455+
break
456+
}
457+
}
448458
}
449459
for _, p := range y.Probes {
450460
if re.MatchString(p.Script) {

0 commit comments

Comments
 (0)