Skip to content

Commit 4964cf7

Browse files
authored
Fix/ssa false (#40)
* chore: bump version to 0.0.25 * fix: SSA false
1 parent ba4f708 commit 4964cf7

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

docusaurus/data/version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is automatically updated by GitHub Actions
33
# Do not manually edit this file
44

5-
version: "0.0.23"
5+
version: "0.0.25"
66
lastUpdated: "2025-10-13"
77
buildNumber: "202510131527"
88
gitCommit: "69e29fd"

go/shim/main.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -553,6 +553,10 @@ func helm_sdkpy_upgrade(handle C.helm_sdkpy_handle, release_name *C.char, chart_
553553
client := action.NewUpgrade(state.cfg)
554554
client.Namespace = state.envs.Namespace()
555555

556+
// Disable server-side apply to avoid field ownership conflicts
557+
// Valid values: "auto", "true", "false"
558+
client.ServerSideApply = "false"
559+
556560
// Set wait strategy
557561
client.WaitStrategy = kube.HookOnlyStrategy
558562

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "helm-sdkpy"
3-
version = "0.0.23"
3+
version = "0.0.25"
44
description = "Python bindings for Helm - The Kubernetes Package Manager"
55
readme = "README.md"
66
requires-python = ">=3.12"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)