-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Support cache size of vineyard fuse and enable serverless mode for vineyard runtime #3749
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
Support cache size of vineyard fuse and enable serverless mode for vineyard runtime #3749
Conversation
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
Hi @dashanji. Thanks for your PR. I'm waiting for a fluid-cloudnative member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #3749 +/- ##
==========================================
- Coverage 64.29% 64.21% -0.09%
==========================================
Files 476 474 -2
Lines 28327 28252 -75
==========================================
- Hits 18214 18141 -73
+ Misses 7947 7946 -1
+ Partials 2166 2165 -1 ☔ View full report in Codecov by Sentry. |
ccbbad4 to
3fdce33
Compare
pkg/common/constants.go
Outdated
| injectSidecar = ".sidecar" + inject | ||
| InjectServerless = "serverless" + inject // serverless.fluid.io/inject | ||
| InjectUnprivilegedFuseSidecar = "unprivileged" + injectSidecar // unprivileged.sidecar.fluid.io/inject | ||
| InjectVineyardSidecar = "vineyard" + injectSidecar // vineyard.sidecar.fluid.io/inject |
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 if it's no need to set InjectVineyardSidecar by user. It should be determined automatically.
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.
Okay, I get it.
47da8df to
709f189
Compare
|
|
Hi @cheyang @TrafalgarZZZ , could you please take a look at this? |
709f189 to
3f5ebfc
Compare
Signed-off-by: Ye Cao <caoye.cao@alibaba-inc.com>
Signed-off-by: Ye Cao <caoye.cao@alibaba-inc.com>
Signed-off-by: Ye Cao <caoye.cao@alibaba-inc.com>
…erverless mode. Signed-off-by: Ye Cao <caoye.cao@alibaba-inc.com>
3f5ebfc to
80de31f
Compare
Signed-off-by: Ye Cao <caoye.cao@alibaba-inc.com>
Signed-off-by: Ye Cao <caoye.cao@alibaba-inc.com>
…onents. Signed-off-by: Ye Cao <caoye.cao@alibaba-inc.com>
Signed-off-by: Ye Cao <caoye.cao@alibaba-inc.com>
|
| } | ||
|
|
||
| // check whether the podSpecs is using vineyard runtime | ||
| func (s *Injector) checkVineyardPlatform(podSpecs *mutator.MutatingPodSpecs, runtimeInfos map[string]base.RuntimeInfoInterface) string { |
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 Vineyard is a runtime not platform.
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 this catch.




Ⅰ. Describe what this PR does