diff --git a/charts/application-hub/Chart.yaml b/charts/application-hub/Chart.yaml index 431d97b..10d6334 100644 --- a/charts/application-hub/Chart.yaml +++ b/charts/application-hub/Chart.yaml @@ -15,7 +15,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: 2.0.2 +version: 2.0.3 # 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 diff --git a/charts/application-hub/templates/ingress.yaml b/charts/application-hub/templates/ingress.yaml new file mode 100644 index 0000000..e5a2f7c --- /dev/null +++ b/charts/application-hub/templates/ingress.yaml @@ -0,0 +1,19 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: {{ .Values.jupyterhub.fullnameOverride }}-ingress + namespace: proc + annotations: + kubernetes.io/ingress.class: nginx +spec: + rules: + - host: applicationhub.demo.eoepca.org + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + service: + name: application-hub-proxy-public + port: + number: 80 \ No newline at end of file