-
Notifications
You must be signed in to change notification settings - Fork 7
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
add support link #609
add support link #609
Conversation
roles/azimuth/defaults/main.yml
Outdated
@@ -85,6 +85,7 @@ azimuth_metrics_tenant_metrics_url_template: >- | |||
# The documentation URL | |||
# By default, we use the generic Azimuth docs | |||
azimuth_documentation_url: https://azimuth-cloud.github.io/azimuth-user-docs/ | |||
azimuth_support_url: https://confluence.skatelescope.org/display/SRCSC/Azimuth+Support+on+Cambridge+Arcus |
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.
Similar to the Azimuth PR, this should not have a value by default.
Hello @mkjpryor, I changes made . Kindly review |
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.
This looks worth adding.
We might also want to tweak to the docs so it's clear this is an option? Maybe that is overkill. I will let @mkjpryor re-review this one.
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.
Just one small change required.
roles/azimuth/defaults/main.yml
Outdated
@@ -85,6 +85,7 @@ azimuth_metrics_tenant_metrics_url_template: >- | |||
# The documentation URL | |||
# By default, we use the generic Azimuth docs | |||
azimuth_documentation_url: https://azimuth-cloud.github.io/azimuth-user-docs/ | |||
azimuth_support_url: None |
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.
This isn't how you specify a null
value in YAML - this variable will have the string "None"
as its value. Please change this to one of the following:
azimuth_support_url:
azimuth_support_url: null
azimuth_support_url: ~
The first method is preferred and is used elsewhere.
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.
ah, doh, I missed that, good point.
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.
Thanks @mkjpryor . Updated
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
No description provided.