(workingDir string)
| 533 | } |
| 534 | |
| 535 | func secrets(workingDir string) map[string]types.SecretConfig { |
| 536 | return map[string]types.SecretConfig{ |
| 537 | "secret1": { |
| 538 | File: workingDir + "/secret_data", |
| 539 | Labels: map[string]string{ |
| 540 | "foo": "bar", |
| 541 | }, |
| 542 | }, |
| 543 | "secret2": { |
| 544 | Name: "my_secret", |
| 545 | External: types.External{External: true}, |
| 546 | }, |
| 547 | "secret3": { |
| 548 | Name: "secret3", |
| 549 | External: types.External{External: true}, |
| 550 | }, |
| 551 | "secret4": { |
| 552 | Name: "bar", |
| 553 | File: workingDir, |
| 554 | Extras: map[string]any{ |
| 555 | "x-bar": "baz", |
| 556 | "x-foo": "bar", |
| 557 | }, |
| 558 | }, |
| 559 | } |
| 560 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…