You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any interest in adding an optional attribute to "pin" the client / server to a specific version? Something like this for client_install.rb
include_recipe 'gluster::repository' unless node['gluster']['repo'] == 'private'
# Install the client package
package node['gluster']['client']['package'] do
version node['gluster']['client']['version']
end
The text was updated successfully, but these errors were encountered:
vchung-nz
changed the title
Support for install specific version
Support to install specific version?
Mar 15, 2017
Right now the version is already pinned to a minor version, but does not go so far as to pin patch versions
You can use node['gluster']['version'], but you would also need to modify the repo recipe since it assumes the latest patch version as well as server_install
shortdudey123
changed the title
Support to install specific version?
Support to install specific patch version
Mar 15, 2017
Yes, but node['gluster']['version'] is only apply if using public repo. There is no control within the package resource if using a private repo, hence the suggested edit.
But I am not sure how often people run into that problem 😄
Is there any interest in adding an optional attribute to "pin" the client / server to a specific version? Something like this for client_install.rb
The text was updated successfully, but these errors were encountered: