Skip to content
This repository was archived by the owner on Sep 18, 2024. It is now read-only.

Commit 27f1626

Browse files
committed
openrefine
1 parent fa7697a commit 27f1626

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

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.2.0
25+
version: 3.3.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/ingress.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ metadata:
1010
annotations:
1111
{{- include "library-chart.ingress.annotations" . | nindent 4 }}
1212
spec:
13+
ingressClassName: {{ .Values.ingress.ingressClassName | quote }}
1314
{{- if .Values.ingress.tls }}
1415
tls:
1516
- hosts:

charts/openrefine/values.schema.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,20 @@
178178
"hidden": true,
179179
"overwriteDefaultWith": "{{project.id}}-{{k8s.randomSubdomain}}.{{k8s.domain}}"
180180
}
181+
},
182+
"ingressClassName": {
183+
"type": "string",
184+
"form": true,
185+
"title": "ingressClassName",
186+
"default": "",
187+
"x-form": {
188+
"hidden": true,
189+
"value": "{{k8s.ingressClassName}}"
190+
},
191+
"x-onyxia": {
192+
"hidden": true,
193+
"overwriteDefaultWith": "{{k8s.ingressClassName}}"
194+
}
181195
}
182196
}
183197
}

charts/openrefine/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ networking:
7171
ingress:
7272
enabled: true
7373
tls: true
74-
annotations:
75-
kubernetes.io/ingress.class: nginx
74+
ingressClassName: ""
75+
annotations: []
7676
# kubernetes.io/tls-acme: "true"
7777
hostname: chart-example.local
7878
# - secretName: chart-example-tls

0 commit comments

Comments
 (0)