Skip to content

Commit bb2c3a7

Browse files
Merge pull request #1350 from mukundansundar/merge_rel_1.12_master
Merge release 1.12 master
2 parents a08eebb + 7a09fd6 commit bb2c3a7

21 files changed

+413
-323
lines changed

.github/workflows/kind_e2e.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ jobs:
5050
name: E2E tests for K8s (KinD)
5151
runs-on: ubuntu-latest
5252
env:
53-
DAPR_RUNTIME_PINNED_VERSION: 1.11.0
53+
DAPR_RUNTIME_PINNED_VERSION: 1.12.0-rc.3
5454
DAPR_DASHBOARD_PINNED_VERSION: 0.13.0
5555
DAPR_RUNTIME_LATEST_STABLE_VERSION:
5656
DAPR_DASHBOARD_LATEST_STABLE_VERSION:
57-
DAPR_TGZ: dapr-1.11.0.tgz
57+
DAPR_TGZ: dapr-1.12.0-rc.3.tgz
5858
strategy:
5959
fail-fast: false # Keep running if one leg fails.
6060
matrix:

.github/workflows/self_hosted_e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
GOARCH: ${{ matrix.target_arch }}
3939
GOPROXY: https://proxy.golang.org
4040
ARCHIVE_OUTDIR: dist/archives
41-
DAPR_RUNTIME_PINNED_VERSION: "1.11.0"
41+
DAPR_RUNTIME_PINNED_VERSION: "1.12.0-rc.3"
4242
DAPR_DASHBOARD_PINNED_VERSION: 0.13.0
4343
DAPR_RUNTIME_LATEST_STABLE_VERSION:
4444
DAPR_DASHBOARD_LATEST_STABLE_VERSION:

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,14 +153,14 @@ test: test-deps
153153
################################################################################
154154
.PHONY: test-e2e-k8s
155155
test-e2e-k8s: test-deps
156-
gotestsum --jsonfile $(TEST_OUTPUT_FILE) --format standard-verbose -- -timeout 20m -count=1 -tags=e2e ./tests/e2e/kubernetes/...
156+
gotestsum --jsonfile $(TEST_OUTPUT_FILE) --format standard-verbose -- -timeout 25m -count=1 -tags=e2e ./tests/e2e/kubernetes/...
157157

158158
################################################################################
159159
# E2E Tests for K8s Template exec #
160160
################################################################################
161161
.PHONY: test-e2e-k8s-template
162162
test-e2e-k8s-template: test-deps
163-
gotestsum --jsonfile $(TEST_OUTPUT_FILE) --format standard-verbose -- -timeout 20m -count=1 -tags=templatek8s ./tests/e2e/kubernetes/...
163+
gotestsum --jsonfile $(TEST_OUTPUT_FILE) --format standard-verbose -- -timeout 25m -count=1 -tags=templatek8s ./tests/e2e/kubernetes/...
164164

165165
################################################################################
166166
# Build, E2E Tests for Kubernetes #

cmd/renew_certificate.go

Lines changed: 34 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ limitations under the License.
1414
package cmd
1515

1616
import (
17+
"errors"
1718
"fmt"
1819
"os"
1920
"strings"
21+
"sync"
2022
"time"
2123

2224
"github.com/spf13/cobra"
@@ -168,22 +170,43 @@ func logErrorAndExit(err error) {
168170
}
169171

170172
func restartControlPlaneService() error {
171-
controlPlaneServices := []string{"deploy/dapr-sentry", "deploy/dapr-operator", "statefulsets/dapr-placement-server"}
173+
controlPlaneServices := []string{
174+
"deploy/dapr-sentry",
175+
"deploy/dapr-sidecar-injector",
176+
"deploy/dapr-operator",
177+
"statefulsets/dapr-placement-server",
178+
}
172179
namespace, err := kubernetes.GetDaprNamespace()
173180
if err != nil {
174181
print.FailureStatusEvent(os.Stdout, "Failed to fetch Dapr namespace")
175182
}
176-
for _, name := range controlPlaneServices {
177-
print.InfoStatusEvent(os.Stdout, fmt.Sprintf("Restarting %s..", name))
178-
_, err := utils.RunCmdAndWait("kubectl", "rollout", "restart", name, "-n", namespace)
179-
if err != nil {
180-
return fmt.Errorf("error in restarting deployment %s. Error is %w", name, err)
181-
}
182-
_, err = utils.RunCmdAndWait("kubectl", "rollout", "status", name, "-n", namespace)
183-
if err != nil {
184-
return fmt.Errorf("error in checking status for deployment %s. Error is %w", name, err)
185-
}
183+
184+
errs := make([]error, len(controlPlaneServices))
185+
var wg sync.WaitGroup
186+
wg.Add(len(controlPlaneServices))
187+
for i, name := range controlPlaneServices {
188+
go func(i int, name string) {
189+
defer wg.Done()
190+
print.InfoStatusEvent(os.Stdout, fmt.Sprintf("Restarting %s..", name))
191+
_, err := utils.RunCmdAndWait("kubectl", "rollout", "restart", "-n", namespace, name)
192+
if err != nil {
193+
errs[i] = fmt.Errorf("error in restarting deployment %s. Error is %w", name, err)
194+
return
195+
}
196+
_, err = utils.RunCmdAndWait("kubectl", "rollout", "status", "-n", namespace, name)
197+
if err != nil {
198+
errs[i] = fmt.Errorf("error in checking status for deployment %s. Error is %w", name, err)
199+
return
200+
}
201+
}(i, name)
202+
}
203+
204+
wg.Wait()
205+
206+
if err := errors.Join(errs...); err != nil {
207+
return err
186208
}
209+
187210
print.SuccessStatusEvent(os.Stdout, "All control plane services have restarted successfully!")
188211
return nil
189212
}

cmd/run.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -486,8 +486,6 @@ func executeRun(runTemplateName, runFilePath string, apps []runfileconfig.App) (
486486
// This is done to provide a better grouping, which can be used to control all the proceses started by "dapr run -f".
487487
daprsyscall.CreateProcessGroupID()
488488

489-
print.WarningStatusEvent(os.Stdout, "This is a preview feature and subject to change in future releases.")
490-
491489
for _, app := range apps {
492490
print.StatusEvent(os.Stdout, print.LogInfo, "Validating config and starting app %q", app.RunConfig.AppID)
493491
// Set defaults if zero value provided in config yaml.

go.mod

Lines changed: 74 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/Azure/go-autorest/autorest/adal v0.9.22 // indirect
88
github.com/Pallinder/sillyname-go v0.0.0-20130730142914-97aeae9e6ba1
99
github.com/briandowns/spinner v1.19.0
10-
github.com/dapr/dapr v1.11.0
10+
github.com/dapr/dapr v1.12.0-rc.3
1111
github.com/dapr/go-sdk v1.6.0
1212
github.com/docker/docker v20.10.21+incompatible
1313
github.com/fatih/color v1.15.0
@@ -20,31 +20,45 @@ require (
2020
github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5
2121
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8
2222
github.com/shirou/gopsutil v3.21.11+incompatible
23-
github.com/spf13/cobra v1.6.1
23+
github.com/spf13/cobra v1.7.0
2424
github.com/spf13/viper v1.13.0
25-
github.com/stretchr/testify v1.8.3
26-
golang.org/x/sys v0.8.0
25+
github.com/stretchr/testify v1.8.4
26+
golang.org/x/sys v0.12.0
2727
gopkg.in/yaml.v2 v2.4.0
2828
helm.sh/helm/v3 v3.11.1
29-
k8s.io/api v0.26.3
30-
k8s.io/apiextensions-apiserver v0.26.3
31-
k8s.io/apimachinery v0.26.3
32-
k8s.io/cli-runtime v0.26.3
33-
k8s.io/client-go v0.26.3
29+
k8s.io/api v0.26.9
30+
k8s.io/apiextensions-apiserver v0.26.9
31+
k8s.io/apimachinery v0.26.9
32+
k8s.io/cli-runtime v0.26.9
33+
k8s.io/client-go v0.26.9
3434
k8s.io/helm v2.16.10+incompatible
3535
sigs.k8s.io/yaml v1.3.0
3636
)
3737

38+
require github.com/Masterminds/semver/v3 v3.2.0
39+
3840
require (
39-
github.com/Masterminds/semver/v3 v3.2.0
40-
github.com/evanphx/json-patch v5.6.0+incompatible
41+
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
42+
github.com/go-chi/chi/v5 v5.0.10 // indirect
43+
github.com/go-chi/cors v1.2.1 // indirect
44+
github.com/panjf2000/ants/v2 v2.8.1 // indirect
45+
github.com/segmentio/asm v1.2.0 // indirect
46+
github.com/sourcegraph/conc v0.3.0 // indirect
47+
github.com/spiffe/go-spiffe/v2 v2.1.6 // indirect
48+
github.com/zeebo/errs v1.3.0 // indirect
49+
go.mongodb.org/mongo-driver v1.12.1 // indirect
50+
go.opentelemetry.io/otel/metric v1.16.0 // indirect
51+
go.uber.org/multierr v1.11.0 // indirect
52+
golang.org/x/mod v0.12.0 // indirect
53+
golang.org/x/tools v0.13.0 // indirect
54+
google.golang.org/genproto/googleapis/api v0.0.0-20230803162519-f966b187b2e5 // indirect
55+
google.golang.org/genproto/googleapis/rpc v0.0.0-20230807174057-1744710a1577 // indirect
4156
)
4257

4358
require (
44-
cloud.google.com/go/compute v1.19.0 // indirect
59+
cloud.google.com/go/compute v1.23.0 // indirect
4560
cloud.google.com/go/compute/metadata v0.2.3 // indirect
4661
contrib.go.opencensus.io/exporter/prometheus v0.4.2 // indirect
47-
github.com/AdhityaRamadhanus/fasthttpcors v0.0.0-20170121111917-d4c07198763a // indirect
4862
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
4963
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
5064
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
@@ -55,26 +69,26 @@ require (
5569
github.com/Masterminds/goutils v1.1.1 // indirect
5670
github.com/Masterminds/sprig/v3 v3.2.3 // indirect
5771
github.com/Masterminds/squirrel v1.5.3 // indirect
58-
github.com/Microsoft/go-winio v0.5.2 // indirect
72+
github.com/Microsoft/go-winio v0.6.0 // indirect
5973
github.com/Microsoft/hcsshim v0.9.6 // indirect
6074
github.com/PuerkitoBio/purell v1.2.0 // indirect
6175
github.com/andybalholm/brotli v1.0.5 // indirect
6276
github.com/antlr/antlr4/runtime/Go/antlr v1.4.10 // indirect
6377
github.com/asaskevich/govalidator v0.0.0-20200428143746-21a406dcc535 // indirect
6478
github.com/beorn7/perks v1.0.1 // indirect
65-
github.com/bufbuild/protocompile v0.4.0 // indirect
79+
github.com/bufbuild/protocompile v0.6.0 // indirect
6680
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
6781
github.com/cespare/xxhash/v2 v2.2.0 // indirect
6882
github.com/chai2010/gettext-go v1.0.2 // indirect
69-
github.com/chebyrash/promise v0.0.0-20220530143319-1123826567d6 // indirect
70-
github.com/cloudevents/sdk-go/binding/format/protobuf/v2 v2.13.0 // indirect
71-
github.com/cloudevents/sdk-go/v2 v2.13.0 // indirect
83+
github.com/chebyrash/promise v0.0.0-20230709133807-42ec49ba1459 // indirect
84+
github.com/cloudevents/sdk-go/binding/format/protobuf/v2 v2.14.0 // indirect
85+
github.com/cloudevents/sdk-go/v2 v2.14.0 // indirect
7286
github.com/containerd/containerd v1.6.18 // indirect
7387
github.com/containerd/continuity v0.3.0 // indirect
74-
github.com/cyphar/filepath-securejoin v0.2.3 // indirect
75-
github.com/dapr/components-contrib v1.11.0-rc.11 // indirect
76-
github.com/dapr/kit v0.11.2 // indirect
77-
github.com/davecgh/go-spew v1.1.1 // indirect
88+
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
89+
github.com/dapr/components-contrib v1.12.0-rc.3 // indirect
90+
github.com/dapr/kit v0.12.1
91+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
7892
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
7993
github.com/docker/cli v20.10.21+incompatible // indirect
8094
github.com/docker/distribution v2.8.1+incompatible // indirect
@@ -83,9 +97,8 @@ require (
8397
github.com/docker/go-metrics v0.0.1 // indirect
8498
github.com/docker/go-units v0.4.0 // indirect
8599
github.com/emicklei/go-restful/v3 v3.10.2 // indirect
86-
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
100+
github.com/evanphx/json-patch/v5 v5.7.0
87101
github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect
88-
github.com/fasthttp/router v1.4.18 // indirect
89102
github.com/fsnotify/fsnotify v1.6.0 // indirect
90103
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32 // indirect
91104
github.com/go-errors/errors v1.4.2 // indirect
@@ -111,45 +124,42 @@ require (
111124
github.com/google/go-cmp v0.5.9 // indirect
112125
github.com/google/gofuzz v1.2.0 // indirect
113126
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
114-
github.com/google/uuid v1.3.0 // indirect
127+
github.com/google/uuid v1.3.1 // indirect
115128
github.com/gorilla/mux v1.8.0 // indirect
116129
github.com/gosuri/uitable v0.0.4 // indirect
117130
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
118131
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
119132
github.com/grpc-ecosystem/grpc-gateway/v2 v2.15.2 // indirect
120-
github.com/hashicorp/errwrap v1.1.0 // indirect
121133
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
122-
github.com/hashicorp/go-multierror v1.1.1 // indirect
123-
github.com/hashicorp/golang-lru/v2 v2.0.2 // indirect
134+
github.com/hashicorp/golang-lru/v2 v2.0.6 // indirect
124135
github.com/hashicorp/hcl v1.0.0 // indirect
125136
github.com/huandu/xstrings v1.3.3 // indirect
126137
github.com/imdario/mergo v0.3.13 // indirect
127-
github.com/inconshreveable/mousetrap v1.0.1 // indirect
128-
github.com/jhump/protoreflect v1.15.1 // indirect
138+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
139+
github.com/jhump/protoreflect v1.15.2 // indirect
129140
github.com/jmoiron/sqlx v1.3.5 // indirect
130141
github.com/josharian/intern v1.0.0 // indirect
131142
github.com/json-iterator/go v1.1.12 // indirect
132-
github.com/klauspost/compress v1.16.3 // indirect
143+
github.com/klauspost/compress v1.16.7 // indirect
133144
github.com/kolesnikovae/go-winjob v1.0.0
134145
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect
135146
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
136147
github.com/lestrrat-go/blackmagic v1.0.1 // indirect
137148
github.com/lestrrat-go/httpcc v1.0.1 // indirect
138149
github.com/lestrrat-go/httprc v1.0.4 // indirect
139150
github.com/lestrrat-go/iter v1.0.2 // indirect
140-
github.com/lestrrat-go/jwx/v2 v2.0.9 // indirect
151+
github.com/lestrrat-go/jwx/v2 v2.0.12 // indirect
141152
github.com/lestrrat-go/option v1.0.1 // indirect
142153
github.com/lib/pq v1.10.7 // indirect
143154
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
144155
github.com/magiconair/properties v1.8.6 // indirect
145156
github.com/mailru/easyjson v0.7.7 // indirect
146157
github.com/marusama/semaphore/v2 v2.5.0 // indirect
147158
github.com/mattn/go-colorable v0.1.13 // indirect
148-
github.com/mattn/go-isatty v0.0.18 // indirect
159+
github.com/mattn/go-isatty v0.0.19 // indirect
149160
github.com/mattn/go-runewidth v0.0.9 // indirect
150161
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
151-
github.com/microsoft/durabletask-go v0.2.4 // indirect
152-
github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1 // indirect
162+
github.com/microsoft/durabletask-go v0.3.1 // indirect
153163
github.com/mitchellh/copystructure v1.2.0 // indirect
154164
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
155165
github.com/mitchellh/mapstructure v1.5.1-0.20220423185008-bf980b35cac4 // indirect
@@ -170,17 +180,16 @@ require (
170180
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
171181
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
172182
github.com/pkg/errors v0.9.1 // indirect
173-
github.com/pmezard/go-difflib v1.0.0 // indirect
174-
github.com/prometheus/client_golang v1.14.0 // indirect
175-
github.com/prometheus/client_model v0.3.0 // indirect
176-
github.com/prometheus/common v0.42.0 // indirect
177-
github.com/prometheus/procfs v0.8.0 // indirect
183+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
184+
github.com/prometheus/client_golang v1.16.0 // indirect
185+
github.com/prometheus/client_model v0.4.0 // indirect
186+
github.com/prometheus/common v0.44.0 // indirect
187+
github.com/prometheus/procfs v0.11.0 // indirect
178188
github.com/prometheus/statsd_exporter v0.22.7 // indirect
179189
github.com/rubenv/sql-migrate v1.2.0 // indirect
180190
github.com/russross/blackfriday/v2 v2.1.0 // indirect
181-
github.com/savsgio/gotils v0.0.0-20230208104028-c358bd845dee // indirect
182191
github.com/shopspring/decimal v1.2.0 // indirect
183-
github.com/sirupsen/logrus v1.9.2 // indirect
192+
github.com/sirupsen/logrus v1.9.3 // indirect
184193
github.com/sony/gobreaker v0.5.0 // indirect
185194
github.com/spf13/afero v1.8.2 // indirect
186195
github.com/spf13/cast v1.5.1 // indirect
@@ -193,45 +202,45 @@ require (
193202
github.com/tklauser/go-sysconf v0.3.10 // indirect
194203
github.com/tklauser/numcpus v0.4.0 // indirect
195204
github.com/valyala/bytebufferpool v1.0.0 // indirect
196-
github.com/valyala/fasthttp v1.47.0 // indirect
205+
github.com/valyala/fasthttp v1.49.0 // indirect
197206
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
198207
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
199208
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
200209
github.com/xlab/treeprint v1.1.0 // indirect
201210
github.com/yusufpapurcu/wmi v1.2.2 // indirect
202211
go.opencensus.io v0.24.0 // indirect
203-
go.opentelemetry.io/otel v1.14.0 // indirect
204-
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.14.0 // indirect
205-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.14.0 // indirect
206-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.14.0 // indirect
207-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.14.0 // indirect
208-
go.opentelemetry.io/otel/exporters/zipkin v1.14.0 // indirect
209-
go.opentelemetry.io/otel/sdk v1.14.0 // indirect
210-
go.opentelemetry.io/otel/trace v1.14.0 // indirect
212+
go.opentelemetry.io/otel v1.16.0 // indirect
213+
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.16.0 // indirect
214+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.16.0 // indirect
215+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.16.0 // indirect
216+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.16.0 // indirect
217+
go.opentelemetry.io/otel/exporters/zipkin v1.16.0 // indirect
218+
go.opentelemetry.io/otel/sdk v1.16.0 // indirect
219+
go.opentelemetry.io/otel/trace v1.16.0 // indirect
211220
go.opentelemetry.io/proto/otlp v0.19.0 // indirect
212221
go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect
213-
golang.org/x/crypto v0.9.0 // indirect
214-
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1 // indirect
215-
golang.org/x/net v0.10.0 // indirect
216-
golang.org/x/oauth2 v0.8.0 // indirect
217-
golang.org/x/sync v0.2.0 // indirect
218-
golang.org/x/term v0.8.0 // indirect
219-
golang.org/x/text v0.9.0 // indirect
222+
golang.org/x/crypto v0.13.0 // indirect
223+
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
224+
golang.org/x/net v0.15.0 // indirect
225+
golang.org/x/oauth2 v0.11.0 // indirect
226+
golang.org/x/sync v0.3.0 // indirect
227+
golang.org/x/term v0.12.0 // indirect
228+
golang.org/x/text v0.13.0 // indirect
220229
golang.org/x/time v0.3.0 // indirect
221230
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
222231
google.golang.org/appengine v1.6.7 // indirect
223-
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
224-
google.golang.org/grpc v1.54.0 // indirect
225-
google.golang.org/protobuf v1.30.0 // indirect
232+
google.golang.org/genproto v0.0.0-20230821184602-ccc8af3d0e93 // indirect
233+
google.golang.org/grpc v1.57.0 // indirect
234+
google.golang.org/protobuf v1.31.0 // indirect
226235
gopkg.in/inf.v0 v0.9.1 // indirect
227236
gopkg.in/ini.v1 v1.67.0 // indirect
228237
gopkg.in/yaml.v3 v3.0.1 // indirect
229-
k8s.io/apiserver v0.26.3 // indirect
230-
k8s.io/component-base v0.26.3 // indirect
231-
k8s.io/klog/v2 v2.80.1 // indirect
238+
k8s.io/apiserver v0.26.9 // indirect
239+
k8s.io/component-base v0.26.9 // indirect
240+
k8s.io/klog/v2 v2.90.1 // indirect
232241
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect
233242
k8s.io/kubectl v0.26.0 // indirect
234-
k8s.io/utils v0.0.0-20230406110748-d93618cff8a2 // indirect
243+
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
235244
oras.land/oras-go v1.2.2 // indirect
236245
sigs.k8s.io/controller-runtime v0.14.6 // indirect
237246
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect

0 commit comments

Comments
 (0)