Morlay
Morlay
@gaearon Thanks for your explanation. the final stage is same as i expect. I have switch to using `jsx-runtime` successfully when 16.4 landed. Just confused by the `createElement` fallback. We...
> Your link to babel is something completely different, and I think this is a huge security risk `@babel/runtime-corejs3/{core-js,core-js-stable}` just a wrap of `core-js-pure`
@Dentrax once you create builder, the KUBECONFIG will be stored in the Endpoint so you could recreate it by `KUBECONFIG=~/.kube/config-xxx.yaml docker buildx create`. this lock here just want to avoid...
@nickatsegment I think the feature already supported with `KUBECONFIG=~/.kube/config-xxx.yaml docker buildx create` (only need when buildx create) could you help check and close this issue ?
Without new syntax, we could start to do validation just with a hidden field `__schema__`. https://github.com/jsonnetmod/types ```jsonnet local t = import 'github.com/jsonnetmod/types/t.libsonnet'; local Meta = { __schema__:: { type: 'object',...
JSONNET is widely used in k8s community. Recently, I'm moving to JSONNET from Helm YAML templates. JSONNET is very cool data templates, it save me from Helm YAML templates. However,...
@sbarzowski https://github.com/jsonnetmod/types i already passed JSON schema test cases of draft7 & draft6 😂, other versions could convert to bump. totally agree with drop ref feature. pattern validation need `std.regexMatch`,...
if the Proxy Cache support base path could resolve this. `${HARBOR}${BASE_PATH}/${IMAGE}` => `${HUB}${BASE_PATH}/${IMAGE}` ``` // new project as Proxy Cache in HARBOR ${HARBOR}/library: proxy_cache("docker.io", "/library") ${HARBOR}/library/nginx:latest => docker.io/library/nginx:latest ``` When...
@flixpae just a suggestion. v2.1 have a new feature `Proxy Cache` (i renamed it). i think if it support to configure `BASE_PATH` could solve this issue.
Proxy cache could not be used in `registry-mirror`. i think we only pull image with a path prefix. @flixpae for your usage. First create a proxy cache project `library` as...