-
Notifications
You must be signed in to change notification settings - Fork 364
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
[CELEBORN-1786] add serviceAccount helm chart #3006
Conversation
name: {{ include "celeborn.serviceAccountName" . }} | ||
labels: | ||
{{- include "celeborn.labels" . | nindent 4 }} | ||
{{- end }} |
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.
new line
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. Thanks.
charts/celeborn/values.yaml
Outdated
# -- Specifies whether to create a service account for Celeborn | ||
create: false | ||
# -- Specifies the name of the service account | ||
name: default |
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.
ditto
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.
Looks like lint doesn't, by default, allow empty lines at the end of the values.yaml file, so I prefer to adhere to the rule. @turboFei
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.
Merged into main(v0.6.0). |
<!-- Thanks for sending a pull request! Here are some tips for you: - Make sure the PR title start w/ a JIRA ticket, e.g. '[CELEBORN-XXXX] Your PR title ...'. - Be sure to keep the PR description updated to reflect all changes. - Please write your PR title to summarize what this PR proposes. - If possible, provide a concise example to reproduce the issue for a faster review. --> ### What changes were proposed in this pull request? as title ### Why are the changes needed? Support custom serviceAccount to control what permissions and resources a pod has access to. ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? test the template rendering by helm template command line Closes #3006 from zhaohehuhu/dev-1218. Authored-by: zhaohehuhu <luoyedeyi@163.com> Signed-off-by: mingji <fengmingxiao.fmx@alibaba-inc.com>
What changes were proposed in this pull request?
as title
Why are the changes needed?
Support custom serviceAccount to control what permissions and resources a pod has access to.
Does this PR introduce any user-facing change?
No
How was this patch tested?
test the template rendering by helm template command line