Skip to content

Commit 563a6a6

Browse files
authored
Merge pull request #241 from gianlucam76/release-0.10
Release 0.10
2 parents ba3e709 + 114dba1 commit 563a6a6

15 files changed

Lines changed: 47 additions & 473 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM golang:1.19 as builder
2+
FROM golang:1.20 as builder
33

44
WORKDIR /workspace
55
# Copy the Go Modules manifests

Makefile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ARCH ?= amd64
2525
OS ?= $(shell uname -s | tr A-Z a-z)
2626
K8S_LATEST_VER ?= $(shell curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)
2727
export CONTROLLER_IMG ?= $(REGISTRY)/$(IMAGE_NAME)
28-
TAG ?= v0.10.1
28+
TAG ?= v0.10.2
2929

3030
# Get cluster-api version and build ldflags
3131
clusterapi := $(shell go list -m sigs.k8s.io/cluster-api)
@@ -79,6 +79,7 @@ CLUSTERCTL := $(TOOLS_BIN_DIR)/clusterctl
7979
KIND := $(TOOLS_BIN_DIR)/kind
8080
KUBECTL := $(TOOLS_BIN_DIR)/kubectl
8181

82+
GOLANGCI_LINT_VERSION := "v1.52.2"
8283

8384
$(CONTROLLER_GEN): $(TOOLS_DIR)/go.mod # Build controller-gen from tools folder.
8485
cd $(TOOLS_DIR); $(GOBUILD) -tags=tools -o $(subst hack/tools/,,$@) sigs.k8s.io/controller-tools/cmd/controller-gen
@@ -89,8 +90,8 @@ $(ENVSUBST): $(TOOLS_DIR)/go.mod # Build envsubst from tools folder.
8990
$(KUSTOMIZE): $(TOOLS_DIR)/go.mod # Build kustomize from tools folder.
9091
cd $(TOOLS_DIR); $(GOBUILD) -tags=tools -o $(BIN_DIR)/kustomize sigs.k8s.io/kustomize/kustomize/v4
9192

92-
$(GOLANGCI_LINT): $(TOOLS_DIR)/go.mod # Build golangci-lint from tools folder.
93-
cd $(TOOLS_DIR); $(GOBUILD) -tags=tools -o $(subst hack/tools/,,$@) github.com/golangci/golangci-lint/cmd/golangci-lint
93+
$(GOLANGCI_LINT): # Build golangci-lint from tools folder.
94+
cd $(TOOLS_DIR); ./get-golangci-lint.sh $(GOLANGCI_LINT_VERSION)
9495

9596
$(SETUP_ENVTEST): $(TOOLS_DIR)/go.mod # Build setup-envtest from tools folder.
9697
cd $(TOOLS_DIR); $(GOBUILD) -tags=tools -o $(subst hack/tools/,,$@) sigs.k8s.io/controller-runtime/tools/setup-envtest
@@ -113,7 +114,7 @@ $(KUBECTL):
113114
chmod +x $@
114115

115116
.PHONY: tools
116-
tools: $(CONTROLLER_GEN) $(ENVSUBST) $(KUSTOMIZE) $(GOLANGCI_LINT) $(SETUP_ENVTEST) $(GOIMPORTS) $(GINKGO) $(CLUSTERCTL) $(KIND) $(KUBECTL) ## build all tools
117+
tools: $(CONTROLLER_GEN) $(ENVSUBST) $(KUSTOMIZE) $(SETUP_ENVTEST) $(GOLANGCI_LINT) $(GOIMPORTS) $(GINKGO) $(CLUSTERCTL) $(KIND) $(KUBECTL) ## build all tools
117118

118119
.PHONY: clean
119120
clean: ## Remove all built tools

config/default/manager_image_patch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ spec:
88
spec:
99
containers:
1010
# Change the value of image field below to your controller image URL
11-
- image: projectsveltos/addon-manager-amd64:v0.10.1
11+
- image: projectsveltos/addon-manager-amd64:v0.10.2
1212
name: manager

config/rbac/role.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,14 @@ rules:
167167
- get
168168
- list
169169
- watch
170+
- apiGroups:
171+
- extension.projectsveltos.io
172+
resources:
173+
- jsonnetsources
174+
verbs:
175+
- get
176+
- list
177+
- watch
170178
- apiGroups:
171179
- extension.projectsveltos.io
172180
resources:

