Puppet Function: docker_swarm_init_flags
- Defined in:
- lib/puppet/parser/functions/docker_swarm_init_flags.rb
- Function type:
- Ruby 3.x API
Overview
Transforms a hash into a string of docker swarm init flags
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/puppet/parser/functions/docker_swarm_init_flags.rb', line 5 newfunction(:docker_swarm_init_flags, :type => :rvalue) do |args| opts = args[0] || {} flags = [] if opts['init'].to_s != 'false' flags << 'init' end if opts['advertise_addr'].to_s != 'undef' flags << "--advertise-addr '#{opts['advertise_addr']}'" end if opts['autolock'].to_s != 'false' flags << '--autolock' end if opts['cert_expiry'].to_s != 'undef' flags << "--cert-expiry '#{opts['cert_expiry']}'" end if opts['dispatcher_heartbeat'].to_s != 'undef' flags << "--dispatcher-heartbeat '#{opts['dispatcher_heartbeat']}'" end if opts['external_ca'].to_s != 'undef' flags << "--external-ca '#{opts['external_ca']}'" end if opts['force_new_cluster'].to_s != 'false' flags << '--force-new-cluster' end if opts['listen_addr'].to_s != 'undef' flags << "--listen-addr '#{opts['listen_addr']}'" end if opts['max_snapshots'].to_s != 'undef' flags << "--max-snapshots '#{opts['max_snapshots']}'" end if opts['snapshot_interval'].to_s != 'undef' flags << "--snapshot-interval '#{opts['snapshot_interval']}'" end flags.flatten.join(" ") end |