Skip to content
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

Allow LocalStack specific configuration of chmod on startup, remove DNS logic #34

Merged
merged 4 commits into from
Mar 12, 2024

Conversation

dfangl
Copy link
Member

@dfangl dfangl commented Mar 12, 2024

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

  • Remove DNS related logic and dependencies
  • Add configuration for which folders to run chmod on, and with which mode

Copy link
Member

@joe4dev joe4dev left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice init improvements 👏👏

  • The configurable chmod paths give us more flexibility on the LocalStack side with a sensible noops default [] 👍
  • Good to get the DNS cleanup done 🧹

✅ Tested with the LocalStack changes on macOS using:

  • tests.aws.services.lambda_.test_lambda.TestLambdaBehavior.test_runtime_introspection_x86 (with + without pre-building)
  • tests.aws.services.lambda_.test_lambda.TestLambdaBehavior.test_runtime_introspection_arm
  • tests.aws.services.lambda_.test_lambda_developer_tools.TestHotReloading.test_hot_reloading (requires longer sleep on macOS)
  • tests.aws.services.lambda_.test_lambda.TestLambdaBehavior.test_lambda_init_environment => requires extra snapshot verify skip for "$..Payload.environment.LOCALSTACK_CHMOD_PATHS",

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.)

@dfangl dfangl merged commit 28d6661 into localstack Mar 12, 2024
1 check passed
@dfangl dfangl deleted the chmod-flag branch March 12, 2024 14:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants