| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
There was a problem hiding this comment.
Nice init improvements 👏👏
✅ Tested with the LocalStack changes on macOS using:
I didn't test the K8 part.
(For local RIE testing, I had to change the init version back to v0.1.27-pre such that the installer does not fail.)
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Motivation
DNS
The DNS rewrite logic was inactive since localstack/localstack-ext#2029.
With the removal we save binary space and reduce code complexity.
File system permissions
The approach to run chmod on /var/task, /tmp and /opt (even though some of them are conditional) taken with #27 has some issues, especially for startup performance with prebuild lambda images. Since with chmod, all the files in the directories (which change) will need to be copied into the upper layer in overlay2, this operation can take an significant amount of time to complete, which will reduce startup time drastically.
We should let LocalStack decide when to apply this logic, and when we can avoid it.
Changes