Skip to content

Commit dd991b6

Browse files
authored
Merge pull request #553 from slok/slok/fenix
Add ApplyConfig utils for kubernetes lib clients
2 parents feaaccc + b1f5cca commit dd991b6

File tree

19 files changed

+800
-9
lines changed

19 files changed

+800
-9
lines changed

.github/workflows/helmrelease.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
release:
1212
runs-on: ubuntu-latest
1313
# Only on helm tags.
14-
if: startsWith(github.ref, 'refs/tags/helm-')
14+
if: startsWith(github.ref, 'refs/tags/v')
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
## Added
6+
7+
- Add `ApplyConfig` utils for Kubernetes lib clients.
8+
59
### Changed
610

711
- Update to Go 1.24.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ require (
2121
k8s.io/api v0.32.3
2222
k8s.io/apimachinery v0.32.3
2323
k8s.io/client-go v0.32.3
24+
sigs.k8s.io/structured-merge-diff/v4 v4.6.0
2425
)
2526

2627
require (
@@ -91,6 +92,5 @@ require (
9192
sigs.k8s.io/controller-runtime v0.20.3 // indirect
9293
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
9394
sigs.k8s.io/randfill v1.0.0 // indirect
94-
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
9595
sigs.k8s.io/yaml v1.4.0 // indirect
9696
)

pkg/kubernetes/gen/applyconfiguration/internal/internal.go

Lines changed: 46 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/kubernetes/gen/applyconfiguration/sloth/v1/alert.go

Lines changed: 53 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/kubernetes/gen/applyconfiguration/sloth/v1/alerting.go

Lines changed: 71 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)