@roadiehq/scaffolder-backend-argocd v1.6.0
scaffolder-backend-argocd
Welcome to the argocd actions for the scaffolder-backend.
This contains one action: argocd:create-resources.
The argocd:create-resources action allows the task to call any of the Argo CD instance APIs available to the user that triggers it.
Getting started
Create your Backstage application using the Backstage CLI as described here: https://backstage.io/docs/getting-started/create-an-app
Note: If you are using this plugin in a Backstage monorepo that contains the code for
@backstage/plugin-scaffolder-backend, you need to modify your internal build processes to transpile files from thenode_modulesfolder as well.Note: To use this scaffolder action you need to ensure the Argo CD user you are utilizing has the
createpermission for bothprojectsandapplications
You need to configure the action in your backend as well as your software template:
From your Backstage root directory
cd packages/backend
yarn add @roadiehq/scaffolder-backend-argocdConfigure the action: (you can check the docs to see all options):
// packages/backend/src/plugins/scaffolder.ts
const actions = [
createArgoCdResources({ config, logger }),
...createBuiltinActions({
containerRunner,
integrations,
config,
catalogClient,
reader,
}),
];
return await createRouter({
containerRunner,
logger,
config,
database,
catalogClient,
reader,
actions,
});From your software template yaml file
Under spec.steps[] insert the below. In the below we reference items in the spec.paramters[] section.
- id: create-argocd-resources
name: Create ArgoCD Resources
action: argocd:create-resources
input:
appName: ${{ parameters.name }}-nonprod
argoInstance: ${{ parameters.argoinstance }}
namespace: ${{ parameters.namespace }}
repoUrl: ${{ steps.publish.output.remoteUrl }}
labelValue: ${{ parameters.name }}
path: "kubernetes/nonprod"If needed there is an optional parameter of
projectNameas well.
Contributed By American Airlines
8 months ago
7 months ago
8 months ago
9 months ago
11 months ago
11 months ago
11 months ago
1 year ago
1 year ago
1 year ago
1 year ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago