-
Notifications
You must be signed in to change notification settings - Fork 39.7k
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
Install CRD's in local cluster #72584
Conversation
Hi @xing-yang. Thanks for your PR. I'm waiting for a kubernetes 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. Instructions 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. |
/ok-to-test |
/test pull-kubernetes-local-e2e |
/approve |
/test pull-kubernetes-local-e2e |
/uncc |
/retest Review the full test history for this PR. Silence the bot with an |
/lgtm cancel
|
83067a5
to
f610520
Compare
/retest |
/sig storage |
/retest |
echo "No csinodeinfo available." | ||
fi | ||
} | ||
|
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.
Alternative: we could unify this into a create_crd
function that takes a YAML file as parameter.
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.
Sure
if [[ ${FEATURE_GATES} == *"CSINodeInfo=true"* ]]; then | ||
create_csinodeinfo | ||
fi | ||
|
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 it wouldn't install the CRDs if FEATURE_GATES
is set to AllAlpha=true
, right?
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 it be better to do something like this instead?
if [[ "${FEATURE_GATES:-}" =~ "CSIDriverRegistry=true" || (...)
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.
Yes, I'll change it. Thanks!
f610520
to
4852266
Compare
/test pull-kubernetes-e2e-gce-100-performance |
/test pull-kubernetes-e2e-kops-aws |
/test pull-kubernetes-local-e2e |
Interesting, occasionally
|
This PR installs CSIDriver and CSINodeInfo CRDs in the local cluster. fixes: kubernetes#70791
4852266
to
3603013
Compare
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: fejta, xing-yang The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/test pull-kubernetes-integration |
/test pull-kubernetes-e2e-kops-aws |
/lgtm |
/sig storage |
/lgtm |
What type of PR is this?
/kind feature
What this PR does / why we need it:
This PR installs CSIDriver and CSINodeInfo CRD's in the local cluster.
Which issue(s) this PR fixes:
Fixes #70791
Special notes for your reviewer:
Does this PR introduce a user-facing change?: