Skip to content
This repository was archived by the owner on Feb 5, 2026. It is now read-only.

Commit 34bf8db

Browse files
committed
change to openrefine
1 parent 9c89959 commit 34bf8db

4 files changed

Lines changed: 27 additions & 3 deletions

File tree

charts/openrefine/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ type: application
2222
# This is the chart version. This version number should be incremented each time you make changes
2323
# to the chart and its templates, including the app version.
2424
# Versions are expected to follow Semantic Versioning (https://semver.org/)
25-
version: 3.4.0
25+
version: 3.5.0
2626

2727
# This is the version number of the application being deployed. This version number should be
2828
# incremented each time you make changes to the application. Versions are not expected to

charts/openrefine/templates/deployment.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ spec:
4343
{{- toYaml .Values.securityContext | nindent 12 }}
4444
image: "{{ .Values.service.image.repository }}:{{ .Values.service.image.tag | default .Chart.AppVersion }}"
4545
imagePullPolicy: {{ .Values.service.image.pullPolicy }}
46+
env:
47+
- name: REFINE_INTERFACE
48+
value: "0.0.0.0"
49+
- name: REFINE_MEMORY
50+
value: "{{ .Values.service.memory }}"
51+
- name: REFINE_DATA_DIR
52+
value: "/data"
4653
ports:
4754
- name: http
4855
containerPort: 3333

charts/openrefine/values.schema.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22
"$schema": "http://json-schema.org/schema#",
33
"type": "object",
44
"properties": {
5+
"service": {
6+
"description": "Your service will have at least the requested resources and never more than its limits. No limit for a resource and you can consume everything left on the host machine.",
7+
"type": "object",
8+
"properties": {
9+
"memory": {
10+
"description": "Java memory",
11+
"type": "string",
12+
"default": "1024M",
13+
"render": "slider",
14+
"sliderMin": 1024,
15+
"sliderMax": 32768,
16+
"sliderStep": 1024,
17+
"sliderUnit": "M"
18+
}
19+
}
20+
},
521
"resources": {
622
"description": "Your service will have at least the requested resources and never more than its limits. No limit for a resource and you can consume everything left on the host machine.",
723
"type": "object",

charts/openrefine/values.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
# Default values for openrefine.
22

33
service:
4+
memory: "1024M"
45
image:
5-
repository: "vimagick/openrefine"
6+
repository: "easypi/openrefine"
67
pullPolicy: IfNotPresent
78
# Overrides the image tag whose default is the chart appVersion.
8-
tag: ""
9+
tag: "3.7.0"
910

1011
security:
1112
networkPolicy:

0 commit comments

Comments
 (0)