File tree Expand file tree Collapse file tree 6 files changed +36
-19
lines changed
Expand file tree Collapse file tree 6 files changed +36
-19
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,8 @@ helm install feedback-fusion feedback-fusion/feedback-fusion
5656| indexer.image.pullPolicy | string | ` "IfNotPresent" ` | pull policy |
5757| indexer.image.repository | string | ` "ghcr.io/onelitefeathernet/feedback-fusion-indexer" ` | image repository |
5858| indexer.image.tag | string | ` "" ` | Overrides the image tag whose default is the chart appVersion. |
59- | indexer.livenessProbe.grpc.port | int | ` 8000 ` | |
59+ | indexer.livenessProbe.httpGet.path | string | ` "/" ` | |
60+ | indexer.livenessProbe.httpGet.port | int | ` 8080 ` | |
6061| indexer.livenessProbe.periodSeconds | int | ` 5 ` | |
6162| indexer.nodeSelector | object | ` {} ` | |
6263| indexer.podAnnotations | object | ` {} ` | annotatiosn to attach to the pod |
@@ -67,7 +68,8 @@ helm install feedback-fusion feedback-fusion/feedback-fusion
6768| indexer.securityContext | object | ` {} ` | security context |
6869| indexer.service.type | string | ` "ClusterIP" ` | service type |
6970| indexer.startupProbe.failureThreshold | int | ` 10 ` | |
70- | indexer.startupProbe.grpc.port | int | ` 8000 ` | |
71+ | indexer.startupProbe.httpGet.path | string | ` "/" ` | |
72+ | indexer.startupProbe.httpGet.port | int | ` 8080 ` | |
7173| indexer.startupProbe.periodSeconds | int | ` 2 ` | |
7274| indexer.tolerations | list | ` [] ` | |
7375| indexer.volumeMounts | list | ` [] ` | Additional volumeMounts on the output Deployment definition. |
Original file line number Diff line number Diff line change @@ -59,16 +59,16 @@ spec:
5959 {{- toYaml . | nindent 12 }}
6060 {{- end }}
6161
62- - name : {{ .Values.feedbackFusion.config.secret }}
62+ - name : {{ .Values.feedbackFusion.indexer. config.secret }}
6363 mountPath : /etc/config
6464 volumes :
6565 {{- with .Values.indexer.volumes }}
6666 {{- toYaml . | nindent 8 }}
6767 {{- end }}
6868
69- - name : {{ .Values.feedbackFusion.config.secret }}
69+ - name : {{ .Values.feedbackFusion.indexer. config.secret }}
7070 secret :
71- secretName : {{ .Values.feedbackFusion.config.secret }}
71+ secretName : {{ .Values.feedbackFusion.indexer. config.secret }}
7272 {{- with .Values.indexer.nodeSelector }}
7373 nodeSelector :
7474 {{- toYaml . | nindent 8 }}
Original file line number Diff line number Diff line change @@ -249,12 +249,14 @@ indexer:
249249 # memory: 128Mi
250250
251251 livenessProbe :
252- grpc :
253- port : 8000
252+ httpGet :
253+ port : 8080
254+ path : /
254255 periodSeconds : 5
255256 startupProbe :
256- grpc :
257- port : 8000
257+ httpGet :
258+ port : 8080
259+ path : /
258260 periodSeconds : 2
259261 failureThreshold : 10
260262
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ export default defineNuxtConfig({
4343 providers : {
4444 oidc : {
4545 pkce : false ,
46- validateAccessToken : true ,
46+ validateAccessToken : false ,
4747 scope :
4848 process . env . NODE_ENV == "development"
4949 ? [ "openid" , "profile" , "test" ]
Original file line number Diff line number Diff line change @@ -56,7 +56,8 @@ helm install feedback-fusion feedback-fusion/feedback-fusion
5656| indexer.image.pullPolicy | string | ` "IfNotPresent" ` | pull policy |
5757| indexer.image.repository | string | ` "ghcr.io/onelitefeathernet/feedback-fusion-indexer" ` | image repository |
5858| indexer.image.tag | string | ` "" ` | Overrides the image tag whose default is the chart appVersion. |
59- | indexer.livenessProbe.grpc.port | int | ` 8000 ` | |
59+ | indexer.livenessProbe.httpGet.path | string | ` "/" ` | |
60+ | indexer.livenessProbe.httpGet.port | int | ` 8080 ` | |
6061| indexer.livenessProbe.periodSeconds | int | ` 5 ` | |
6162| indexer.nodeSelector | object | ` {} ` | |
6263| indexer.podAnnotations | object | ` {} ` | annotatiosn to attach to the pod |
@@ -67,7 +68,8 @@ helm install feedback-fusion feedback-fusion/feedback-fusion
6768| indexer.securityContext | object | ` {} ` | security context |
6869| indexer.service.type | string | ` "ClusterIP" ` | service type |
6970| indexer.startupProbe.failureThreshold | int | ` 10 ` | |
70- | indexer.startupProbe.grpc.port | int | ` 8000 ` | |
71+ | indexer.startupProbe.httpGet.path | string | ` "/" ` | |
72+ | indexer.startupProbe.httpGet.port | int | ` 8080 ` | |
7173| indexer.startupProbe.periodSeconds | int | ` 2 ` | |
7274| indexer.tolerations | list | ` [] ` | |
7375| indexer.volumeMounts | list | ` [] ` | Additional volumeMounts on the output Deployment definition. |
You can’t perform that action at this time.
0 commit comments