Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable analytics + fix ingress + update ogc_api_records + fix database #105

Merged
merged 1 commit into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions templates/ingress/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,19 @@ spec:
backend:
{{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }}
service:
{{- if $.Values.georchestra.webapps.gateway.enabled }}
name: {{ include "georchestra.fullname" $ }}-gateway-svc
{{- else }}
name: {{ include "georchestra.fullname" $ }}-sp-svc
{{- end }}
port:
number: 8080
{{- else }}
{{- if $.Values.georchestra.webapps.gateway.enabled }}
serviceName: {{ include "georchestra.fullname" $ }}-gateway-svc
{{- else }}
serviceName: {{ include "georchestra.fullname" $ }}-sp-svc
{{- end }}
servicePort: 8080
{{- end }}
{{- if $.Values.georchestra.webapps.cas.enabled }}
Expand Down
8 changes: 6 additions & 2 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ georchestra:
# For all the apps, setting a replica count of more than 1 is not supported
# by the helm chart (cardinality 0..1).
analytics:
enabled: true
enabled: false
replicaCount: "1"
docker_image: georchestra/analytics:latest
extra_environment: []
Expand Down Expand Up @@ -88,7 +88,7 @@ georchestra:
ogc_api_records:
enabled: true
replicaCount: "1"
image: georchestra/gn-cloud-ogc-api-records-service:2021-12-16
image: georchestra/gn-cloud-ogc-api-records-service:4.2.8
extra_environment: []
envsubst:
enabled: true
Expand Down Expand Up @@ -327,6 +327,10 @@ database:
ssl: false
username: georchestra
primary: # section of parameters for builtin database
startupProbe:
enabled: true
containerSecurityContext:
readOnlyRootFilesystem: false
persistentVolumeClaimRetentionPolicy:
enabled: true
extraVolumeMounts:
Expand Down
Loading