Skip to content

Commit 9b50b8f

Browse files
authored
fix: Update catalog-info.yaml (#2)
update owner to spaceball
1 parent 98f4ba7 commit 9b50b8f

File tree

11 files changed

+88
-54
lines changed

11 files changed

+88
-54
lines changed

.editorconfig

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
indent_size = 4
9+
indent_style = space
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
12+
13+
[*.{diff,patch}]
14+
trim_trailing_whitespace = false
15+
16+
[*.{json,yaml,yml}]
17+
indent_size = 2
18+
indent_style = space
19+
20+
[*.{hcl,tf,tfvars}]
21+
indent_size = 2
22+
indent_style = space

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# @global-owner1 and @global-owner2 will be requested for
77
# review when someone opens a pull request.
88
#* @global-owner1 @global-owner2
9-
* @broadinstitute/5cc-cga
9+
* @broadinstitute/devnull @broadinstitute/spaceballs
1010

1111
# Order is important; the last matching pattern takes the most
1212
# precedence. When someone opens a pull request that only

.github/dependabot.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
version: 2
3+
updates:
4+
- package-ecosystem: github-actions
5+
directory: /
6+
groups:
7+
actions:
8+
patterns:
9+
- "*"
10+
schedule:
11+
# Check for updates to GitHub Actions every month
12+
interval: monthly

.github/dependabot.yml

Lines changed: 0 additions & 12 deletions
This file was deleted.

.github/pull_request_template.md

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
1-
---
2-
## Write Good Commit Messages
1+
# Write Good Commit Messages
32

43
[The seven rules of a great Git commit message](https://cbea.ms/git-commit/)
54

6-
* Separate subject from body with a blank line
7-
* Limit the subject line to 50 characters
8-
* Capitalize the subject line
9-
* Do not end the subject line with a period
10-
* Use the imperative mood in the subject line
11-
* Wrap the body at 72 characters
12-
* Use the body to explain what and why vs. how
5+
- Separate subject from body with a blank line
6+
- Limit the subject line to 50 characters
7+
- Capitalize the subject line
8+
- Do not end the subject line with a period
9+
- Use the imperative mood in the subject line
10+
- Wrap the body at 72 characters
11+
- Use the body to explain what and why vs. how
1312

1413
## Update Providers
15-
When updating a provider, run the following command to update the lock file. This will ensure that the provider is available for all platforms.
14+
15+
When updating a provider, run the following command to update the lock file.
16+
This will ensure that the provider is available for all platforms.
1617

1718
```Shell
1819
terraform providers lock \
@@ -24,7 +25,10 @@ terraform providers lock \
2425
```
2526

2627
## Update Docs
27-
When updating docs, run the following command in the directory you want to update (dev/prod). This will ensure that the docs are available for all platforms.
28+
29+
When updating docs, run the following command in the directory you want to
30+
update (dev/prod). This will ensure that the docs are available for all
31+
platforms.
2832

2933
```Shell
3034
docker run --rm --volume "$(pwd):/terraform-docs" -u $(id -u) quay.io/terraform-docs/terraform-docs:latest --output-file README.md --output-mode inject /terraform-docs

.github/workflows/checks.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
name: 'checks'
2+
name: checks
33

4-
'on':
4+
"on":
55
pull_request:
66
branches:
7-
- 'main'
7+
- main
88

99
jobs:
1010
conventional-commits:

.github/workflows/close-stale.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
name: 'Close stale issues and PRs'
2+
name: Close stale issues and PRs
33

4-
'on':
4+
"on":
55
schedule:
6-
- cron: '30 1 * * *'
6+
- cron: "30 1 * * *"
77

88
jobs:
99
stale:

.prettierrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"proseWrap": "always",
3+
"trailingComma": "es5"
4+
}

catalog-info.yaml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
1+
---
12
apiVersion: backstage.io/v1alpha1
23
kind: Component
34
metadata:
4-
name: kubernetes-netbox
5+
annotations:
6+
backstage.io/kubernetes-id: kubernetes-netbox
7+
backstage.io/source-template: template:default/create-repo
8+
backstage.io/techdocs-ref: dir:.
9+
github.com/project-slug: broadinstitute/kubernetes-netbox
510
description: netbox
11+
name: kubernetes-netbox
612
tags:
713
- gcp
814
- networking
9-
annotations:
10-
github.com/project-slug: broadinstitute/kubernetes-netbox
11-
backstage.io/source-template: template:default/create-repo
12-
backstage.io/techdocs-ref: dir:.
13-
backstage.io/kubernetes-id: kubernetes-netbox
1415
spec:
15-
type: website
16+
domain: infrastructure-tools
1617
lifecycle: production
17-
owner: 5cc-cga
18+
owner: spaceballs
1819
system: kubernetes
19-
domain: infrastructure-tools
20+
type: website

docs/README.md

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,32 @@
11
## kubernetes-netbox
22

3-
4-
53
## Getting started
64

7-
Start write your documentation by adding more markdown (.md) files to this folder (/docs) or replace the content in this file.
8-
For more info visit [TechDoc](https://backstage.io/docs/features/techdocs/) and [TechDocs at Broad](https://backstage.broadinstitute.org/catalog/default/component/backstage/docs/techdocs/)
5+
Start write your documentation by adding more markdown (.md) files to this
6+
folder (/docs) or replace the content in this file. For more info visit
7+
[TechDoc](https://backstage.io/docs/features/techdocs/) and
8+
[TechDocs at Broad](https://backstage.broadinstitute.org/catalog/default/component/backstage/docs/techdocs/)
99

1010
## Table of Contents
1111

12-
The Table of Contents on the right is generated automatically based on the hierarchy
13-
of headings. Only use one H1 (`#` in Markdown) per file.
12+
The Table of Contents on the right is generated automatically based on the
13+
hierarchy of headings. Only use one H1 (`#` in Markdown) per file.
1414

1515
## Site navigation
1616

17-
For new pages to appear in the left hand navigation you need edit the `mkdocs.yml`
18-
file in root of your repo. The navigation can also link out to other sites.
17+
For new pages to appear in the left hand navigation you need edit the
18+
`mkdocs.yml` file in root of your repo. The navigation can also link out to
19+
other sites.
1920

20-
Alternatively, if there is no `nav` section in `mkdocs.yml`, a navigation section
21-
will be created for you. However, you will not be able to use alternate titles for
22-
pages, or include links to other sites.
21+
Alternatively, if there is no `nav` section in `mkdocs.yml`, a navigation
22+
section will be created for you. However, you will not be able to use alternate
23+
titles for pages, or include links to other sites.
2324

24-
Note that MkDocs uses `mkdocs.yml`, not `mkdocs.yaml`, although both appear to work.
25-
See also <https://www.mkdocs.org/user-guide/configuration/>.
25+
Note that MkDocs uses `mkdocs.yml`, not `mkdocs.yaml`, although both appear to
26+
work. See also <https://www.mkdocs.org/user-guide/configuration/>.
2627

2728
## Support
2829

29-
That's it. If you need support, reach out in [#docs-like-code](https://discord.com/channels/687207715902193673/714754240933003266) on Discord.
30+
That's it. If you need support, reach out in
31+
[#docs-like-code](https://discord.com/channels/687207715902193673/714754240933003266)
32+
on Discord.

0 commit comments

Comments
 (0)