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

Pass --file when running juju model-defaults #318

Merged
merged 1 commit into from
Feb 13, 2024
Merged
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
7 changes: 6 additions & 1 deletion roles/juju-setup/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@
- systemctl daemon-reload
- systemctl restart systemd-resolved
EOF
/snap/bin/juju model-default /home/ubuntu/cloudinit-userdata.yaml
# juju>=3.0 expects the `--file` flag to pass default values in a file.
if dpkg --compare-versions $(juju --version | cut -d- -f1) ge 3.0.0; then
/snap/bin/juju model-defaults --file /home/ubuntu/cloudinit-userdata.yaml
else
/snap/bin/juju model-defaults /home/ubuntu/cloudinit-userdata.yaml
fi
args:
executable: /bin/bash
Loading