mirror of
https://github.com/jumpserver/helm-charts.git
synced 2025-08-19 23:47:54 +00:00
perf: 更新配置文件模板
This commit is contained in:
parent
60c8782095
commit
3d1bfbbb25
25
charts/jumpserver/.helmignore
Normal file
25
charts/jumpserver/.helmignore
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# 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
|
||||||
|
*~
|
||||||
|
# Various IDEs
|
||||||
|
.project
|
||||||
|
.idea/
|
||||||
|
*.tmproj
|
||||||
|
# img folder
|
||||||
|
img/
|
||||||
|
# Changelog
|
||||||
|
CHANGELOG.md
|
@ -1,13 +1,15 @@
|
|||||||
apiVersion: v1
|
annotations:
|
||||||
|
category: "Application"
|
||||||
|
licenses: "GPL-3.0"
|
||||||
|
apiVersion: v2
|
||||||
appVersion: "v4.0.0"
|
appVersion: "v4.0.0"
|
||||||
description: A Helm chart for Deploying Jumpserver on Kubernetes
|
description: A Helm chart for Deploying Jumpserver on Kubernetes
|
||||||
engine: gotpl
|
|
||||||
home: https://jumpserver.org
|
home: https://jumpserver.org
|
||||||
icon: https://jumpserver.org/images/logo/favicon.ico
|
icon: https://jumpserver.org/images/logo/favicon.ico
|
||||||
maintainers:
|
maintainers:
|
||||||
- email: support@fit2cloud.com
|
- name: FIT2CLOUD, Inc. All Rights Reserved.
|
||||||
name: jumpserver
|
url: https://github.com/jumpserver/helm-charts
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/jumpserver/
|
- https://github.com/jumpserver/helm-charts/tree/main/charts/jumpserver
|
||||||
name: jumpserver
|
name: jumpserver
|
||||||
version: 4.0.0
|
version: 4.0.0
|
@ -8,7 +8,7 @@ fullnameOverride: ""
|
|||||||
## @param global.imageRegistry Global Docker image registry
|
## @param global.imageRegistry Global Docker image registry
|
||||||
## @param global.imagePullSecrets Global Docker registry secret names as an array
|
## @param global.imagePullSecrets Global Docker registry secret names as an array
|
||||||
## @param global.storageClass Global StorageClass for Persistent Volume(s)
|
## @param global.storageClass Global StorageClass for Persistent Volume(s)
|
||||||
## @param global.redis.password Global Redis™ password (overrides `auth.password`)
|
## @param global.redis.password Global Redis™ password (overrides `externalRedis.password`)
|
||||||
##
|
##
|
||||||
global:
|
global:
|
||||||
imageRegistry: docker.io
|
imageRegistry: docker.io
|
||||||
@ -20,14 +20,14 @@ global:
|
|||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
storageClass: ""
|
storageClass: ""
|
||||||
|
|
||||||
## Please configure your MySQL server first
|
## Please configure your PostgreSQL server first
|
||||||
## Jumpserver will not start the external MySQL server.
|
## Jumpserver will not start the external PostgreSQL server.
|
||||||
##
|
##
|
||||||
externalDatabase:
|
externalDatabase:
|
||||||
engine: mysql
|
engine: postgresql
|
||||||
host: localhost
|
host: localhost
|
||||||
port: 3306
|
port: 5432
|
||||||
user: root
|
user: postgres
|
||||||
password: ""
|
password: ""
|
||||||
database: jumpserver
|
database: jumpserver
|
||||||
|
|
||||||
@ -62,7 +62,6 @@ ingress:
|
|||||||
nginx.ingress.kubernetes.io/server-snippets: |
|
nginx.ingress.kubernetes.io/server-snippets: |
|
||||||
proxy_set_header Upgrade "websocket";
|
proxy_set_header Upgrade "websocket";
|
||||||
proxy_set_header Connection "Upgrade";
|
proxy_set_header Connection "Upgrade";
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
||||||
|
|
||||||
hosts:
|
hosts:
|
||||||
- "test.jumpserver.org"
|
- "test.jumpserver.org"
|
||||||
|
Loading…
Reference in New Issue
Block a user