Skip to content

Commit

Permalink
perf: 更新配置文件模板
Browse files Browse the repository at this point in the history
  • Loading branch information
wojiushixiaobai committed Jul 16, 2024
1 parent 60c8782 commit 3d1bfbb
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 13 deletions.
25 changes: 25 additions & 0 deletions charts/jumpserver/.helmignore
Original file line number Diff line number Diff line change
@@ -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
14 changes: 8 additions & 6 deletions charts/jumpserver/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
apiVersion: v1
annotations:
category: "Application"
licenses: "GPL-3.0"
apiVersion: v2
appVersion: "v4.0.0"
description: A Helm chart for Deploying Jumpserver on Kubernetes
engine: gotpl
home: https://jumpserver.org
icon: https://jumpserver.org/images/logo/favicon.ico
maintainers:
- email: [email protected]
name: jumpserver
- name: FIT2CLOUD, Inc. All Rights Reserved.
url: https://github.com/jumpserver/helm-charts
sources:
- https://github.com/jumpserver/
- https://github.com/jumpserver/helm-charts/tree/main/charts/jumpserver
name: jumpserver
version: 4.0.0
version: 4.0.0
13 changes: 6 additions & 7 deletions charts/jumpserver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fullnameOverride: ""
## @param global.imageRegistry Global Docker image registry
## @param global.imagePullSecrets Global Docker registry secret names as an array
## @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:
imageRegistry: docker.io
Expand All @@ -20,14 +20,14 @@ global:
imagePullSecrets: []
storageClass: ""

## Please configure your MySQL server first
## Jumpserver will not start the external MySQL server.
## Please configure your PostgreSQL server first
## Jumpserver will not start the external PostgreSQL server.
##
externalDatabase:
engine: mysql
engine: postgresql
host: localhost
port: 3306
user: root
port: 5432
user: postgres
password: ""
database: jumpserver

Expand Down Expand Up @@ -62,7 +62,6 @@ ingress:
nginx.ingress.kubernetes.io/server-snippets: |
proxy_set_header Upgrade "websocket";
proxy_set_header Connection "Upgrade";
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
hosts:
- "test.jumpserver.org"
Expand Down

0 comments on commit 3d1bfbb

Please sign in to comment.