fruit-bowl/environments/production/thirdparty/docker/tasks/swarm_leave.rb
2025-04-01 17:49:26 +00:00

26 lines
549 B
Ruby
Executable file

#!/opt/puppetlabs/puppet/bin/ruby
# frozen_string_literal: true
require 'json'
require 'open3'
require 'puppet'
def swarm_leave(force)
cmd_string = 'docker swarm leave '
cmd_string += ' -f' if force == 'true'
stdout, stderr, status = Open3.capture3(cmd_string)
raise Puppet::Error, "stderr: '#{stderr}'" if status != 0
stdout.strip
end
params = JSON.parse($stdin.read)
force = params['force']
begin
result = swarm_leave(force)
puts result
exit 0
rescue Puppet::Error => e
puts(status: 'failure', error: e.message)
exit 1
end