mirror of
https://gitlab.com/deepcypher/dc-kc.git
synced 2026-01-27 11:12:08 +00:00
Added erpnext chart
This commit is contained in:
23
charts/erpnext/.helmignore
Normal file
23
charts/erpnext/.helmignore
Normal file
@@ -0,0 +1,23 @@
|
||||
# Patterns to ignore when building packages.
|
||||
# This supports shell glob matching, relative path matching, and
|
||||
# negation (prefixed with !). Only one pattern per line.
|
||||
.DS_Store
|
||||
# Common VCS dirs
|
||||
.git/
|
||||
.gitignore
|
||||
.bzr/
|
||||
.bzrignore
|
||||
.hg/
|
||||
.hgignore
|
||||
.svn/
|
||||
# Common backup files
|
||||
*.swp
|
||||
*.bak
|
||||
*.tmp
|
||||
*.orig
|
||||
*~
|
||||
# Various IDEs
|
||||
.project
|
||||
.idea/
|
||||
*.tmproj
|
||||
.vscode/
|
||||
11
charts/erpnext/Chart.yaml
Normal file
11
charts/erpnext/Chart.yaml
Normal file
@@ -0,0 +1,11 @@
|
||||
apiVersion: v2
|
||||
name: erpnext
|
||||
description: A Helm chart for Kubernetes
|
||||
type: application
|
||||
version: 0.1.0
|
||||
appVersion: "4"
|
||||
|
||||
dependencies:
|
||||
- name: erpnext
|
||||
version: 7.0.162
|
||||
repository: "https://helm.erpnext.com"
|
||||
27
charts/erpnext/README.md
Normal file
27
charts/erpnext/README.md
Normal file
@@ -0,0 +1,27 @@
|
||||
# erpnext
|
||||
|
||||
  
|
||||
|
||||
A Helm chart for Kubernetes
|
||||
|
||||
## Requirements
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://helm.erpnext.com | erpnext | 7.0.162 |
|
||||
|
||||
## Values
|
||||
|
||||
| Key | Type | Default | Description |
|
||||
|-----|------|---------|-------------|
|
||||
| environment.baseDomain | string | `"deepcypher.me"` | |
|
||||
| environment.contact.email | string | `"noreply@deepcypher.me"` | |
|
||||
| environment.contact.name | string | `"George Onoufriou"` | |
|
||||
| environment.hardware | string | `"metal"` | |
|
||||
| environment.location.name | string | `"unknown"` | |
|
||||
| environment.mode | string | `"production"` | |
|
||||
| environment.name | string | `"unknown"` | |
|
||||
| environment.revision | string | `"main"` | |
|
||||
| erpnext.persistence.worker.accessModes[0] | string | `"ReadWriteMany"` | |
|
||||
| erpnext.persistence.worker.storageClass | string | `"ceph-filesystem"` | |
|
||||
|
||||
18
charts/erpnext/values.yaml
Normal file
18
charts/erpnext/values.yaml
Normal file
@@ -0,0 +1,18 @@
|
||||
erpnext:
|
||||
persistence:
|
||||
worker:
|
||||
storageClass: ceph-filesystem
|
||||
accessModes:
|
||||
- ReadWriteMany
|
||||
|
||||
environment:
|
||||
name: unknown # not to be used for hard checks but to display to user
|
||||
hardware: metal # to be used to enable on-prem specific features like ceph, cilium, etc
|
||||
mode: production # to be used to configure backup movement and additional debugging features
|
||||
revision: main # to be used to pull from different git branches
|
||||
baseDomain: deepcypher.me # to be used to override default chart domains to configure environments
|
||||
location:
|
||||
name: unknown # not to be used for hard checks purely informational
|
||||
contact:
|
||||
name: George Onoufriou
|
||||
email: noreply@deepcypher.me
|
||||
Reference in New Issue
Block a user