Created
May 17, 2021 13:58
-
-
Save andreafalzetti/eba48439a58cc0612d055da2588a54c8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: backstage.io/v1beta2 | |
kind: Template | |
# some metadata about the template itself | |
metadata: | |
name: v1beta2-demo | |
title: Test Action template | |
description: scaffolder v1beta2 template demo | |
spec: | |
owner: backstage/techdocs-core | |
type: service | |
# these are the steps which are rendered in the frontend with the form input | |
parameters: | |
- title: Fill in some steps | |
required: | |
- name | |
properties: | |
name: | |
title: Name | |
type: string | |
description: Unique name of the component | |
ui:autofocus: true | |
ui:options: | |
rows: 5 | |
- title: Choose a location | |
required: | |
- repoUrl | |
properties: | |
repoUrl: | |
title: Repository Location | |
type: string | |
ui:field: RepoUrlPicker | |
ui:options: | |
allowedHosts: | |
- github.com | |
# here's the steps that are executed in series in the scaffolder backend | |
steps: | |
- id: fetch-base | |
name: Fetch Base | |
action: fetch:cookiecutter | |
input: | |
url: ./template | |
values: | |
name: '{{ parameters.name }}' | |
- id: fetch-docs | |
name: Fetch Docs | |
action: fetch:plain | |
input: | |
targetPath: ./community | |
url: https://github.com/backstage/community/tree/main/backstage-community-sessions | |
- id: publish | |
name: Publish | |
action: publish:github | |
input: | |
allowedHosts: ['github.com'] | |
description: 'This is {{ parameters.name }}' | |
repoUrl: '{{ parameters.repoUrl }}' | |
- id: register | |
name: Register | |
action: catalog:register | |
input: | |
repoContentsUrl: '{{ steps.publish.output.repoContentsUrl }}' | |
catalogInfoPath: '/catalog-info.yaml' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment