-
Notifications
You must be signed in to change notification settings - Fork 4.3k
feat(eks): install helm chart from asset #15899
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
Closed
Closed
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
518fb58
feat(aws-eks): helm chart from asset
9ff5f82
added integration test
6c71d86
Merge branch 'aws:master' into master
pradoz 9be7ff1
Removed comment. Attempting yarn build+test fails due to the circular…
pradoz 82c77d4
added an example to aws-eks/README.md
pradoz df71254
Merge branch 'aws:master' into master
pradoz 742e058
Merge branch 'aws:master' into master
pradoz 9bf0581
Merge branch 'aws:master' into master
pradoz 85d3e69
removed inline s3 policy and extracted download from s3 logic into a …
pradoz af56d2c
Merge branch 'master' of https://github.com/pradoz/aws-cdk
pradoz afcd476
Merge branch 'master' into master
pradoz 22fec44
Merge branch 'master' into master
pradoz e9b806d
Merge branch 'aws:master' into master
pradoz 853f8cf
Merge branch 'aws:master' into master
pradoz 57eafcb
Merge branch 'master' into master
pradoz 7569852
Merge branch 'master' into master
pradoz d68a00e
Merge branch 'master' into master
pradoz f5295a1
Merge branch 'master' into master
pradoz cb0649e
Merge branch 'master' into master
pradoz 99319e5
Merge branch 'master' into master
pradoz 4bb21e4
Merge branch 'master' into master
pradoz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| apiVersion: v1 | ||
| appVersion: "1.0" | ||
| description: A Helm chart for kubernetes | ||
| name: test-chart | ||
| version: 0.0.0 |
Oops, something went wrong.
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.
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 this really necessary? Seems like we can now make this an optional property, and validate that either
chartorchartAssetis used.Also - does
repositoryandversionhave any meaning when using an asset? Should we assert they are not specified when usingchartAsset?Uh oh!
There was an error while loading. Please reload this page.
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 agree with the point on making it an optional property, then validating that either
chartorchartAssetis used.For the second point, I don't believe so. I'll test that assertion out.
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 believe that
repositoryshould beNone, but it would be another feature/issue to support versions forchartAsset. A possible solution would be to create nested file paths in s3, where some path references nested directories to scan for a specified version number.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 don't see this change...am I missing something? We also need to validate the neither
repositorynorversionis used ifchartAssetis defined.