-
Notifications
You must be signed in to change notification settings - Fork 802
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
Chart.yaml - icon + kube & helm versions #627
Conversation
|
0b625f2
to
e55822f
Compare
Making Chart.yaml conform to `helm lint` by adding an icon, and declaring required k8s and helm versions.
Making Chart.yaml conform to `helm lint` by adding an icon, and declaring required k8s and helm versions.
e55822f
to
09535ff
Compare
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.
Minor nits, otherwise LGTM!
jupyterhub/Chart.yaml
Outdated
home: https://zero-to-jupyterhub.readthedocs.io | ||
sources: | ||
- https://github.com/jupyterhub/zero-to-jupyterhub-k8s | ||
icon: http://jupyter.org/assets/hublogo.svg |
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.
Can you make this https?
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.
Done!
jupyterhub/Chart.yaml
Outdated
name: jupyterhub | ||
version: v0.7-dev | ||
appVersion: v0.8.1 | ||
description: Multi-user Jupyter installation | ||
home: https://zero-to-jupyterhub.readthedocs.io |
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.
can this be https://z2jh.jupyter.org instead?
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.
Done!
Awesome! Thanks for the PR :) What do you think of adding |
@yuvipanda thanks for input and merge! :D @yuvipanda yes makes sense, also adding yamllint with a config similar to kubernetes/charts --- thats what they do I think. See #625 and in-page search for yamllint! |
I ran
helm lint
on the chart successfully, but was warned about a missing icon. This PR adds that icon.PR based on reading up on what to be included in Chart.yaml according to Helm and according to kubernetes/charts repo as well as by looking at charts published in kubernetes/charts.
I added required kubeVersion and tillerVersion to be 1.8+ (k8s daemonset API) and 2.7+ (helm delete annotations). See #502 for more details. Having Helm (tiller) 2.8.2 would avoid issues like described in #620 - but is not essential.