commit a658c704eb878062026a691b587da6a712a14fa2 Author: Daniel Sy Date: Wed Jan 15 09:36:07 2025 +0100 feat(IPCEICIS-1835): :sparkles: Initial commit Provided a basic example configuration for a new catalog entity diff --git a/catalog-entity.yaml b/catalog-entity.yaml new file mode 100644 index 0000000..ac5200c --- /dev/null +++ b/catalog-entity.yaml @@ -0,0 +1,11 @@ +apiVersion: backstage.io/v1alpha1 +kind: ApiGatewayDefinition +metadata: + name: example-api-gateway + description: An example API gateway definition +spec: + type: openapi + lifecycle: production + owner: team-api + definition: + $text: https://example.com/api-spec.yaml diff --git a/catalog-info.yaml b/catalog-info.yaml new file mode 100644 index 0000000..0131203 --- /dev/null +++ b/catalog-info.yaml @@ -0,0 +1,8 @@ +apiVersion: backstage.io/v1alpha1 +kind: Location +metadata: + name: custom-entities + description: Our custom entity definitions +spec: + targets: + - ./custom-entity.yaml