From e9cbfbcb8abcbddad0476c66d259dba0d0e89907 Mon Sep 17 00:00:00 2001 From: Stanislav Khlud Date: Wed, 22 May 2024 08:26:49 +0700 Subject: [PATCH] Make default for `default_entry` for `K8SDefaultSettings` use absolute path --- CHANGELOG.md | 3 +++ saritasa_invocations/_config.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f868f2e..18e1f6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ We follow [Semantic Versions](https://semver.org/). ## unreleased +- Make default for `default_entry` for `K8SDefaultSettings` use absolute path +according to [specs](https://github.com/buildpacks/spec/blob/main/platform.md#launch) + ## 1.1.0 - Fix `git.blame-copy` in case if merge conflict between files occurs. diff --git a/saritasa_invocations/_config.py b/saritasa_invocations/_config.py index a30b15c..816c8c7 100644 --- a/saritasa_invocations/_config.py +++ b/saritasa_invocations/_config.py @@ -294,7 +294,7 @@ class K8SDefaultSettings: "--no-headers --output jsonpath='{{.items[0].metadata.name}}'" ) default_component: str = "backend" - default_entry: str = "cnb/lifecycle/launcher bash" + default_entry: str = "/cnb/lifecycle/launcher bash" python_shell: str = "shell_plus" health_check: str = "health_check" secret_file_path_in_pod: str | None = None