Skip to content

Commit cc95cea

Browse files
authored
Merge pull request #25 from holiiveira/feature/proxy-variable
feat: added variable for PROXY configuration
2 parents be5cbb4 + ab79ea2 commit cc95cea

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

charts/geoserver/Chart.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description: An open source server for sharing geospatial data.
1010
# This is the chart version. This version number should be incremented each time you make changes
1111
# to the chart and its templates, including the app version.
1212
# Versions are expected to follow Semantic Versioning (https://semver.org/)
13-
version: 1.2.0
13+
version: 1.3.0
1414

1515
# This is the version number of the application being deployed. This version number should be
1616
# incremented each time you make changes to the application. Versions are not expected to
@@ -35,5 +35,4 @@ annotations:
3535
- name: Helm Chart
3636
url: https://github.com/ncsa/charts
3737
artifacthub.io/changes: |
38-
- Added an ability of installation of the extensions
39-
- Added variables for CORS configuration
38+
- Added variable for PROXY configuration

charts/geoserver/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@ $ helm install --set persistence.existingClaim=PVC_NAME geoserver
9090
```
9191

9292
## ChangeLog
93+
### 1.3.0
94+
- Added variable for PROXY configuration
95+
9396
### 1.2.0
9497
- Added an ability of installation of the extensions
9598
- Added variables for CORS configuration

charts/geoserver/templates/deployment.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ spec:
6464
value: {{ .Values.envs.extraJavaOpts | quote }}
6565
- name: GEOSERVER_ADMIN_USER
6666
value: admin
67+
- name: PROXY_BASE_URL
68+
value: {{ .Values.proxyBaseUrl | quote }}
6769
- name: GEOSERVER_ADMIN_PASSWORD
6870
valueFrom:
6971
secretKeyRef:

charts/geoserver/values.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ persistence:
6767
# the values should be only url without http:// or https://, like "geoserver.example.com"
6868
whitelist: ""
6969

70+
# the base URL of the GeoServer web app if GeoServer is behind a proxy. Example: https://example.com/geoserver.
71+
proxyBaseUrl: ""
72+
7073
# the following is for the geoserver java memory heap size control
7174
envs:
7275
extraJavaOpts: "-Xms512m -Xmx2g"

0 commit comments

Comments
 (0)