Skip to content

Commit 8a900ff

Browse files
authored
update runtime 0.13.2 and regenerate code (#104)
Issue #, if available: fixes - aws-controllers-k8s/community#937 - aws-controllers-k8s/community#931 - aws-controllers-k8s/community#938 - (hopefully) aws-controllers-k8s/community#935 - ran 100 iterations of the test locally using kind cluster Description of changes: update runtime 0.13.2 and regenerate code to fix the issues above Testing: `make test` PR build By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 0d56387 commit 8a900ff

File tree

38 files changed

+145
-94
lines changed

38 files changed

+145
-94
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ test: ## Run code tests
2525
go test -v ./...
2626

2727
test-cover: | mocks ## Run code tests with resources coverage
28-
go test -coverpkg=./pkg/resource/endpoint/... -covermode=count -coverprofile=coverage.out ./...
28+
go test -coverpkg=./pkg/resource/... -covermode=count -coverprofile=coverage.out ./...
2929
$(GOCOVER) -func=coverage.out
3030
$(GOCOVER) -html=coverage.out -o coverage.html
3131

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ack_generate_info:
2-
build_date: "2021-09-07T19:20:32Z"
3-
build_hash: 6f22b7b568e25b4ee007bb1ab5f9338c16daf172
4-
go_version: go1.16.4 darwin/amd64
5-
version: v0.13.0
2+
build_date: "2021-09-08T23:29:19Z"
3+
build_hash: 394e8294aabf0b221c35f7a5c7bc7e4e43bc6f10
4+
go_version: go1.16.4 linux/amd64
5+
version: v0.13.2
66
api_directory_checksum: 48052ad31bd7f3dbf811d81079f7235446af4cfc
77
api_version: v1alpha1
88
aws_sdk_go_version: v1.38.11
@@ -11,4 +11,4 @@ generator_config_info:
1111
original_file_name: generator.yaml
1212
last_modification:
1313
reason: API generation
14-
timestamp: 2021-09-07 19:20:42.078783 +0000 UTC
14+
timestamp: 2021-09-08 23:29:23.748204026 +0000 UTC

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/aws-controllers-k8s/sagemaker-controller
33
go 1.14
44

55
require (
6-
github.com/aws-controllers-k8s/runtime v0.13.0
6+
github.com/aws-controllers-k8s/runtime v0.13.2
77
github.com/aws/aws-sdk-go v1.38.11
88
github.com/ghodss/yaml v1.0.0
99
github.com/go-logr/logr v0.1.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883/go.mod h1:rCTlJbsFo
2323
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8=
2424
github.com/asaskevich/govalidator v0.0.0-20180720115003-f9ffefc3facf/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY=
2525
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY=
26-
github.com/aws-controllers-k8s/runtime v0.13.0 h1:PYiNnQejjS/1H93bolFXGIzgQZSn/gRoPSAEU6UG0ec=
27-
github.com/aws-controllers-k8s/runtime v0.13.0/go.mod h1:kG2WM4JAmLgf67cgZV9IZUkY2DsrUzsaNbmhFMfb05c=
26+
github.com/aws-controllers-k8s/runtime v0.13.2 h1:+gVwW4dTndPb4lB0WNLdHeiP7AGBOV+wBHGjpQUOh+w=
27+
github.com/aws-controllers-k8s/runtime v0.13.2/go.mod h1:kG2WM4JAmLgf67cgZV9IZUkY2DsrUzsaNbmhFMfb05c=
2828
github.com/aws/aws-sdk-go v1.37.10/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro=
2929
github.com/aws/aws-sdk-go v1.38.11 h1:jmxKh557ZRc+Z8fALnGrL01Ctjks2aSUFLb7n/BZoEs=
3030
github.com/aws/aws-sdk-go v1.38.11/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro=

pkg/resource/data_quality_job_definition/manager.go

Lines changed: 7 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/resource/data_quality_job_definition/resource.go

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

pkg/resource/endpoint/manager.go

Lines changed: 7 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/resource/endpoint/resource.go

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

pkg/resource/endpoint_config/manager.go

Lines changed: 7 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/resource/endpoint_config/resource.go

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

0 commit comments

Comments
 (0)