Skip to content

Commit e1017f3

Browse files
committed
fix some bugs
1 parent 7c43a80 commit e1017f3

6 files changed

Lines changed: 12 additions & 11 deletions

File tree

extensions/holmesgpt/config/holmesgpt/charts/holmesgpt-frontend/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: holmesgpt-frontend
33
description: Frontend of holmesGPT extension.
44
type: application
55
version: 0.2.0
6-
appVersion: "0.2.0"
6+
appVersion: "v0.2.0"
77
home: https://kubesphere.io
88
sources:
99
- https://github.com/kubesphere

extensions/holmesgpt/config/holmesgpt/charts/holmesgpt-helper/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.1.0
18+
version: 0.2.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "1.16.0"
24+
appVersion: "v0.2.0"
2525

2626
dependencies:
2727
- name: alertmanager

extensions/holmesgpt/config/holmesgpt/charts/holmesgpt-helper/templates/configmap.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,10 @@ data:
4747
proxy_set_header X-Forwarded-Proto $scheme;
4848
proxy_http_version 1.1;
4949
proxy_set_header Connection "";
50+
proxy_buffering off;
5051
proxy_connect_timeout 5s;
51-
proxy_send_timeout 60s;
52-
proxy_read_timeout 60s;
52+
proxy_read_timeout 300s;
53+
proxy_send_timeout 300s;
5354
}
5455
5556
location / {

extensions/holmesgpt/config/holmesgpt/charts/holmesgpt-helper/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ spec:
3737
securityContext:
3838
{{- toYaml . | nindent 12 }}
3939
{{- end }}
40-
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
40+
image: "{{ .Values.global.imageRegistry | default .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
4141
imagePullPolicy: {{ .Values.image.pullPolicy }}
4242
ports:
4343
- name: http

extensions/holmesgpt/config/holmesgpt/charts/holmesgpt-helper/values.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ replicaCount: 1
77

88
# This sets the container image more information can be found here: https://kubernetes.io/docs/concepts/containers/images/
99
image:
10-
repository: nginx
11-
# This sets the pull policy for images.
12-
pullPolicy: IfNotPresent
10+
registry: docker.io
11+
repository: frezes/holmesgpt-frontend
12+
pullPolicy: Always
1313
# Overrides the image tag whose default is the chart appVersion.
14-
tag: "alpine"
14+
tag: ""
1515

1616
# This is for the secrets for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
1717
imagePullSecrets: []

extensions/holmesgpt/config/holmesgpt/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ holmesgpt-frontend:
6565
repository: frezes/holmesgpt-frontend
6666
pullPolicy: Always
6767
# Overrides the image tag whose default is the chart appVersion.
68-
tag: "v0.2.0"
68+
# tag: ""
6969

7070
holmesgpt-helper:
7171
fullnameOverride: holmesgpt-proxy

0 commit comments

Comments
 (0)