-
Notifications
You must be signed in to change notification settings - Fork 124
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
Update the EKS blueprints module version in use to release v4.31 #731
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AlexandreBrown
approved these changes
May 9, 2023
AlexandreBrown
approved these changes
May 9, 2023
ryansteakley
approved these changes
May 9, 2023
surajkota
requested changes
May 9, 2023
tests/e2e/utils/auto-efs-setup.py
Outdated
@@ -586,6 +592,14 @@ def footer(): | |||
help=f"Specify the path to the source files if different. Default is set to empty.", | |||
required=False, | |||
) | |||
SETUP_FOR_TERRAFORM_DEFAULT = False | |||
parser.add_argument( | |||
"--setup-for-terraform", |
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.
- Can we do
--skip-driver-installation
instead of--setup-for-terraform
, anyone with driver installed on existing cluster can use this flag - Also, should we remove
verify_prerequisites
? e.g. eksctl not needed if driver installation is being skipped - Update the docs reflecting this change
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
AlexandreBrown
approved these changes
May 10, 2023
surajkota
approved these changes
May 10, 2023
rrrkharse
added a commit
to rrrkharse/kubeflow-manifests
that referenced
this pull request
May 11, 2023
…labs#731) - Updated the EKS Blueprints module version in use to v4.31, which contains the updated permissions fix for the EFS CSI driver to work correctly with Kubeflow. Details [here](aws-ia/terraform-aws-eks-blueprints#1581). - Added the `--skip-driver-installation` flag to the EFS auto setup script as a temporary workaround for the missing full Terraform EFS add-on support By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
jsitu777
pushed a commit
to jsitu777/kubeflow-manifests
that referenced
this pull request
Jun 27, 2023
…labs#731) - Updated the EKS Blueprints module version in use to v4.31, which contains the updated permissions fix for the EFS CSI driver to work correctly with Kubeflow. Details [here](aws-ia/terraform-aws-eks-blueprints#1581). - Added the `--skip-driver-installation` flag to the EFS auto setup script as a temporary workaround for the missing full Terraform EFS add-on support By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Which issue is resolved by this Pull Request:
Resolves #717
Description of your changes:
--skip-driver-installation
flag to the EFS auto setup script as a temporary workaround for the missing full Terraform EFS add-on supportTesting:
Tested vanilla Kubeflow with Terraform + modified EFS auto setup script.
Testing the new flag
With flag:
Without flag:
Error during script is due to resource contention with the existing Terraform setup, however all steps run as expected when the flag is not provided.
Testing notebook dynamic provisioning
Notebook yaml after provisioning:
Notebook volume PVC after provisioning:
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.