Skip to content

Commit

Permalink
Merge pull request #1571 from thehyve/dev
Browse files Browse the repository at this point in the history
Release version 2.0.2.
  • Loading branch information
ewelinagr authored Nov 13, 2024
2 parents b39a3d3 + e6b5f57 commit 708cc03
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2656,7 +2656,7 @@ Create DNS records for the ``keycloak.example.com``, ``fairspace.example.com`` a
# Fetch the fairspace-keycloak chart
~/bin/helm/helm pull oci://ghcr.io/thehyve/fairspace/helm-charts/fairspace-keycloak --version 0.7.0
# Fetch the fairspace chart
~/bin/helm/helm pull oci://ghcr.io/thehyve/fairspace/helm-charts/fairspace --version 2.0.1
~/bin/helm/helm pull oci://ghcr.io/thehyve/fairspace/helm-charts/fairspace --version 2.0.2
----

===== Deploy Keycloak
Expand Down Expand Up @@ -2744,7 +2744,7 @@ Create a new deployment (called _release_ in helm terminology) and
install the Fairspace chart:
[source, shell]
----
~/bin/helm/helm install fairspace-new fairspace-2.0.1.tgz --namespace=fairspace-new \
~/bin/helm/helm install fairspace-new fairspace-2.0.2.tgz --namespace=fairspace-new \
-f /path/to/values.yaml --set-file saturn.vocabulary=/path/to/vocabulary.ttl --set-file saturn.views=/path/to/views.yaml
----
You can pass values files with ``-f`` and provide a file for a specified
Expand Down Expand Up @@ -2841,7 +2841,7 @@ Additionally, to include custom icons for `fairspace.icons` option, you need to

[source, shell]
----
~/bin/helm/helm install fairspace-new fairspace-2.0.1.tgz --namespace=fairspace-new \
~/bin/helm/helm install fairspace-new fairspace-2.0.2.tgz --namespace=fairspace-new \
-f /path/to/values.yaml --set-file saturn.vocabulary=/path/to/vocabulary.ttl --set-file saturn.views=/path/to/views.yaml --set-file svgicons.extra-icon=/path/to/extra-icon.svg
----

Expand Down Expand Up @@ -2898,7 +2898,7 @@ jupyterhub:
To update a deployment using a new chart:
[source, shell]
----
~/bin/helm/helm upgrade fairspace-new fairspace-2.0.1.tgz
~/bin/helm/helm upgrade fairspace-new fairspace-2.0.2.tgz
----
With ``helm upgrade`` you can also pass new values files with ``-f``
and pass files with ``--set-file`` as for ``helm install``.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.1
2.0.2
2 changes: 1 addition & 1 deletion charts/fairspace/templates/ingress/fairspace-ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
http:
paths:
- path: /
pathType: ImplementationSpecific
pathType: {{ $ingress.pathType | default "ImplementationSpecific" }}
backend:
service:
name: {{ .Release.Name }}
Expand Down
5 changes: 4 additions & 1 deletion charts/fairspace/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,15 @@ external:
clientSecret:

# Setup ingress for fairspace components
# Change pathType to "Prefix" for ingress providers which do not default to prefix or wildcard
# matching for the "/" path, eg: AWS ALB
fairspace:
name: "fairspace"
description: "Fairspace"
ingress:
enabled: true
domain:
pathType: ImplementationSpecific
annotations:
pluto:
kubernetes.io/ingress.class: nginx
Expand Down Expand Up @@ -185,4 +188,4 @@ postgres:
# Pod annotations should remain empty. They are filled within the build process
podAnnotations: { }

svgicons: { }
svgicons: { }

0 comments on commit 708cc03

Please sign in to comment.