controllers/clusterprofile_controller.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -987,9 +987,7 @@ func (r *ClusterProfileReconciler) getMatchingClusters(ctx context.Context,
987987
}
988988
}
989989

990-
for i := range clusterProfileScope.ClusterProfile.Spec.ClusterRefs {
991-
matchingCluster = append(matchingCluster, clusterProfileScope.ClusterProfile.Spec.ClusterRefs[i])
992-
}
990+
matchingCluster = append(matchingCluster, clusterProfileScope.ClusterProfile.Spec.ClusterRefs...)
993991

994992
return matchingCluster, nil
995993
}

controllers/utils.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ import (
4242
)
4343

4444
//+kubebuilder:rbac:groups=extension.projectsveltos.io,resources=yttsources,verbs=get;list;watch
45+
//+kubebuilder:rbac:groups=extension.projectsveltos.io,resources=jsonnetsources,verbs=get;list;watch
4546
//+kubebuilder:rbac:groups=lib.projectsveltos.io,resources=debuggingconfigurations,verbs=get;list;watch
4647
//+kubebuilder:rbac:groups=apiextensions.k8s.io,resources=customresourcedefinitions,verbs=get;list;watch
4748
//+kubebuilder:rbac:groups=*,resources=*,verbs=get;list;watch;impersonate

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/projectsveltos/addon-manager
22

3-
go 1.19
3+
go 1.20
44

55
require (
66
github.com/Masterminds/semver v1.5.0
@@ -15,7 +15,7 @@ require (
1515
github.com/onsi/ginkgo/v2 v2.9.2
1616
github.com/onsi/gomega v1.27.5
1717
github.com/pkg/errors v0.9.1
18-
github.com/projectsveltos/libsveltos v0.10.1
18+
github.com/projectsveltos/libsveltos v0.10.2
1919
github.com/prometheus/client_golang v1.14.0
2020
github.com/spf13/pflag v1.0.5
2121
golang.org/x/text v0.9.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -551,8 +551,8 @@ github.com/posener/complete v1.2.3/go.mod h1:WZIdtGGp+qx0sLrYKtIRAruyNpv6hFCicSg
551551
github.com/poy/onpar v0.0.0-20200406201722-06f95a1c68e8/go.mod h1:nSbFQvMj97ZyhFRSJYtut+msi4sOY6zJDGCdSc+/rZU=
552552
github.com/poy/onpar v1.1.2 h1:QaNrNiZx0+Nar5dLgTVp5mXkyoVFIbepjyEoGSnhbAY=
553553
github.com/poy/onpar v1.1.2/go.mod h1:6X8FLNoxyr9kkmnlqpK6LSoiOtrO6MICtWwEuWkLjzg=
554-
github.com/projectsveltos/libsveltos v0.10.1 h1:ORGgU+pMA1mivTpx4BxCJuZKSmE6DRbjKgJQpl8OXEI=
555-
github.com/projectsveltos/libsveltos v0.10.1/go.mod h1:E0dOSNerBX7lajgB8G3kXUpBwXYSsqZVkmdtlutmeK4=
554+
github.com/projectsveltos/libsveltos v0.10.2 h1:sbOEWRAiehgyBF2g+gRwBQ+0QMrSnVjkza4xRcSJNnY=
555+
github.com/projectsveltos/libsveltos v0.10.2/go.mod h1:0FsVgUN4K1rQFcUOoJYwIUq+YRNI7B1Ra43ln4sSypE=
556556
github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=
557557
github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso=
558558
github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo=

hack/tools/get-golangci-lint.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
3+
set -euo pipefail
4+
5+
# Define the URL for downloading the golangci-lint archive
6+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(pwd)/bin "$1"

hack/tools/go.mod

Lines changed: 4 additions & 129 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
module github.com/projectsveltos/addon-manager/hack/tools
22

3-
go 1.19
3+
go 1.20
44

55
require (
66
github.com/a8m/envsubst v1.1.0
7-
github.com/golangci/golangci-lint v1.50.1
87
github.com/onsi/ginkgo/v2 v2.9.2
98
golang.org/x/oauth2 v0.6.0
109
k8s.io/client-go v0.26.1
@@ -16,90 +15,42 @@ require (
1615
)
1716

1817
require (
19-
4d63.com/gochecknoglobals v0.1.0 // indirect
2018
cloud.google.com/go/compute v1.14.0 // indirect
2119
cloud.google.com/go/compute/metadata v0.2.3 // indirect
22-
github.com/Abirdcfly/dupword v0.0.7 // indirect
23-
github.com/Antonboom/errname v0.1.7 // indirect
24-
github.com/Antonboom/nilnil v0.1.1 // indirect
2520
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
2621
github.com/BurntSushi/toml v1.2.1 // indirect
27-
github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24 // indirect
28-
github.com/GaijinEntertainment/go-exhaustruct/v2 v2.3.0 // indirect
2922
github.com/MakeNowJust/heredoc v1.0.0 // indirect
3023
github.com/Masterminds/goutils v1.1.1 // indirect
31-
github.com/Masterminds/semver v1.5.0 // indirect
3224
github.com/Masterminds/semver/v3 v3.2.0 // indirect
3325
github.com/Masterminds/sprig/v3 v3.2.3 // indirect
34-
github.com/OpenPeeDeeP/depguard v1.1.1 // indirect
3526
github.com/alessio/shellescape v1.4.1 // indirect
36-
github.com/alexkohler/prealloc v1.0.0 // indirect
37-
github.com/alingse/asasalint v0.0.11 // indirect
3827
github.com/antlr/antlr4/runtime/Go/antlr v1.4.10 // indirect
3928
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a // indirect
40-
github.com/ashanbrown/forbidigo v1.3.0 // indirect
41-
github.com/ashanbrown/makezero v1.1.1 // indirect
4229
github.com/beorn7/perks v1.0.1 // indirect
43-
github.com/bkielbasa/cyclop v1.2.0 // indirect
4430
github.com/blang/semver v3.5.1+incompatible // indirect
4531
github.com/blang/semver/v4 v4.0.0 // indirect
46-
github.com/blizzy78/varnamelen v0.8.0 // indirect
47-
github.com/bombsimon/wsl/v3 v3.3.0 // indirect
48-
github.com/breml/bidichk v0.2.3 // indirect
49-
github.com/breml/errchkjson v0.3.0 // indirect
50-
github.com/butuzov/ireturn v0.1.1 // indirect
5132
github.com/cespare/xxhash/v2 v2.1.2 // indirect
52-
github.com/charithe/durationcheck v0.0.9 // indirect
53-
github.com/chavacava/garif v0.0.0-20220630083739-93517212f375 // indirect
5433
github.com/coredns/caddy v1.1.0 // indirect
5534
github.com/coredns/corefile-migration v1.0.20 // indirect
56-
github.com/curioswitch/go-reassign v0.2.0 // indirect
57-
github.com/daixiang0/gci v0.8.1 // indirect
5835
github.com/davecgh/go-spew v1.1.1 // indirect
59-
github.com/denis-tingaikin/go-header v0.4.3 // indirect
6036
github.com/docker/distribution v2.8.1+incompatible // indirect
6137
github.com/drone/envsubst/v2 v2.0.0-20210730161058-179042472c46 // indirect
6238
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
63-
github.com/esimonov/ifshort v1.0.4 // indirect
64-
github.com/ettle/strcase v0.1.1 // indirect
6539
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
6640
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
6741
github.com/fatih/color v1.15.0 // indirect
68-
github.com/fatih/structtag v1.2.0 // indirect
69-
github.com/firefart/nonamedreturns v1.0.4 // indirect
7042
github.com/fsnotify/fsnotify v1.6.0 // indirect
71-
github.com/fzipp/gocyclo v0.6.0 // indirect
72-
github.com/go-critic/go-critic v0.6.5 // indirect
7343
github.com/go-errors/errors v1.0.1 // indirect
7444
github.com/go-logr/logr v1.2.3 // indirect
7545
github.com/go-logr/zapr v1.2.3 // indirect
7646
github.com/go-openapi/jsonpointer v0.19.6 // indirect
7747
github.com/go-openapi/jsonreference v0.20.1 // indirect
7848
github.com/go-openapi/swag v0.22.3 // indirect
7949
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
80-
github.com/go-toolsmith/astcast v1.0.0 // indirect
81-
github.com/go-toolsmith/astcopy v1.0.2 // indirect
82-
github.com/go-toolsmith/astequal v1.0.3 // indirect
83-
github.com/go-toolsmith/astfmt v1.0.0 // indirect
84-
github.com/go-toolsmith/astp v1.0.0 // indirect
85-
github.com/go-toolsmith/strparse v1.0.0 // indirect
86-
github.com/go-toolsmith/typep v1.0.2 // indirect
87-
github.com/go-xmlfmt/xmlfmt v0.0.0-20191208150333-d5b6f63a941b // indirect
8850
github.com/gobuffalo/flect v1.0.2 // indirect
89-
github.com/gobwas/glob v0.2.3 // indirect
90-
github.com/gofrs/flock v0.8.1 // indirect
9151
github.com/gogo/protobuf v1.3.2 // indirect
9252
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
9353
github.com/golang/protobuf v1.5.3 // indirect
94-
github.com/golangci/check v0.0.0-20180506172741-cfe4005ccda2 // indirect
95-
github.com/golangci/dupl v0.0.0-20180902072040-3e9179ac440a // indirect
96-
github.com/golangci/go-misc v0.0.0-20220329215616-d24fe342adfe // indirect
97-
github.com/golangci/gofmt v0.0.0-20220901101216-f2edd75033f2 // indirect
98-
github.com/golangci/lint-1 v0.0.0-20191013205115-297bf364a8e0 // indirect
99-
github.com/golangci/maligned v0.0.0-20180506175553-b1d89398deca // indirect
100-
github.com/golangci/misspell v0.3.5 // indirect
101-
github.com/golangci/revgrep v0.0.0-20220804021717-745bb2f7c2e6 // indirect
102-
github.com/golangci/unconvert v0.0.0-20180507085042-28b1c447d1f4 // indirect
10354
github.com/google/cel-go v0.12.6 // indirect
10455
github.com/google/gnostic v0.6.9 // indirect
10556
github.com/google/go-cmp v0.5.9 // indirect
@@ -110,48 +61,19 @@ require (
11061
github.com/google/safetext v0.0.0-20220905092116-b49f7bc46da2 // indirect
11162
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
11263
github.com/google/uuid v1.3.0 // indirect
113-
github.com/gordonklaus/ineffassign v0.0.0-20210914165742-4cc7213b9bc8 // indirect
114-
github.com/gostaticanalysis/analysisutil v0.7.1 // indirect
115-
github.com/gostaticanalysis/comment v1.4.2 // indirect
116-
github.com/gostaticanalysis/forcetypeassert v0.1.0 // indirect
117-
github.com/gostaticanalysis/nilerr v0.1.1 // indirect
118-
github.com/hashicorp/errwrap v1.0.0 // indirect
119-
github.com/hashicorp/go-multierror v1.1.1 // indirect
120-
github.com/hashicorp/go-version v1.6.0 // indirect
12164
github.com/hashicorp/hcl v1.0.0 // indirect
122-
github.com/hexops/gotextdiff v1.0.3 // indirect
12365
github.com/huandu/xstrings v1.3.3 // indirect
12466
github.com/imdario/mergo v0.3.13 // indirect
12567
github.com/inconshreveable/mousetrap v1.1.0 // indirect
126-
github.com/jgautheron/goconst v1.5.1 // indirect
127-
github.com/jingyugao/rowserrcheck v1.1.1 // indirect
128-
github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af // indirect
12968
github.com/josharian/intern v1.0.0 // indirect
13069
github.com/json-iterator/go v1.1.12 // indirect
131-
github.com/julz/importas v0.1.0 // indirect
132-
github.com/kisielk/errcheck v1.6.2 // indirect
133-
github.com/kisielk/gotool v1.0.0 // indirect
134-
github.com/kkHAIKE/contextcheck v1.1.3 // indirect
135-
github.com/kulti/thelper v0.6.3 // indirect
136-
github.com/kunwardeep/paralleltest v1.0.6 // indirect
137-
github.com/kyoh86/exportloopref v0.1.8 // indirect
138-
github.com/ldez/gomoddirectives v0.2.3 // indirect
139-
github.com/ldez/tagliatelle v0.3.1 // indirect
140-
github.com/leonklingele/grouper v1.1.0 // indirect
141-
github.com/lufeee/execinquery v1.2.1 // indirect
14270
github.com/magiconair/properties v1.8.7 // indirect
14371
github.com/mailru/easyjson v0.7.7 // indirect
144-
github.com/maratori/testableexamples v1.0.0 // indirect
145-
github.com/maratori/testpackage v1.1.0 // indirect
146-
github.com/matoous/godox v0.0.0-20210227103229-6504466cf951 // indirect
14772
github.com/mattn/go-colorable v0.1.13 // indirect
14873
github.com/mattn/go-isatty v0.0.17 // indirect
14974
github.com/mattn/go-runewidth v0.0.14 // indirect
15075
github.com/matttproud/golang_protobuf_extensions v1.0.2 // indirect
151-
github.com/mbilski/exhaustivestruct v1.2.0 // indirect
152-
github.com/mgechev/revive v1.2.4 // indirect
15376
github.com/mitchellh/copystructure v1.2.0 // indirect
154-
github.com/mitchellh/go-homedir v1.1.0 // indirect
15577
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
15678
github.com/mitchellh/mapstructure v1.5.0 // indirect
15779
github.com/mitchellh/reflectwalk v1.0.2 // indirect
@@ -160,82 +82,40 @@ require (
16082
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
16183
github.com/modern-go/reflect2 v1.0.2 // indirect
16284
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
163-
github.com/moricho/tparallel v0.2.1 // indirect
16485
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
165-
github.com/nakabonne/nestif v0.3.1 // indirect
166-
github.com/nbutton23/zxcvbn-go v0.0.0-20210217022336-fa2cb2858354 // indirect
167-
github.com/nishanths/exhaustive v0.8.3 // indirect
168-
github.com/nishanths/predeclared v0.2.2 // indirect
16986
github.com/olekukonko/tablewriter v0.0.5 // indirect
17087
github.com/onsi/gomega v1.27.6 // indirect
17188
github.com/opencontainers/go-digest v1.0.0 // indirect
17289
github.com/pelletier/go-toml v1.9.5 // indirect
17390
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
174-
github.com/phayes/checkstyle v0.0.0-20170904204023-bfd46e6a821d // indirect
17591
github.com/pkg/errors v0.9.1 // indirect
176-
github.com/pmezard/go-difflib v1.0.0 // indirect
177-
github.com/polyfloyd/go-errorlint v1.0.5 // indirect
17892
github.com/prometheus/client_golang v1.14.0 // indirect
17993
github.com/prometheus/client_model v0.3.0 // indirect
18094
github.com/prometheus/common v0.37.0 // indirect
18195
github.com/prometheus/procfs v0.8.0 // indirect
182-
github.com/quasilyte/go-ruleguard v0.3.18 // indirect
183-
github.com/quasilyte/gogrep v0.0.0-20220828223005-86e4605de09f // indirect
184-
github.com/quasilyte/regex/syntax v0.0.0-20200407221936-30656e2c4a95 // indirect
185-
github.com/quasilyte/stdinfo v0.0.0-20220114132959-f7386bf02567 // indirect
18696
github.com/rivo/uniseg v0.4.2 // indirect
97+
github.com/rogpeppe/go-internal v1.9.0 // indirect
18798
github.com/russross/blackfriday v1.5.2 // indirect
188-
github.com/ryancurrah/gomodguard v1.2.4 // indirect
189-
github.com/ryanrolds/sqlclosecheck v0.3.0 // indirect
190-
github.com/sanposhiho/wastedassign/v2 v2.0.6 // indirect
191-
github.com/sashamelentyev/interfacebloat v1.1.0 // indirect
192-
github.com/sashamelentyev/usestdlibvars v1.20.0 // indirect
193-
github.com/securego/gosec/v2 v2.13.1 // indirect
19499
github.com/sergi/go-diff v1.2.0 // indirect
195-
github.com/shazow/go-diff v0.0.0-20160112020656-b6b7b6733b8c // indirect
196100
github.com/shopspring/decimal v1.3.1 // indirect
197-
github.com/sirupsen/logrus v1.9.0 // indirect
198-
github.com/sivchari/containedctx v1.0.2 // indirect
199-
github.com/sivchari/nosnakecase v1.7.0 // indirect
200-
github.com/sivchari/tenv v1.7.0 // indirect
201-
github.com/sonatard/noctx v0.0.1 // indirect
202-
github.com/sourcegraph/go-diff v0.6.1 // indirect
203101
github.com/spf13/afero v1.9.3 // indirect
204102
github.com/spf13/cast v1.5.0 // indirect
205103
github.com/spf13/cobra v1.7.0 // indirect
206104
github.com/spf13/jwalterweatherman v1.1.0 // indirect
207105
github.com/spf13/pflag v1.0.5 // indirect
208106
github.com/spf13/viper v1.15.0 // indirect
209-
github.com/ssgreg/nlreturn/v2 v2.2.1 // indirect
210-
github.com/stbenjam/no-sprintf-host-port v0.1.1 // indirect
211107
github.com/stoewer/go-strcase v1.2.0 // indirect
212-
github.com/stretchr/objx v0.5.0 // indirect
213-
github.com/stretchr/testify v1.8.1 // indirect
108+
github.com/stretchr/testify v1.8.2 // indirect
214109
github.com/subosito/gotenv v1.4.2 // indirect
215-
github.com/tdakkota/asciicheck v0.1.1 // indirect
216-
github.com/tetafro/godot v1.4.11 // indirect
217-
github.com/timakin/bodyclose v0.0.0-20210704033933-f49887972144 // indirect
218-
github.com/timonwong/loggercheck v0.9.3 // indirect
219-
github.com/tomarrell/wrapcheck/v2 v2.7.0 // indirect
220-
github.com/tommy-muehle/go-mnd/v2 v2.5.1 // indirect
221-
github.com/ultraware/funlen v0.0.3 // indirect
222-
github.com/ultraware/whitespace v0.0.5 // indirect
223-
github.com/uudashr/gocognit v1.0.6 // indirect
224110
github.com/valyala/fastjson v1.6.4 // indirect
225111
github.com/xlab/treeprint v1.1.0 // indirect
226-
github.com/yagipy/maintidx v1.0.0 // indirect
227-
github.com/yeya24/promlinter v0.2.0 // indirect
228-
gitlab.com/bosi/decorder v0.2.3 // indirect
229112
go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect
230113
go.uber.org/atomic v1.9.0 // indirect
231114
go.uber.org/multierr v1.8.0 // indirect
232115
go.uber.org/zap v1.24.0 // indirect
233-
golang.org/x/crypto v0.3.0 // indirect
234-
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
235-
golang.org/x/exp/typeparams v0.0.0-20220827204233-334a2380cb91 // indirect
116+
golang.org/x/crypto v0.5.0 // indirect
236117
golang.org/x/mod v0.10.0 // indirect
237118
golang.org/x/net v0.9.0 // indirect
238-
golang.org/x/sync v0.1.0 // indirect
239119
golang.org/x/sys v0.7.0 // indirect
240120
golang.org/x/term v0.7.0 // indirect
241121
golang.org/x/text v0.9.0 // indirect
@@ -249,7 +129,6 @@ require (
249129
gopkg.in/ini.v1 v1.67.0 // indirect
250130
gopkg.in/yaml.v2 v2.4.0 // indirect
251131
gopkg.in/yaml.v3 v3.0.1 // indirect
252-
honnef.co/go/tools v0.3.3 // indirect
253132
k8s.io/api v0.26.1 // indirect
254133
k8s.io/apiextensions-apiserver v0.26.1 // indirect
255134
k8s.io/apimachinery v0.26.1 // indirect
@@ -260,10 +139,6 @@ require (
260139
k8s.io/kube-openapi v0.0.0-20230308215209-15aac26d736a // indirect
261140
k8s.io/kubectl v0.25.0 // indirect
262141
k8s.io/utils v0.0.0-20230209194617-a36077c30491 // indirect
263-
mvdan.cc/gofumpt v0.4.0 // indirect
264-
mvdan.cc/interfacer v0.0.0-20180901003855-c20040233aed // indirect
265-
mvdan.cc/lint v0.0.0-20170908181259-adc824a0674b // indirect
266-
mvdan.cc/unparam v0.0.0-20220706161116-678bad134442 // indirect
267142
sigs.k8s.io/controller-runtime v0.14.6 // indirect
268143
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
269144
sigs.k8s.io/kustomize/api v0.12.1 // indirect

0 commit comments

Comments
 (0)