Skip to content

Commit bfb8723

Browse files
authored
[internal] update lib-helm and switch to deckhouse api (#98)
Signed-off-by: v.oleynikov <[email protected]>
1 parent 494bf07 commit bfb8723

File tree

25 files changed

+98
-282
lines changed

25 files changed

+98
-282
lines changed

.github/workflows/build_dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111
GOPROXY: ${{ secrets.GOPROXY }}
1212
SOURCE_REPO: ${{ secrets.SOURCE_REPO }}
1313
SOURCE_REPO_SSH_KEY: ${{ secrets.SOURCE_REPO_SSH_KEY }}
14-
BASE_IMAGES_VERSION: "v0.5.6"
14+
BASE_IMAGES_VERSION: "v0.5.8"
1515

1616
on:
1717
#pull_request:

.github/workflows/build_prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
GOPROXY: ${{ secrets.GOPROXY }}
1313
SOURCE_REPO: ${{ secrets.SOURCE_REPO }}
1414
SOURCE_REPO_SSH_KEY: ${{ secrets.SOURCE_REPO_SSH_KEY }}
15-
BASE_IMAGES_VERSION: "v0.5.6"
15+
BASE_IMAGES_VERSION: "v0.5.8"
1616

1717
on:
1818
push:

api/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ The pseudo-tag will be generated automatically.
88
Please note that model changes will NOT BE APPLIED in dependent modules until you rerun go get (the pseudo-tag points to a specific commit).
99
Therefore, it is important to remember to apply go get in all external modules that use this models.
1010

11-
!Also, DO NOT FORGET to update the models when the CRD are changed!
11+
!Also, DO NOT FORGET to update the models when the CRD are changed!

api/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/deckhouse/csi-nfs/api
22

3-
go 1.24.2
3+
go 1.24.4
44

55
require k8s.io/apimachinery v0.32.0
66

api/v1alpha1/module_config.go

Lines changed: 0 additions & 100 deletions
This file was deleted.

api/v1alpha1/register.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,6 @@ func addKnownTypes(scheme *runtime.Scheme) error {
5050
&NFSStorageClass{},
5151
&NFSStorageClassList{},
5252
)
53-
54-
scheme.AddKnownTypes(SchemeGroupVersionMC,
55-
&ModuleConfig{},
56-
&ModuleConfigList{},
57-
)
5853
metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
5954
metav1.AddToGroupVersion(scheme, SchemeGroupVersionMC)
6055
return nil

api/v1alpha1/zz_generated.deepcopy.go

Lines changed: 0 additions & 99 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
-26.2 KB
Binary file not shown.
27.2 KB
Binary file not shown.

hooks/go/020-webhook-certs/webhook-certs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ package hooks_common
1919
import (
2020
"fmt"
2121

22-
tlscertificate "github.com/deckhouse/module-sdk/common-hooks/tls-certificate"
2322
consts "github.com/deckhouse/csi-nfs/hooks/go/consts"
23+
tlscertificate "github.com/deckhouse/module-sdk/common-hooks/tls-certificate"
2424
)
2525

2626
var _ = tlscertificate.RegisterInternalTLSHookEM(tlscertificate.GenSelfSignedTLSHookConf{

0 commit comments

Comments
 (0)