This repository has been archived by the owner on Sep 16, 2023. It is now read-only.
Support OpenShift Routes as an alternative to Kubernetes Ingresses #65
sergkudinov
started this conversation in
Ideas
Replies: 2 comments 7 replies
-
do you want that a user can choose between ingress and route ? There is some code to do in the API to analyse the route manifest and give all urls to the end users. |
Beta Was this translation helpful? Give feedback.
6 replies
-
You talk about admins where we talk about users. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In OpenShift clusters, Routes are preferable to Kubernetes Ingresses. When running Onyxia on OpenShift clusters, it requires Routes configuration as an alternative to Ingresses.
I am suggesting providing Routes configuration for all the Onyxia services' charts of the services that expose the URL to the outside of the cluster.
Implementation steps
regions.services.type
with the new valueOPENSHIFT
.values.schema.json
files, moveingress
configuration to the inside ofnetworking
(see example config).route
configuration similar toingress
.ingress
orroutes
for Onyxia users, defaulting toingress
. It can be a radio button on the interface. It must appear whenregions.services.type
isOPENSHIFT
(this condition is useful because Kubernetes clusters can't use OpenShift Routes, according to my quick research). The interface example is here:Questions
Beta Was this translation helpful? Give feedback.
All reactions