Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
9d97c97
feat: deployment backend prototype based on Nelm
ilya-lesikov Apr 25, 2025
f086a5f
wip
ilya-lesikov Apr 29, 2025
b32ad12
wip
ilya-lesikov May 27, 2025
034402a
feat: go mod tidy
Jun 4, 2025
66c15cb
feat: add GetReleaseLabels method to NelmClient for YAML representati…
Jun 4, 2025
1bb6d57
fix: remove redundant assignment of commonOptions in Init function
Jun 4, 2025
bafe6a2
fix: replace fmt.Printf with logger Info method in InfoBlock implemen…
Jun 4, 2025
7d51597
refactor: update NelmClient to use common options and remove NelmLogg…
Jun 5, 2025
fb5a8b8
fix: update GetReleaseLabels method to retrieve specific label values…
Jun 5, 2025
ab43d76
fix: improve label handling in NelmClient and implement GetReleaseVal…
Jun 5, 2025
c386c19
feat: add comprehensive tests for NelmClient methods including releas…
Jun 5, 2025
578bb6d
feat: add NelmActions interface and refactor NelmClient to use it for…
Jun 5, 2025
a41014d
docs: add comments to NewNelmClient function for better clarity on it…
Jun 5, 2025
a3fdb96
fix: log warning for empty release names in ListReleasesNames method
Jun 5, 2025
c1e39d0
refactor: update nelm_test.go and nelm.go to improve type handling an…
Jun 5, 2025
7c1c6e1
fix: enhance logging for empty release names in ListReleasesNames method
Jun 5, 2025
eaf3002
refactor: remove unnecessary check for empty release names in ListRel…
Jun 5, 2025
1c1c1cf
refactor: optimize resource string building in Render method
Jun 5, 2025
497e3c6
refactor: simplify NewNelmClient by removing actions parameter
Jun 6, 2025
af9368a
fix: update default logging in NewNelmClient to use DefaultNull
Jun 6, 2025
2921f5b
feat: add support for Nelm client in Helm factory
Jun 6, 2025
54a6093
bump
ldmonster Jun 24, 2025
80226f1
add logger
ldmonster Jun 24, 2025
9b421fa
do not fill default params
ldmonster Jun 24, 2025
d3f6fe8
fix render output in stdout
ldmonster Jun 24, 2025
6689ecf
fix logs
ldmonster Jun 24, 2025
419521a
add trace
ldmonster Jun 24, 2025
b3472de
fix trace level when debug
ldmonster Jun 25, 2025
0631191
add trace handling
ldmonster Jun 25, 2025
7d497b4
add traces
ldmonster Jun 26, 2025
21f9455
bump
ldmonster Jun 27, 2025
58e0304
bump
ldmonster Jul 1, 2025
0226112
wip
ilya-lesikov Jul 14, 2025
5c7114d
wip
ilya-lesikov Jul 14, 2025
c887456
wip
ilya-lesikov Jul 14, 2025
4f40186
wip
ilya-lesikov Jul 14, 2025
61a5e5d
wip
ilya-lesikov Jul 14, 2025
e021eb5
wip
ilya-lesikov Jul 14, 2025
36869c5
wip
ilya-lesikov Jul 14, 2025
d998279
wip
ilya-lesikov Jul 14, 2025
5f6bb14
wip
ilya-lesikov Jul 15, 2025
4c463c5
feat: add support for extra annotations in Helm client and nelm imple…
Jul 16, 2025
ca74335
fix: formatting after cherry-pick resolution
Jul 16, 2025
3efdff2
fix: golangci-lint improve
Jul 16, 2025
744c349
fix: disable nolintlint in golangci-lint configuration
Jul 16, 2025
beb2775
add nologs to actions
ldmonster Jul 23, 2025
4b999a5
wip
ilya-lesikov Jul 25, 2025
6cc8cec
fix: rebase
Jul 30, 2025
0e46f18
fix: use Release.StorageLabels in nelm
Aug 5, 2025
36aab49
fix: streamline UpgradeRelease by removing redundant moduleChecksum h…
Aug 5, 2025
e1156b6
fix: update HelmModule to store LabelMaintenanceNoResourceReconciliat…
Aug 5, 2025
c9ba65c
fix: update dependencies for nelm and kubedog to latest versions
Aug 11, 2025
efea77d
fix: rename NoLogs to NoPodLogs for clarity in UpgradeRelease and Del…
Aug 11, 2025
b370b52
fix: add werf.io/track-termination-mode annotation for nelm
Aug 20, 2025
af5bc1c
fix: comment out werf.io/track-termination-mode annotation for nelm
Aug 20, 2025
ee8d62e
fix: restore werf.io/track-termination-mode annotation for nelm
Aug 20, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ linters:
- ineffassign
- misspell
- musttag
- nolintlint
# - nolintlint
- nonamedreturns
- prealloc
- revive
Expand Down
85 changes: 61 additions & 24 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,19 @@ require (
github.com/go-openapi/loads v0.19.5
github.com/go-openapi/spec v0.19.8
github.com/go-openapi/strfmt v0.19.5
github.com/go-openapi/swag v0.22.5
github.com/go-openapi/swag v0.23.0
github.com/go-openapi/validate v0.19.12
github.com/goccy/go-graphviz v0.2.9
github.com/gofrs/uuid/v5 v5.3.2
github.com/google/cel-go v0.17.8
github.com/gookit/color v1.5.4 // indirect
github.com/hashicorp/go-multierror v1.1.1
github.com/kennygrant/sanitize v1.2.4
github.com/onsi/gomega v1.37.0
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.10.0
github.com/tidwall/gjson v1.18.0
github.com/werf/nelm v1.10.0
google.golang.org/protobuf v1.36.5
gopkg.in/alecthomas/kingpin.v2 v2.2.6
gopkg.in/yaml.v3 v3.0.1
Expand All @@ -36,88 +38,106 @@ require (
k8s.io/kubectl v0.30.3
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8
sigs.k8s.io/controller-runtime v0.18.7
sigs.k8s.io/kustomize/kyaml v0.14.3-0.20230601165947-6ce0bf390ce3
sigs.k8s.io/kustomize/kyaml v0.16.0
sigs.k8s.io/yaml v1.4.0
)

require (
github.com/ohler55/ojg v1.26.7 // indirect
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
go.opentelemetry.io/otel/metric v1.35.0 // indirect
)

require (
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
github.com/BurntSushi/toml v1.3.2 // indirect
github.com/DataDog/gostackparse v0.7.0 // indirect
github.com/MakeNowJust/heredoc v1.0.0 // indirect
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver/v3 v3.2.1 // indirect
github.com/Masterminds/semver/v3 v3.3.1 // indirect
github.com/Masterminds/sprig/v3 v3.2.3 // indirect
github.com/Masterminds/squirrel v1.5.4 // indirect
github.com/Masterminds/vcs v1.13.3 // indirect
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d // indirect
github.com/alecthomas/chroma/v2 v2.15.0 // indirect
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230305170008-8188dc5388df // indirect
github.com/asaskevich/govalidator v0.0.0-20200428143746-21a406dcc535 // indirect
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
github.com/avelino/slugify v0.0.0-20180501145920-855f152bd774 // indirect
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
github.com/aymanbagabas/go-udiff v0.2.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/chai2010/gettext-go v1.0.2 // indirect
github.com/chanced/caps v1.0.2 // indirect
github.com/containerd/containerd v1.7.27 // indirect
github.com/containerd/errdefs v0.3.0 // indirect
github.com/containerd/log v0.1.0 // indirect
github.com/containerd/platforms v0.2.1 // indirect
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.6 // indirect
github.com/cyphar/filepath-securejoin v0.2.5 // indirect
github.com/disintegration/imaging v1.6.2 // indirect
github.com/distribution/reference v0.6.0 // indirect
github.com/djherbis/buffer v1.2.0 // indirect
github.com/djherbis/nio/v3 v3.0.1 // indirect
github.com/dlclark/regexp2 v1.11.4 // indirect
github.com/docker/cli v27.1.1+incompatible // indirect
github.com/docker/distribution v2.8.3+incompatible // indirect
github.com/docker/docker v27.1.1+incompatible // indirect
github.com/docker/docker-credential-helpers v0.7.0 // indirect
github.com/docker/docker-credential-helpers v0.8.1 // indirect
github.com/docker/go-connections v0.5.0 // indirect
github.com/docker/go-metrics v0.0.1 // indirect
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
github.com/emicklei/go-restful/v3 v3.11.2 // indirect
github.com/evanphx/json-patch v5.9.0+incompatible // indirect
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect
github.com/fatih/camelcase v1.0.0 // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/fatih/color v1.16.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/flopp/go-findfont v0.1.0 // indirect
github.com/fluxcd/flagger v1.36.1 // indirect
github.com/fogleman/gg v1.3.0 // indirect
github.com/fvbommel/sortorder v1.1.0 // indirect
github.com/go-errors/errors v1.4.2 // indirect
github.com/go-errors/errors v1.5.1 // indirect
github.com/go-git/go-git/v5 v5.12.0 // indirect
github.com/go-gorp/gorp/v3 v3.1.0 // indirect
github.com/go-logr/logr v1.4.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-openapi/analysis v0.19.10 // indirect
github.com/go-openapi/errors v0.19.7 // indirect
github.com/go-openapi/jsonpointer v0.19.6 // indirect
github.com/go-openapi/jsonreference v0.20.2 // indirect
github.com/go-openapi/jsonpointer v0.21.0 // indirect
github.com/go-openapi/jsonreference v0.21.0 // indirect
github.com/go-openapi/runtime v0.19.16 // indirect
github.com/go-stack/stack v1.8.0 // indirect
github.com/gobwas/glob v0.2.3 // indirect
github.com/goccy/go-yaml v1.15.23 // indirect
github.com/gofrs/flock v0.8.1 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/gojuno/minimock/v3 v3.4.5 // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/btree v1.0.1 // indirect
github.com/google/gnostic-models v0.6.8 // indirect
github.com/google/btree v1.1.2 // indirect
github.com/google/gnostic-models v0.6.9-0.20230804172637-c7be7c783f49 // indirect
github.com/google/go-cmp v0.7.0 // indirect
github.com/google/go-containerregistry v0.17.0 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gorilla/mux v1.8.1 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/gorilla/websocket v1.5.1 // indirect
github.com/gosuri/uitable v0.0.4 // indirect
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hofstadter-io/cinful v1.0.0 // indirect
github.com/huandu/xstrings v1.4.0 // indirect
github.com/imdario/mergo v0.3.16 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/itchyny/gojq v0.12.17 // indirect
github.com/itchyny/timefmt-go v0.1.6 // indirect
github.com/jedib0t/go-pretty/v6 v6.5.5 // indirect
github.com/jellydator/ttlcache/v3 v3.1.1 // indirect
github.com/jmoiron/sqlx v1.3.5 // indirect
github.com/jonboulle/clockwork v0.4.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
Expand All @@ -127,6 +147,7 @@ require (
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
github.com/lib/pq v1.10.9 // indirect
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
github.com/looplab/fsm v1.0.2 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
Expand All @@ -148,56 +169,72 @@ require (
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.1.0 // indirect
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
github.com/pjbgf/sha1cd v0.3.0 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/prometheus/client_golang v1.20.5 // indirect
github.com/prometheus/client_model v0.6.1 // indirect
github.com/prometheus/common v0.55.0 // indirect
github.com/prometheus/procfs v0.15.1 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/rubenv/sql-migrate v1.5.2 // indirect
github.com/rubenv/sql-migrate v1.6.1 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/samber/lo v1.49.1 // indirect
github.com/shopspring/decimal v1.3.1 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/spf13/cast v1.6.0 // indirect
github.com/spf13/cobra v1.9.1 // indirect
github.com/spf13/pflag v1.0.6 // indirect
github.com/stoewer/go-strcase v1.2.0 // indirect
github.com/tetratelabs/wazero v1.8.1 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
github.com/tidwall/sjson v1.2.5 // indirect
github.com/wI2L/jsondiff v0.5.0 // indirect
github.com/werf/3p-helm v0.0.0-20250731134240-58a9eff8ec5b // indirect
github.com/werf/common-go v0.0.0-20250520111308-b0eda28dde0d // indirect
github.com/werf/kubedog v0.13.1-0.20250801120242-28c356abdc84 // indirect
github.com/werf/lockgate v0.1.1 // indirect
github.com/werf/logboek v0.6.1 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
github.com/xlab/treeprint v1.2.0 // indirect
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
go.mongodb.org/mongo-driver v1.5.4 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0 // indirect
go.opentelemetry.io/otel v1.35.0
go.opentelemetry.io/otel/trace v1.35.0 // indirect
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect
go.starlark.net v0.0.0-20231121155337-90ade8b19d09 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.36.0 // indirect
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
golang.org/x/image v0.21.0 // indirect
golang.org/x/mod v0.21.0 // indirect
golang.org/x/net v0.38.0 // indirect
golang.org/x/oauth2 v0.21.0 // indirect
golang.org/x/sync v0.12.0 // indirect
golang.org/x/sys v0.32.0 // indirect
golang.org/x/term v0.30.0 // indirect
golang.org/x/text v0.23.0 // indirect
golang.org/x/time v0.11.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20231120223509-83a465c0220f // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240325203815-454cdb8f5daa // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 // indirect
google.golang.org/grpc v1.59.0 // indirect
google.golang.org/grpc v1.62.1 // indirect
gopkg.in/evanphx/json-patch.v5 v5.8.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/robfig/cron.v2 v2.0.0-20150107220207-be2e0b0deed5
gopkg.in/yaml.v2 v2.4.0 // indirect
k8s.io/apiextensions-apiserver v0.30.11 // indirect
k8s.io/apiserver v0.30.11 // indirect
k8s.io/component-base v0.30.11 // indirect
k8s.io/klog v1.0.0 // indirect
k8s.io/klog/v2 v2.130.1 // indirect
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
oras.land/oras-go v1.2.6 // indirect
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
sigs.k8s.io/kustomize/api v0.13.5-0.20230601165947-6ce0bf390ce3 // indirect
sigs.k8s.io/kustomize/api v0.16.0 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
)

Expand Down
Loading
Loading