Skip to content

Commit f63323c

Browse files
authored
Merge pull request #185 from OneLiteFeatherNET/fix/arm64
Fix/arm64
2 parents 6c81206 + a523ba7 commit f63323c

File tree

6 files changed

+36
-19
lines changed

6 files changed

+36
-19
lines changed

Cargo.lock

Lines changed: 18 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/feedback-fusion/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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. |

charts/feedback-fusion/templates/deployment-indexer.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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 }}

charts/feedback-fusion/values.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff 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

dashboard/nuxt.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"]

docs/docs/deployment/helm.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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. |

0 commit comments

Comments
 (0)