File tree 4 files changed +10
-3
lines changed
4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ description: An open source server for sharing geospatial data.
10
10
# This is the chart version. This version number should be incremented each time you make changes
11
11
# to the chart and its templates, including the app version.
12
12
# Versions are expected to follow Semantic Versioning (https://semver.org/)
13
- version : 1.2 .0
13
+ version : 1.3 .0
14
14
15
15
# This is the version number of the application being deployed. This version number should be
16
16
# incremented each time you make changes to the application. Versions are not expected to
@@ -35,5 +35,4 @@ annotations:
35
35
- name: Helm Chart
36
36
url: https://github.com/ncsa/charts
37
37
artifacthub.io/changes : |
38
- - Added an ability of installation of the extensions
39
- - Added variables for CORS configuration
38
+ - Added variable for PROXY configuration
Original file line number Diff line number Diff line change @@ -90,6 +90,9 @@ $ helm install --set persistence.existingClaim=PVC_NAME geoserver
90
90
```
91
91
92
92
## ChangeLog
93
+ ### 1.3.0
94
+ - Added variable for PROXY configuration
95
+
93
96
### 1.2.0
94
97
- Added an ability of installation of the extensions
95
98
- Added variables for CORS configuration
Original file line number Diff line number Diff line change 64
64
value : {{ .Values.envs.extraJavaOpts | quote }}
65
65
- name : GEOSERVER_ADMIN_USER
66
66
value : admin
67
+ - name : PROXY_BASE_URL
68
+ value : {{ .Values.proxyBaseUrl | quote }}
67
69
- name : GEOSERVER_ADMIN_PASSWORD
68
70
valueFrom :
69
71
secretKeyRef :
Original file line number Diff line number Diff line change @@ -67,6 +67,9 @@ persistence:
67
67
# the values should be only url without http:// or https://, like "geoserver.example.com"
68
68
whitelist : " "
69
69
70
+ # the base URL of the GeoServer web app if GeoServer is behind a proxy. Example: https://example.com/geoserver.
71
+ proxyBaseUrl : " "
72
+
70
73
# the following is for the geoserver java memory heap size control
71
74
envs :
72
75
extraJavaOpts : " -Xms512m -Xmx2g"
You can’t perform that action at this time.
0 commit comments