We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 100cb24 commit 503e285Copy full SHA for 503e285
pkg/runtime/runtime_manifest_test.go
@@ -372,6 +372,23 @@ install:
372
RequiredExtensions: []string{cnab.ParameterSourcesExtensionKey},
373
})
374
375
+ rm.bundles = map[string]cnab.ExtendedBundle{
376
+ "mysql": cnab.NewBundle(bundle.Bundle{
377
+ Outputs: map[string]bundle.Output{
378
+ "password": {
379
+ Definition: "password",
380
+ },
381
+ "root-password": {
382
+ Definition: "root-password",
383
384
385
+ Definitions: map[string]*definition.Schema{
386
+ "password": {WriteOnly: makeBoolPtr(true)},
387
+ "root-password": {WriteOnly: makeBoolPtr(true)},
388
389
+ }),
390
+ }
391
+
392
s := rm.Install[0]
393
err := rm.ResolveStep(ctx, 0, s)
394
require.NoError(t, err)
0 commit comments