From 6de90ac5ac6e20d913806d15ce77be3082076cf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Wed, 11 Mar 2026 17:08:33 +0400 Subject: [PATCH] chore: python runtime v0.1.2 + operator v0.1.28 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - context.go: python3.11 runtime → v0.1.2 (server.py с JSON для всех методов) - operator.yaml: v0.1.28 --- deployments/k8s/operator.yaml | 2 +- internal/builder/context.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deployments/k8s/operator.yaml b/deployments/k8s/operator.yaml index 1ef320c..a66eaef 100644 --- a/deployments/k8s/operator.yaml +++ b/deployments/k8s/operator.yaml @@ -72,7 +72,7 @@ spec: containers: - name: operator # При обновлении версии оператора — менять тег здесь (не latest!) - image: naeel/sless-operator:v0.1.27 + image: naeel/sless-operator:v0.1.28 # Always — чтобы всегда тянуть по точному тегу (не кешировать старый) imagePullPolicy: Always ports: diff --git a/internal/builder/context.go b/internal/builder/context.go index 5cccf0d..5ce4387 100644 --- a/internal/builder/context.go +++ b/internal/builder/context.go @@ -66,7 +66,7 @@ func PrepareContext(zipData []byte, runtime string) (*bytes.Buffer, error) { func runtimeBaseImage(runtime string) (string, error) { switch runtime { case "python3.11": - return "naeel/sless-runtime-python3.11:v0.1.1", nil + return "naeel/sless-runtime-python3.11:v0.1.2", nil case "nodejs20": return "naeel/sless-runtime-nodejs20:v0.1.2", nil case "go1.23":