-
Notifications
You must be signed in to change notification settings - Fork 11
fix: change buildpack, builder and stack ids #47
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
Conversation
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.
Looking good, just small intendation nits.
Springboot from the merged PR #46 should be included in this PR as well
Instead of using `com.redhat.faas`, these ids should be prefixed `dev.boson`. Fixes: #42 Signed-off-by: Lance Ball <[email protected]>
ef1478c
to
dcfcd61
Compare
@zroubalik thanks for the review. I've addressed your points. |
Signed-off-by: Lance Ball <[email protected]>
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.
LGTM, a coment on Pull Policy being added
$(PACK_CMD) create-builder $(QUARKUS_JVM_BUILDER_REPO):$(VERSION_TAG) --config $$TMP_BLDRS/quarkus-jvm.toml && \ | ||
$(PACK_CMD) create-builder $(QUARKUS_NATIVE_BUILDER_REPO):$(VERSION_TAG) --config $$TMP_BLDRS/quarkus-native.toml && \ | ||
$(PACK_CMD) create-builder $(SPRINGBOOT_BUILDER_REPO):$(VERSION_TAG) --config $$TMP_BLDRS/springboot.toml -v && \ | ||
$(PACK_CMD) create-builder --pull-policy=never $(NODEJS_BUILDER_REPO):$(VERSION_TAG) --config $$TMP_BLDRS/node.toml && \ |
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 am curious why--pull-policy=never
is being added?
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 did this originally because, when building with new stack IDs, pack
was pulling the images from quay.io that had the old IDs. I think, in general, since all of the images are being versioned published together, it's probably best to never pull images during a build, but only use the images that have just been built.
Instead of using
com.redhat.faas
, these ids should be prefixeddev.boson
.Fixes: #42
Signed-off-by: Lance Ball [email protected]