zhoufenqin
zhoufenqin
**Is your feature request related to a problem? Please describe.** When using `spring.cloud.config.uri`, if I rewrite the property in JVM Option or Environment Properties, then the value will overwrite the...
# Problem Build pod may be blocked when the pod is scheduled in different zones When enabling **"Zone Redundant"** in our service, the build pod may be scheduled in different...
In our K8s cluster, we notice that create a builder and wait for it to be ready will cost around 12 mins on average. Not sure which step cost most...
I want to change the container registry for builder images. so I update the builder, and change the builder with a new image tag. It will cost some time to...
When I config a cnb image with blob url, like ``` apiVersion: kpack.io/v1alpha2 kind: Image metadata: name: default.test spec: build: cache: volume: size: 1536Mi source: blob: url: https://xx.file.core.windows.net/bab958c1e4444a409bd8b20a8f12e039/xxx?se=2022-09-08T10%3A12%3A47Z&sp=r&sv=2021-06-08&sr=f&sig=xxx ...... ```...
Env: kpack 0.9.2 k8s If I want to [enable JFR with Native Image](https://www.graalvm.org/22.3/reference-manual/native-image/debugging-and-diagnostics/JFR/), then in the build phase, I will pass a build argument like `BP_NATIVE_IMAGE_BUILD_ARGUMENTS="--no-fallback --enable-monitoring=jfr --enable-monitoring=jvmstat" `. In...
When using this buildpack to build a native image, it will use [paketo-buildpacks/native-image](https://github.com/paketo-buildpacks/native-image) buildpack to run `native-image` command. What if I configure the [Native Build Tools Maven Plugin](https://graalvm.github.io/native-build-tools/latest/maven-plugin.html) in my...
I config `BP_LIVE_RELOAD_ENABLED` env to enable live process reloading, then create a `Procfile` to determine my process type. After that, deploy the app to k8s Procfile: ``` web: watchexec -r...
--- This checklist is used to make sure that common guidelines for a pull request are followed. ### Related command ### General Guidelines - [ ] Have you run `azdev...
I use kpack 0.9.2 and java-native-image. From GraalVM [Debugging and Diagnostics](https://www.graalvm.org/22.3/reference-manual/native-image/debugging-and-diagnostics/) doc, I want to configure heapdump, see the doc: https://www.graalvm.org/22.3/reference-manual/native-image/guides/create-heap-dump/ In build phase, add `BP_NATIVE_IMAGE_BUILD_ARGUMENTS="--enable-monitoring=heapdump"` In runtime phase, I...