Skip to content
Snippets Groups Projects
Commit 468e6326 authored by Blizter's avatar Blizter
Browse files

adding missing brace

parent 9e87d405
No related branches found
No related tags found
No related merge requests found
...@@ -67,13 +67,14 @@ local kp = ...@@ -67,13 +67,14 @@ local kp =
httpIngressPath.mixin.backend.withServicePort('http') httpIngressPath.mixin.backend.withServicePort('http')
)] )]
), ),
}, + { },
} + {
// Create basic auth secret - replace 'auth' file with your own // Create basic auth secret - replace 'auth' file with your own
ingress+:: { ingress+:: {
'basic-auth-secret': 'basic-auth-secret':
secret.new('basic-auth', { auth: std.base64(importstr 'auth') }) + secret.new('basic-auth', { auth: std.base64(importstr 'auth') }) +
secret.mixin.metadata.withNamespace($._config.namespace), secret.mixin.metadata.withNamespace($._config.namespace),
}, },
}; };
{ [name + '-ingress']: kp.ingress[name] for name in std.objectFields(kp.ingress) } { [name + '-ingress']: kp.ingress[name] for name in std.objectFields(kp.ingress) }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment