49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Run and Debug CICD Tool",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "auto",
|
|
"program": "${workspaceFolder}",
|
|
"args": [
|
|
"repo",
|
|
"init",
|
|
"--org",
|
|
"Pingu-Studio",
|
|
"--manifests-repo",
|
|
"cicd-deployment-manifests-test",
|
|
"--flux-repo",
|
|
"maidn-cicd-test"
|
|
],
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"name": "Run and Debug CICD Tool docker secret creation",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "auto",
|
|
"program": "${workspaceFolder}",
|
|
"args": [
|
|
"vault",
|
|
"create-docker-secret"
|
|
],
|
|
"cwd": "${workspaceFolder}",
|
|
"console": "integratedTerminal"
|
|
},
|
|
{
|
|
"name": "Run and Debug CICD Tool github secret creation",
|
|
"type": "go",
|
|
"request": "launch",
|
|
"mode": "auto",
|
|
"program": "${workspaceFolder}",
|
|
"args": [
|
|
"vault",
|
|
"create-github-secret"
|
|
],
|
|
"cwd": "${workspaceFolder}",
|
|
"console": "integratedTerminal"
|
|
}
|
|
]
|
|
} |