-
Notifications
You must be signed in to change notification settings - Fork 64
✨ Modify ClusterExtension to use Helm under the hood to apply contents into the cluster #846
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
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
4785ca6
Helm POC rebase-a-thon
tmshort cd42513
Unpack Image (#811)
dtfranz 7a79d1a
✨ OPRUN-3293 Fixes several unit tests - not cache ones (#831)
bentito 6a48d14
Fix e2e (#843)
varshaprasad96 f91bac0
Make goreleaser build unpack
bentito 7bf93fa
Rm commented code
bentito 869b7a3
Rebase required changes
bentito e34641b
Cleanups (#854)
varshaprasad96 775a812
Expand comments in Dockerfile
bentito 74b79be
Address Reviews
varshaprasad96 e3b6fb7
Back out packagerrors
bentito 5278c41
Helm POC e2e fixes (#870)
dtfranz 19ae03f
Fix defer location (#883)
dtfranz e2d0a3c
Remove BundleDeployments gathering from e2e's gatherArtifacts (#886)
dtfranz b993945
Address reviews (#887)
varshaprasad96 04df6fb
🌱 Proposed way to unskip some tests (#874)
bentito 2402bb6
Revert goreleaser to use buildx
bentito 1c5192a
Revert all of goreleaser to use buildx
bentito eafc251
Revert errorf->printf & rm some logging in tests
bentito 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,21 @@ | ||
# Note: This dockerfile does not build the binaries | ||
# required and is intended to be built only with the | ||
# 'make build' or 'make release' targets. | ||
# Stage 1: | ||
FROM gcr.io/distroless/static:debug-nonroot AS builder | ||
|
||
# Stage 2: | ||
FROM gcr.io/distroless/static:nonroot | ||
|
||
# Grab the cp binary so we can cp the unpack | ||
# binary to a shared volume in the bundle image (rukpak library needs it) | ||
COPY --from=builder /busybox/cp /cp | ||
|
||
WORKDIR / | ||
|
||
COPY manager manager | ||
COPY unpack unpack | ||
|
||
EXPOSE 8080 | ||
|
||
USER 65532:65532 | ||
|
||
ENTRYPOINT ["/manager"] |
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.