diff --git a/template/stacks/ref-implementation/backstage-templates/entities/catalog-info.yaml b/template/stacks/ref-implementation/backstage-templates/entities/catalog-info.yaml index 6c3ad2b..69139f1 100644 --- a/template/stacks/ref-implementation/backstage-templates/entities/catalog-info.yaml +++ b/template/stacks/ref-implementation/backstage-templates/entities/catalog-info.yaml @@ -9,7 +9,6 @@ spec: - ./argo-workflows/template.yaml - ./app-with-bucket/template.yaml - ./demo-go-hello-world/template.yaml - - ./template-for-poc/template.yaml --- apiVersion: backstage.io/v1alpha1 kind: Location diff --git a/template/stacks/ref-implementation/backstage-templates/entities/demo-go-hello-world/skeleton/manifests/pipeline.yaml b/template/stacks/ref-implementation/backstage-templates/entities/demo-go-hello-world/skeleton/manifests/pipeline.yaml deleted file mode 100644 index e69de29..0000000 diff --git a/template/stacks/ref-implementation/backstage-templates/entities/template-for-poc/template.yaml b/template/stacks/ref-implementation/backstage-templates/entities/template-for-poc/template.yaml deleted file mode 100644 index a691918..0000000 --- a/template/stacks/ref-implementation/backstage-templates/entities/template-for-poc/template.yaml +++ /dev/null @@ -1,59 +0,0 @@ -apiVersion: scaffolder.backstage.io/v1beta3 -kind: Template -metadata: - name: example-go-template - title: Example Go template - description: An example template for the scaffolder that creates a simple go service -spec: - owner: user:guest - type: service - - parameters: - - title: Fill in some steps - required: - - name - properties: - name: - title: Name - type: string - description: Unique name of the component - ui:autofocus: true - - steps: - - id: fetch-template - name: Fetch Template - action: fetch:template - input: - url: ./skeleton - targetPath: ./skeleton - values: - name: ${{ parameters.name }} - - - id: publish - name: Publish to Gitea - action: publish:gitea - input: - repoUrl: ghttps://gitea.cnoe.localtest.me:443/giteaAdmin/?repo=${{parameters.name}} - description: This is the repository for ${{ parameters.name }} - sourcePath: ./skeleton - defaultBranch: main - - - id: register - name: Register in Catalog - action: catalog:register - input: - repoContentsUrl: ${{ steps['publish'].output.repoContentsUrl }} - - - id: trigger-pipeline - name: Trigger Forgejo Pipeline - action: fetch:plain - input: - url: https://gitea.cnoe.localtest.me:443/giteaAdmin/actions/workflows/trigger - method: POST - headers: - Authorization: Bearer ${{ secrets.FORGEJO_API_TOKEN }} - Content-Type: application/json - body: | - { - "ref": "${{ parameters.branchName }}" - }