diff options
author | Ethan Apodaca <papodaca@gmail.com> | 2017-09-13 22:18:26 -0600 |
---|---|---|
committer | Chad Smith <chad.smith@canonical.com> | 2017-09-13 22:22:25 -0600 |
commit | cf10a2ff2e2f666d9370f38297a5a105e809ea3c (patch) | |
tree | 3e6cd9cf6062564ba9548c34f017ea42976301d1 /doc/examples | |
parent | 1ac4bc2a4758d330bb94cd1b2391121cf461ff6a (diff) | |
download | vyos-cloud-init-cf10a2ff2e2f666d9370f38297a5a105e809ea3c.tar.gz vyos-cloud-init-cf10a2ff2e2f666d9370f38297a5a105e809ea3c.zip |
chef: Add option to pin chef omnibus install version
Most users of chef will want to pin the version that is installed.
Typically new versions of chef have to be evaluated for breakage etc.
This change proposes a new optional `omnibus_version` field to the chef
configuration. The changeset also adds documentation referencing the new
field.
LP: #1462693
Diffstat (limited to 'doc/examples')
-rw-r--r-- | doc/examples/cloud-config-chef.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/examples/cloud-config-chef.txt b/doc/examples/cloud-config-chef.txt index 9d235817..58d5fdc7 100644 --- a/doc/examples/cloud-config-chef.txt +++ b/doc/examples/cloud-config-chef.txt @@ -94,6 +94,10 @@ chef: # if install_type is 'omnibus', change the url to download omnibus_url: "https://www.chef.io/chef/install.sh" + # if install_type is 'omnibus', pass pinned version string + # to the install script + omnibus_version: "12.3.0" + # Capture all subprocess output into a logfile # Useful for troubleshooting cloud-init issues |