Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
feat: support nacos storage #796
base: main
Are you sure you want to change the base?
feat: support nacos storage #796
Changes from 19 commits
bd58388
625c61d
d848bb8
e8888cb
d01a220
d8bb8d3
5aed7f4
0ffcc30
c0c4e38
8eb8f5b
9bb4920
31ca385
b5fd8a7
85b8274
370d386
01c08fe
06651de
35c5db1
9449862
ecb2672
62c421a
2e72259
0c83d5f
0715626
62cb1dd
8ce8df9
cd3527e
4b5cd88
a3ecec7
9349772
a3b114b
41bd16a
598aaf0
a8af197
6cd64b4
5575512
81810c0
daba6c7
32a6786
0a425dd
0f270ce
b306f61
688442b
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
storage 如果不是 nacos 的话,是没有以上这些参数的。这里是否要考虑开闭原则?
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.
不太清楚开闭原则在这里的用法,有什么改进的建议吗
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.
下面叫
{{ .Values.apiserver.storage }}-data
,这里是nacos-data
。同样建议考虑一下开闭原则。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.
鉴于
gen-secret-configmap.sh
里是允许自定义这个 ConfigMap 的名字的,那这里挂载用的名字需要支持自定义吗?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.
gen-secret-configmap.sh
那边会改成固定的,同higress-config
一样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.
Would we allow user to use another address here?
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.
If run api server in other pod, we can modify this. If not, we can remove it. It can be fixed.
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.
按照目前的安装方式来看,是否需要移除这个配置,把apiserver固定为higress-controller的其中一个container
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.
Is it possible that we have a Nacos running in
http://127.0.0.1:8848
?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 parameter is used to enable users to specify a nacos address.
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.
这个默认值如果用户不修改的话,安装肯定会失败吧?具体表现是什么?
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.
新增helm参数来控制是否替用户安装nacos,这个地址就修改为替用户安装nacos的时候的nacos地址,这样可以吗