We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0f55db commit 115401bCopy full SHA for 115401b
lib/puppet/parser/functions/docker_stack_flags.rb
@@ -26,8 +26,8 @@ module Puppet::Parser::Functions
26
flags << "--prune '#{opts['prune']}'"
27
end
28
29
- if opts['with_registry_auth'].to_s != 'undef'
30
- flags << "--with-registry-auth '#{opts['with_registry_auth']}'"
+ if opts['with_registry_auth']
+ flags << '--with-registry-auth'
31
32
33
flags.flatten.join(' ')
manifests/stack.pp
@@ -41,7 +41,7 @@
41
Optional[String] $bundle_file = undef,
42
Optional[Array] $compose_files = undef,
43
Optional[String] $prune = undef,
44
- Optional[String] $with_registry_auth = undef,
+ Optional[Boolean] $with_registry_auth = false,
45
Optional[Pattern[/^always$|^changed$|^never$/]] $resolve_image = undef,
46
){
47
0 commit comments