Compare commits
6 commits
developmen
...
scaffolder
Author | SHA1 | Date | |
---|---|---|---|
![]() |
282565728b | ||
![]() |
84f81d5680 | ||
![]() |
5359af8cb5 | ||
![]() |
a9071c7b8f | ||
![]() |
4f6416adba | ||
![]() |
2a47f466a6 |
3 changed files with 6142 additions and 5346 deletions
|
@ -22,7 +22,7 @@
|
|||
"@backstage/catalog-model": "~1.4.3",
|
||||
"@backstage/config": "~1.1.1",
|
||||
"@backstage/errors": "~1.2.3",
|
||||
"@backstage/integration": "~1.8.0",
|
||||
"@backstage/integration": "^1.9.0",
|
||||
"@backstage/plugin-app-backend": "~0.3.57",
|
||||
"@backstage/plugin-auth-backend": "~0.20.3",
|
||||
"@backstage/plugin-auth-node": "~0.4.3",
|
||||
|
@ -41,6 +41,7 @@
|
|||
"@backstage/plugin-search-backend-node": "~1.2.13",
|
||||
"@backstage/plugin-techdocs-backend": "~1.9.2",
|
||||
"@backstage/types": "~1.1.1",
|
||||
"@jessesanford/plugin-scaffolder-actions": "^0.1.0",
|
||||
"@roadiehq/backstage-plugin-argo-cd-backend": "~2.14.0",
|
||||
"@roadiehq/scaffolder-backend-module-utils": "~1.13.1",
|
||||
"app": "link:../app",
|
||||
|
|
|
@ -22,6 +22,12 @@ import {
|
|||
createReplaceInFileAction
|
||||
} from '@roadiehq/scaffolder-backend-module-utils';
|
||||
|
||||
import {
|
||||
createSanitizeResource,
|
||||
createVerifyDependency,
|
||||
createKubernetesApply,
|
||||
} from '@jessesanford/plugin-scaffolder-actions';
|
||||
|
||||
export default async function createPlugin(
|
||||
env: PluginEnvironment,
|
||||
): Promise<Router> {
|
||||
|
@ -48,7 +54,10 @@ export default async function createPlugin(
|
|||
|
||||
const cnoeActions = [
|
||||
createPublishGiteaAction(options),
|
||||
createArgoCDApp(argocdOptions)
|
||||
createArgoCDApp(argocdOptions),
|
||||
createSanitizeResource(),
|
||||
createVerifyDependency(),
|
||||
createKubernetesApply(env.config)
|
||||
]
|
||||
|
||||
const roadieUtilActions = [
|
||||
|
|
Loading…
Reference in a new issue