Skip to content

Commit 8e0f79b

Browse files
ack-botci-robot
andauthored
Update ACK runtime to v0.16.0 (#18)
Co-authored-by: ci-robot <[email protected]>
1 parent a3785a0 commit 8e0f79b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+1798
-471
lines changed

apis/v1alpha1/ack-generate-metadata.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ack_generate_info:
2-
build_date: "2021-10-27T21:08:44Z"
3-
build_hash: d2b063806d25cfcae4f2d4eb44f8e3f713b23e8e
4-
go_version: go1.15
5-
version: v0.15.2
2+
build_date: "2022-01-07T20:38:28Z"
3+
build_hash: 3e184727de8a4dfd4769e3d88f4f52f885858335
4+
go_version: go1.17.5
5+
version: v0.16.0
66
api_directory_checksum: 20625534fa65e1e856fc014ab5de111bbc23bf57
77
api_version: v1alpha1
88
aws_sdk_go_version: v1.37.10

apis/v1alpha1/zz_generated.deepcopy.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/controller/deployment.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,15 @@ spec:
5353
valueFrom:
5454
fieldRef:
5555
fieldPath: metadata.namespace
56+
securityContext:
57+
allowPrivilegeEscalation: false
58+
privileged: false
59+
runAsNonRoot: true
60+
runAsUser: 1000
61+
capabilities:
62+
drop:
63+
- ALL
5664
terminationGracePeriodSeconds: 10
65+
hostIPC: false
66+
hostNetwork: false
67+
hostPID: false

config/crd/common/bases/services.k8s.aws_adoptedresources.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apiVersion: apiextensions.k8s.io/v1
44
kind: CustomResourceDefinition
55
metadata:
66
annotations:
7-
controller-gen.kubebuilder.io/version: v0.4.0
7+
controller-gen.kubebuilder.io/version: v0.7.0
88
creationTimestamp: null
99
name: adoptedresources.services.k8s.aws
1010
spec:

go.mod

Lines changed: 62 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,69 @@
11
module github.com/aws-controllers-k8s/apigatewayv2-controller
22

3-
go 1.14
3+
go 1.17
44

55
require (
6-
github.com/aws-controllers-k8s/runtime v0.15.2
6+
github.com/aws-controllers-k8s/runtime v0.16.0
77
github.com/aws/aws-sdk-go v1.37.10
8-
github.com/go-logr/logr v0.1.0
9-
github.com/go-logr/zapr v0.1.1 // indirect
10-
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6 // indirect
11-
github.com/google/go-cmp v0.3.1
12-
github.com/hashicorp/golang-lru v0.5.3 // indirect
13-
github.com/imdario/mergo v0.3.7 // indirect
8+
github.com/go-logr/logr v1.2.0
9+
github.com/google/go-cmp v0.5.5
1410
github.com/spf13/pflag v1.0.5
15-
github.com/stretchr/testify v1.5.1
16-
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect
17-
google.golang.org/appengine v1.6.1 // indirect
18-
k8s.io/api v0.18.2
19-
k8s.io/apimachinery v0.18.6
20-
k8s.io/client-go v0.18.2
21-
sigs.k8s.io/controller-runtime v0.6.0
11+
github.com/stretchr/testify v1.7.0
12+
k8s.io/api v0.23.0
13+
k8s.io/apimachinery v0.23.0
14+
k8s.io/client-go v0.23.0
15+
sigs.k8s.io/controller-runtime v0.11.0
16+
)
17+
18+
require (
19+
github.com/beorn7/perks v1.0.1 // indirect
20+
github.com/cespare/xxhash/v2 v2.1.1 // indirect
21+
github.com/davecgh/go-spew v1.1.1 // indirect
22+
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
23+
github.com/fsnotify/fsnotify v1.5.1 // indirect
24+
github.com/go-logr/zapr v1.2.0 // indirect
25+
github.com/gogo/protobuf v1.3.2 // indirect
26+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
27+
github.com/golang/protobuf v1.5.2 // indirect
28+
github.com/google/gofuzz v1.1.0 // indirect
29+
github.com/google/uuid v1.1.2 // indirect
30+
github.com/googleapis/gnostic v0.5.5 // indirect
31+
github.com/imdario/mergo v0.3.12 // indirect
32+
github.com/jaypipes/envutil v1.0.0 // indirect
33+
github.com/jmespath/go-jmespath v0.4.0 // indirect
34+
github.com/json-iterator/go v1.1.12 // indirect
35+
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
36+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
37+
github.com/modern-go/reflect2 v1.0.2 // indirect
38+
github.com/pkg/errors v0.9.1 // indirect
39+
github.com/pmezard/go-difflib v1.0.0 // indirect
40+
github.com/prometheus/client_golang v1.11.0 // indirect
41+
github.com/prometheus/client_model v0.2.0 // indirect
42+
github.com/prometheus/common v0.28.0 // indirect
43+
github.com/prometheus/procfs v0.6.0 // indirect
44+
github.com/stretchr/objx v0.2.0 // indirect
45+
go.uber.org/atomic v1.7.0 // indirect
46+
go.uber.org/multierr v1.6.0 // indirect
47+
go.uber.org/zap v1.19.1 // indirect
48+
golang.org/x/net v0.0.0-20210825183410-e898025ed96a // indirect
49+
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f // indirect
50+
golang.org/x/sys v0.0.0-20211029165221-6e7872819dc8 // indirect
51+
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect
52+
golang.org/x/text v0.3.7 // indirect
53+
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
54+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
55+
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
56+
google.golang.org/appengine v1.6.7 // indirect
57+
google.golang.org/protobuf v1.27.1 // indirect
58+
gopkg.in/inf.v0 v0.9.1 // indirect
59+
gopkg.in/yaml.v2 v2.4.0 // indirect
60+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
61+
k8s.io/apiextensions-apiserver v0.23.0 // indirect
62+
k8s.io/component-base v0.23.0 // indirect
63+
k8s.io/klog/v2 v2.30.0 // indirect
64+
k8s.io/kube-openapi v0.0.0-20211115234752-e816edb12b65 // indirect
65+
k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b // indirect
66+
sigs.k8s.io/json v0.0.0-20211020170558-c049b76a60c6 // indirect
67+
sigs.k8s.io/structured-merge-diff/v4 v4.2.0 // indirect
68+
sigs.k8s.io/yaml v1.3.0 // indirect
2269
)

0 commit comments

Comments
 (0)