Skip to content

Commit

Permalink
Bugs fixed in sr-landing Helm.
Browse files Browse the repository at this point in the history
  • Loading branch information
Puneet Joshi authored and Puneet Joshi committed Dec 10, 2024
1 parent 920a45a commit 55d5a7a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions charts/sr-landing/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ spec:
{{- toYaml . | nindent 12 }}
{{- end }}
volumeMounts:
- name: .Values.volumeMount.name
mountPath: .Values.volumeMount.path
- name: {{ .Values.volumeMount.name }}
mountPath: {{ .Values.volumeMount.path }}
volumes:
- name: html-volume
- name: {{ .Values.volumeMount.name }}
configMap:
name: {{ .Release.Name }}-html-config
14 changes: 7 additions & 7 deletions charts/sr-landing/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ landingPage:
link: "https://opensearch-reporting-sr.explore.openg2p.org"
volumeMount:
name: html-volume
mountPath: /usr/share/nginx/html
path: /usr/share/nginx/html

ingress:
enabled: false
Expand Down Expand Up @@ -70,8 +70,8 @@ istio:
gateway: "internal"
destination: '{{ include "landing.fullname" . }}'
destinationPort: '{{ .Values.service.port }}'
prefix: /api/mapper/
rewriteUri: "/"
prefix: ""
rewriteUri: ""
gateway:
enabled: false
host: ""
Expand All @@ -93,17 +93,17 @@ autoscaling:

readinessProbe:
httpGet:
path: /ping
port: 8000
path: /
port: 80
failureThreshold: 20
periodSeconds: 30
timeoutSeconds: 10
initialDelaySeconds: 30

livenessProbe:
httpGet:
path: /ping
port: 8000
path: /
port: 80
initialDelaySeconds: 15
periodSeconds: 60
failureThreshold: 5
Expand Down

0 comments on commit 55d5a7a

Please sign in to comment.