Skip to content

Commit 115401b

Browse files
davejrtscotty-c
authored andcommitted
update docker_stack to fix registry auth option (#364)
* update docker_stack to fix registry auth option * single quotes for rubocop * updating registry auth param to boolean * ensuring the registry auth option uses boolean
1 parent d0f55db commit 115401b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/puppet/parser/functions/docker_stack_flags.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ module Puppet::Parser::Functions
2626
flags << "--prune '#{opts['prune']}'"
2727
end
2828

29-
if opts['with_registry_auth'].to_s != 'undef'
30-
flags << "--with-registry-auth '#{opts['with_registry_auth']}'"
29+
if opts['with_registry_auth']
30+
flags << '--with-registry-auth'
3131
end
3232

3333
flags.flatten.join(' ')

manifests/stack.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
Optional[String] $bundle_file = undef,
4242
Optional[Array] $compose_files = undef,
4343
Optional[String] $prune = undef,
44-
Optional[String] $with_registry_auth = undef,
44+
Optional[Boolean] $with_registry_auth = false,
4545
Optional[Pattern[/^always$|^changed$|^never$/]] $resolve_image = undef,
4646
){
4747

0 commit comments

Comments
 (0)