-
Notifications
You must be signed in to change notification settings - Fork 169
Added Helm chart #440
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
base: main
Are you sure you want to change the base?
Added Helm chart #440
Conversation
Signed-off-by: Andrew Block <andy.block@gmail.com>
Cali0707
left a comment
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 for adding the helm chart @sabre1041 !
Have a few questions/comments but overall this looks great!!
| {{- with .Values.extraVolumeMounts }} | ||
| {{- tpl (toYaml .) . | nindent 12 }} | ||
| {{- end }} | ||
| {{- with .Values.extraVolumeMounts }} | ||
| {{- tpl (toYaml .) . | nindent 12 }} | ||
| {{- 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.
this seems duplicated
| registry: quay.io | ||
| repository: manusa/kubernetes_mcp_server | ||
| # -- This sets the tag or sha digest for the image. | ||
| version: latest |
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.
should this go to latest? or do we want to pin it to the most recent release?
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.
I think generally, we should have image somewhere else published, instead of manusa repo 😅
| annotations: | ||
| {{- tpl (toYaml .) . | nindent 4 }} | ||
| {{- end }} | ||
| {{- 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.
@sabre1041 maybe I'm missing something but don't we need a ClusterRole + ClusterRoleBinding if require_oauth is not set to true (false is the 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.
In this scenario, if a request does not have a bearer token in the request, the underlying kubernetes manager will be used (using the service account credentials), which has no permissions
Added a Helm chart for the MCP Server
Future enhancements include automating the publishing of the chart to an OCI repository
resolves #435