Skip to content

Commit

Permalink
deps: Update to controller-runtime v0.14.6
Browse files Browse the repository at this point in the history
Pull `sigs.k8s.io/controller-runtime/pkg/log/zap@v0.14.6` as part of it.

```
go get sigs.k8s.io/controller-runtime@latest
go get sigs.k8s.io/controller-runtime/pkg/log/zap@v0.14.6
```

Signed-off-by: Víctor Cuadrado Juan <vcuadradojuan@suse.de>
  • Loading branch information
viccuad committed Apr 28, 2023
1 parent e37f790 commit a906817
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 68 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,13 +176,15 @@ spec:
items:
type: string
type: array
x-kubernetes-list-type: atomic
apiVersions:
description: APIVersions is the API versions the resources belong
to. '*' is all versions. If '*' is present, the length of
the slice must be one. Required.
items:
type: string
type: array
x-kubernetes-list-type: atomic
operations:
description: Operations is the operations the admission hook
cares about - CREATE, UPDATE, DELETE, CONNECT or * for all
Expand All @@ -193,6 +195,7 @@ spec:
description: OperationType specifies an operation for a request.
type: string
type: array
x-kubernetes-list-type: atomic
resources:
description: "Resources is a list of resources this rule applies
to. \n For example: 'pods' means pods. 'pods/log' means the
Expand All @@ -206,6 +209,7 @@ spec:
items:
type: string
type: array
x-kubernetes-list-type: atomic
scope:
description: scope specifies the scope of this rule. Valid values
are "Cluster", "Namespaced", and "*" "Cluster" means that
Expand Down Expand Up @@ -509,13 +513,15 @@ spec:
items:
type: string
type: array
x-kubernetes-list-type: atomic
apiVersions:
description: APIVersions is the API versions the resources belong
to. '*' is all versions. If '*' is present, the length of
the slice must be one. Required.
items:
type: string
type: array
x-kubernetes-list-type: atomic
operations:
description: Operations is the operations the admission hook
cares about - CREATE, UPDATE, DELETE, CONNECT or * for all
Expand All @@ -526,6 +532,7 @@ spec:
description: OperationType specifies an operation for a request.
type: string
type: array
x-kubernetes-list-type: atomic
resources:
description: "Resources is a list of resources this rule applies
to. \n For example: 'pods' means pods. 'pods/log' means the
Expand All @@ -539,6 +546,7 @@ spec:
items:
type: string
type: array
x-kubernetes-list-type: atomic
scope:
description: scope specifies the scope of this rule. Valid values
are "Cluster", "Namespaced", and "*" "Cluster" means that
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,13 +256,15 @@ spec:
items:
type: string
type: array
x-kubernetes-list-type: atomic
apiVersions:
description: APIVersions is the API versions the resources belong
to. '*' is all versions. If '*' is present, the length of
the slice must be one. Required.
items:
type: string
type: array
x-kubernetes-list-type: atomic
operations:
description: Operations is the operations the admission hook
cares about - CREATE, UPDATE, DELETE, CONNECT or * for all
Expand All @@ -273,6 +275,7 @@ spec:
description: OperationType specifies an operation for a request.
type: string
type: array
x-kubernetes-list-type: atomic
resources:
description: "Resources is a list of resources this rule applies
to. \n For example: 'pods' means pods. 'pods/log' means the
Expand All @@ -286,6 +289,7 @@ spec:
items:
type: string
type: array
x-kubernetes-list-type: atomic
scope:
description: scope specifies the scope of this rule. Valid values
are "Cluster", "Namespaced", and "*" "Cluster" means that
Expand Down Expand Up @@ -649,13 +653,15 @@ spec:
items:
type: string
type: array
x-kubernetes-list-type: atomic
apiVersions:
description: APIVersions is the API versions the resources belong
to. '*' is all versions. If '*' is present, the length of
the slice must be one. Required.
items:
type: string
type: array
x-kubernetes-list-type: atomic
operations:
description: Operations is the operations the admission hook
cares about - CREATE, UPDATE, DELETE, CONNECT or * for all
Expand All @@ -666,6 +672,7 @@ spec:
description: OperationType specifies an operation for a request.
type: string
type: array
x-kubernetes-list-type: atomic
resources:
description: "Resources is a list of resources this rule applies
to. \n For example: 'pods' means pods. 'pods/log' means the
Expand All @@ -679,6 +686,7 @@ spec:
items:
type: string
type: array
x-kubernetes-list-type: atomic
scope:
description: scope specifies the scope of this rule. Valid values
are "Cluster", "Namespaced", and "*" "Cluster" means that
Expand Down
10 changes: 7 additions & 3 deletions config/crd/bases/policies.kubewarden.io_policyservers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -453,9 +453,13 @@ spec:
supplementalGroups:
description: A list of groups applied to the first process
run in each container, in addition to the container's primary
GID. If unspecified, no groups will be added to any container.
Note that this field cannot be set when spec.os.name is
windows.
GID, the fsGroup (if specified), and group memberships defined
in the container image for the uid of the container process.
If unspecified, no additional groups are added to any container.
Note that group memberships defined in the container image
for the uid of the container process are still effective,
even if they are not included in this list. Note that this
field cannot be set when spec.os.name is windows.
items:
format: int64
type: integer
Expand Down
29 changes: 10 additions & 19 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,13 @@ require (
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.33.0
go.opentelemetry.io/otel/metric v0.33.0
go.opentelemetry.io/otel/sdk/metric v0.33.0
k8s.io/api v0.25.3
k8s.io/apimachinery v0.25.3
k8s.io/client-go v0.25.3
sigs.k8s.io/controller-runtime v0.13.0
k8s.io/api v0.26.1
k8s.io/apimachinery v0.26.1
k8s.io/client-go v0.26.1
sigs.k8s.io/controller-runtime v0.14.6
)

require (
cloud.google.com/go/compute v1.9.0 // indirect
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
github.com/Azure/go-autorest/autorest v0.11.28 // indirect
github.com/Azure/go-autorest/autorest/adal v0.9.21 // indirect
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
github.com/Azure/go-autorest/logger v0.2.1 // indirect
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
Expand All @@ -42,7 +35,6 @@ require (
github.com/go-openapi/swag v0.22.3 // indirect
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang-jwt/jwt/v4 v4.4.2 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/gnostic v0.6.9 // indirect
Expand All @@ -59,7 +51,7 @@ require (
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/prometheus/client_golang v1.13.0 // indirect
github.com/prometheus/client_golang v1.14.0 // indirect
github.com/prometheus/client_model v0.3.0 // indirect
github.com/prometheus/common v0.37.0 // indirect
github.com/prometheus/procfs v0.8.0 // indirect
Expand All @@ -71,14 +63,13 @@ require (
go.opentelemetry.io/proto/otlp v0.19.0 // indirect
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
go.uber.org/zap v1.23.0 // indirect
golang.org/x/crypto v0.1.0 // indirect
go.uber.org/zap v1.24.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/oauth2 v0.0.0-20220622183110-fd043fe589d2 // indirect
golang.org/x/sys v0.6.0 // indirect
golang.org/x/term v0.6.0 // indirect
golang.org/x/text v0.8.0 // indirect
golang.org/x/time v0.1.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/tools v0.7.0 // indirect
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
Expand All @@ -88,11 +79,11 @@ require (
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/apiextensions-apiserver v0.25.3 // indirect
k8s.io/component-base v0.25.3 // indirect
k8s.io/apiextensions-apiserver v0.26.1 // indirect
k8s.io/component-base v0.26.1 // indirect
k8s.io/klog/v2 v2.80.1 // indirect
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect
k8s.io/utils v0.0.0-20221012122500-cfd413dd9e85 // indirect
k8s.io/utils v0.0.0-20221128185143-99ec85e7a448 // indirect
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
sigs.k8s.io/yaml v1.3.0 // indirect
Expand Down
Loading

0 comments on commit a906817

Please sign in to comment.