[bitnami/dotnet] Fix vib-publish pipeline (#24496)

[bitnami/dotnet] Fix publish pipeline

Signed-off-by: Fran Mulero <fmulero@vmware.com>
This commit is contained in:
Fran Mulero 2023-02-20 10:19:57 +01:00 committed by GitHub
parent daf6e6dff0
commit 3a3650906f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 14 deletions

View File

@ -9,19 +9,6 @@
"phases": {
"package": {
"actions": [
{
"action_id": "goss",
"params": {
"resources": {
"path": "/.vib"
},
"tests_file": "dotnet/goss/goss.yaml",
"vars_file": "dotnet/goss/vars.yaml",
"remote": {
"workload": "deploy-dotnet"
}
}
},
{
"action_id": "container-image-package",
"params": {
@ -46,6 +33,21 @@
},
"verify": {
"actions": [
{
"action_id": "goss",
"params": {
"resources": {
"path": "/.vib"
},
"tests_file": "dotnet/goss/goss.yaml",
"vars_file": "dotnet/goss/vars.yaml",
"remote": {
"pod": {
"workload": "deploy-dotnet"
}
}
}
},
{
"action_id": "trivy",
"params": {

View File

@ -39,7 +39,9 @@
"tests_file": "dotnet/goss/goss.yaml",
"vars_file": "dotnet/goss/vars.yaml",
"remote": {
"workload": "deploy-dotnet"
"pod": {
"workload": "deploy-dotnet"
}
}
}
},