Skip to content

Commit

Permalink
fuseki: improve onyxia defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
ludovicm67 committed Jul 23, 2024
1 parent 35e08b7 commit 40587d2
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 4 deletions.
2 changes: 1 addition & 1 deletion zazuko/fuseki/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.1
version: 0.0.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
28 changes: 25 additions & 3 deletions zazuko/fuseki/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -333,10 +333,21 @@
},
"className": {
"type": "string",
"default": ""
"default": "",
"x-onyxia": {
"hidden": true,
"overwriteDefaultWith": "{{k8s.ingressClassName}}"
}
},
"annotations": {
"$ref": "#/definitions/Annotations"
"$ref": "#/definitions/Annotations",
"x-onyxia": {
"hidden": true,
"overwriteDefaultWith": {
"acme.cert-manager.io/http01-ingress-class": "{{k8s.ingressClassName}}",
"cert-manager.io/cluster-issuer": "{{k8s.certManagerClusterIssuer}}"
}
}
},
"hosts": {
"type": "array",
Expand All @@ -362,7 +373,18 @@
"tls": {
"type": "array",
"items": {},
"default": []
"default": [],
"x-onyxia": {
"hidden": true,
"overwriteDefaultWith": [
{
"hosts": [
"{{project.id}}-{{k8s.randomSubdomain}}.{{k8s.domain}}"
],
"secretName": "{{project.id}}-{{k8s.randomSubdomain}}-tls"
}
]
}
}
},
"title": "Ingress"
Expand Down

0 comments on commit 40587d2

Please sign in to comment.