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
# [*etcd_endpoints*]# a comma-delimited list of etcd endpoints.# Type: Array or String# Defaults to http://127.0.0.1:4001
In etcd_key.pp though, it's expected to always be an array;
etcd_key { "${::flannel::etcd_prefix}/config":
value => template('flannel/etcd_network_definition.erb'),
peers => join($::flannel::etcd_endpoints, ','), # This linecert_file => $::flannel::etcd_certfile,
On Puppet 4 at least, this is a compile error in case you provide the etcd_endpoints as a comma-separated string;
Error: Could not retrieve catalog from remote server: Error 500 on SERVER: Server Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Function Call, join(): Requires array to work with at /etc/puppetlabs/code/environments/devel/modules/flannel/manifests/etcd_key.pp:45:18
The text was updated successfully, but these errors were encountered:
The documentation states;
In etcd_key.pp though, it's expected to always be an array;
On Puppet 4 at least, this is a compile error in case you provide the
etcd_endpoints
as a comma-separated string;The text was updated successfully, but these errors were encountered: