Explorar el Código

Changed elasticsearch image url (#4897)

### What problem does this PR solve?

Changed elasticsearch image url to speed up image downloading. 

### Type of change

- [x] Refactoring
tags/v0.17.0
Zhichang Yu hace 8 meses
padre
commit
a1cf792245
No account linked to committer's email address
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. 1
    1
      docker/docker-compose-base.yml
  2. 1
    1
      helm/templates/elasticsearch.yaml

+ 1
- 1
docker/docker-compose-base.yml Ver fichero

@@ -3,7 +3,7 @@ services:
container_name: ragflow-es-01
profiles:
- elasticsearch
image: docker.elastic.co/elasticsearch/elasticsearch:${STACK_VERSION}
image: elasticsearch:${STACK_VERSION}
volumes:
- esdata01:/usr/share/elasticsearch/data
ports:

+ 1
- 1
helm/templates/elasticsearch.yaml Ver fichero

@@ -60,7 +60,7 @@ spec:
command: ["sysctl", "-w", "vm.max_map_count=262144"]
containers:
- name: elasticsearch
image: docker.elastic.co/elasticsearch/elasticsearch:{{ .Values.env.STACK_VERSION }}
image: elasticsearch:{{ .Values.env.STACK_VERSION }}
envFrom:
- secretRef:
name: {{ include "ragflow.fullname" . }}-env-config

Cargando…
Cancelar
Guardar