-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Rstudio Helm Chart #30
Conversation
trispera
commented
Apr 25, 2024
- Add NGINX in front of Rstudio for authentication
- Route points NGINX
- Add secret with USER and PASSWORD to connect to Rstudio
- Update README and NOTES.txt
- Add NGINX in front of Rstudio for authentication - Route points NGINX - Add secret with USER and PASSWORD to connect to Rstudio - Update README and NOTES.txt
charts/rstudio/templates/NOTES.txt
Outdated
@@ -15,6 +15,11 @@ You can retrieve Rstudio URL via this command: | |||
export RSTUDIO=$(oc get route --namespace {{ .Release.Namespace }} -o yaml | yq '.items[0].spec.host') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing route name
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. It assumes you don't have other routes already deployed. With your namespace, it'll return other values.
Need to find a better way for this one. With annotations maybe 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You know the name of the route before hand, isn't it? Why not use that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
$ oc get route rstudio -n test-helm-charts -o yaml | yq .spec.host
"pedropedro.2.rahtiapp.fi.2.rahtiapp.fi"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With this update I know. It wasn't the case before. I'll do the change
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pushed new commit
Did you wait for the build to complete before accessing it? |
Shame No, i did not |
Now it works |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM