Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add catalog entities #70

Merged
merged 1 commit into from
Nov 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .catalog-info.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
apiVersion: backstage.io/v1alpha1
kind: Location
metadata:
name: sputnikvm-public
description: SputnikVM repository
spec:
targets:
- ./core/.catalog-info.yaml
- ./runtime/.catalog-info.yaml
- ./gasometer/.catalog-info.yaml
---
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: sputnikvm-evm
title: SputnikVM evm
description: Main library that re-exports most things
tags:
- ethereum
links: []
annotations:
aurora.dev/security-tier: "1"
spec:
owner: engine-team
type: library
lifecycle: production
16 changes: 16 additions & 0 deletions core/.catalog-info.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: sputnikvm-core
title: SputnikVM core
description: Core library defining the basic execution rules
tags:
- ethereum
links: []
annotations:
aurora.dev/security-tier: "1"
spec:
owner: engine-team
type: library
lifecycle: production
subcomponentOf: sputnikvm-evm
16 changes: 16 additions & 0 deletions gasometer/.catalog-info.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: sputnikvm-gasometer
title: SputnikVM gasometer
description: Integration of Ethereum gas rules
tags:
- ethereum
links: []
annotations:
aurora.dev/security-tier: "1"
spec:
owner: engine-team
type: library
lifecycle: production
subcomponentOf: sputnikvm-evm
16 changes: 16 additions & 0 deletions runtime/.catalog-info.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: sputnikvm-runtime
title: SputnikVM runtime
description: Runtime defining interface for block, transaction, and storage
tags:
- ethereum
links: []
annotations:
aurora.dev/security-tier: "1"
spec:
owner: engine-team
type: library
lifecycle: production
subcomponentOf: sputnikvm-evm
Loading