Skip to content

Commit

Permalink
Use k8s 1.29 client libs
Browse files Browse the repository at this point in the history
Signed-off-by: Tamal Saha <[email protected]>
  • Loading branch information
tamalsaha committed Jan 10, 2024
1 parent 1eeee8e commit 227a5ab
Show file tree
Hide file tree
Showing 679 changed files with 38,584 additions and 8,965 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ BIN := installer

CRD_OPTIONS ?= "crd:crdVersions={v1}"
# https://github.com/appscodelabs/gengo-builder
CODE_GENERATOR_IMAGE ?= ghcr.io/appscode/gengo:release-1.25
CODE_GENERATOR_IMAGE ?= ghcr.io/appscode/gengo:release-1.29
API_GROUPS ?= installer:v1alpha1

# This version-strategy uses git tags to set the version string
Expand Down
199 changes: 176 additions & 23 deletions charts/kubedb-autoscaler/values.openapiv3_schema.yaml

Large diffs are not rendered by default.

194 changes: 174 additions & 20 deletions charts/kubedb-crd-manager/values.openapiv3_schema.yaml

Large diffs are not rendered by default.

199 changes: 176 additions & 23 deletions charts/kubedb-dashboard/values.openapiv3_schema.yaml

Large diffs are not rendered by default.

199 changes: 176 additions & 23 deletions charts/kubedb-ops-manager/values.openapiv3_schema.yaml

Large diffs are not rendered by default.

199 changes: 176 additions & 23 deletions charts/kubedb-provider-aws/values.openapiv3_schema.yaml

Large diffs are not rendered by default.

199 changes: 176 additions & 23 deletions charts/kubedb-provider-azure/values.openapiv3_schema.yaml

Large diffs are not rendered by default.

199 changes: 176 additions & 23 deletions charts/kubedb-provider-gcp/values.openapiv3_schema.yaml

Large diffs are not rendered by default.

199 changes: 176 additions & 23 deletions charts/kubedb-provisioner/values.openapiv3_schema.yaml

Large diffs are not rendered by default.

199 changes: 176 additions & 23 deletions charts/kubedb-schema-manager/values.openapiv3_schema.yaml

Large diffs are not rendered by default.

199 changes: 176 additions & 23 deletions charts/kubedb-ui-server/values.openapiv3_schema.yaml

Large diffs are not rendered by default.

199 changes: 176 additions & 23 deletions charts/kubedb-webhook-server/values.openapiv3_schema.yaml

Large diffs are not rendered by default.

1,488 changes: 1,311 additions & 177 deletions charts/kubedb/values.openapiv3_schema.yaml

Large diffs are not rendered by default.

218 changes: 184 additions & 34 deletions charts/prepare-cluster/values.openapiv3_schema.yaml

Large diffs are not rendered by default.

81 changes: 43 additions & 38 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,74 +1,79 @@
module kubedb.dev/installer

go 1.18
go 1.21.5

require (
github.com/Masterminds/semver/v3 v3.2.1
github.com/Masterminds/sprig/v3 v3.2.2
github.com/google/go-containerregistry v0.13.0
github.com/Masterminds/sprig/v3 v3.2.3
github.com/google/go-containerregistry v0.17.0
github.com/google/gofuzz v1.2.0
github.com/spf13/pflag v1.0.5
github.com/yudai/gojsondiff v1.0.0
gomodules.xyz/go-sh v0.1.0
gomodules.xyz/semvers v0.0.2
k8s.io/api v0.25.3
k8s.io/apimachinery v0.25.3
k8s.io/klog/v2 v2.80.1
kmodules.xyz/client-go v0.25.43
kmodules.xyz/go-containerregistry v0.0.11
k8s.io/api v0.29.0
k8s.io/apimachinery v0.29.0
k8s.io/klog/v2 v2.110.1
kmodules.xyz/client-go v0.29.6
kmodules.xyz/go-containerregistry v0.0.12
kmodules.xyz/schema-checker v0.4.1
sigs.k8s.io/yaml v1.3.0
stash.appscode.dev/installer v0.12.2-0.20231017061853-9f449ac4b066
sigs.k8s.io/yaml v1.4.0
stash.appscode.dev/installer v0.12.2-0.20240102041815-f6f313210a2e
)

require (
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0 // indirect
github.com/containerd/stargz-snapshotter/estargz v0.12.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/docker/cli v20.10.20+incompatible // indirect
github.com/docker/distribution v2.8.1+incompatible // indirect
github.com/docker/docker v20.10.20+incompatible // indirect
github.com/containerd/stargz-snapshotter/estargz v0.14.3 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/docker/cli v24.0.0+incompatible // indirect
github.com/docker/distribution v2.8.2+incompatible // indirect
github.com/docker/docker v24.0.5+incompatible // indirect
github.com/docker/docker-credential-helpers v0.7.0 // indirect
github.com/go-logr/logr v1.2.3 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/fatih/structs v1.1.0 // indirect
github.com/go-logr/logr v1.3.0 // indirect
github.com/gobeam/stringy v0.0.5 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/huandu/xstrings v1.3.2 // indirect
github.com/imdario/mergo v0.3.13 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/uuid v1.4.0 // indirect
github.com/huandu/xstrings v1.3.3 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/compress v1.15.11 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/mitchellh/copystructure v1.1.1 // indirect
github.com/klauspost/compress v1.17.0 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/reflectwalk v1.0.1 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.1.0-rc2 // indirect
github.com/opencontainers/image-spec v1.1.0-rc3 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/sergi/go-diff v1.2.0 // indirect
github.com/shopspring/decimal v1.2.0 // indirect
github.com/sirupsen/logrus v1.9.0 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/vbatts/tar-split v0.11.2 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/vbatts/tar-split v0.11.3 // indirect
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/net v0.19.0 // indirect
golang.org/x/sync v0.4.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/text v0.14.0 // indirect
gomodules.xyz/encoding v0.0.7 // indirect
gomodules.xyz/jsonpath v0.0.2 // indirect
gomodules.xyz/mergo v0.3.13 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
k8s.io/utils v0.0.0-20221012122500-cfd413dd9e85 // indirect
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
k8s.io/utils v0.0.0-20231127182322-b307cd553661 // indirect
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
)

replace github.com/imdario/mergo => github.com/imdario/mergo v0.3.6

replace gopkg.in/yaml.v2 => gopkg.in/yaml.v2 v2.3.0
replace (
github.com/Masterminds/sprig/v3 => github.com/gomodules/sprig/v3 v3.2.3-0.20220405051441-0a8a99bac1b8
github.com/imdario/mergo => github.com/imdario/mergo v0.3.6
sigs.k8s.io/yaml => github.com/kmodules/yaml v1.4.1-0.20231224133800-a4e3f1abb174
)
Loading

0 comments on commit 227a5ab

Please sign in to comment.