Skip to content

Commit b8e495d

Browse files
authored
Update ACK runtime to v0.14.1 (#11)
Issue #, if available: aws-controllers-k8s/community#951 Description of changes: * Fixing the generator.yaml so that apigatewayv2-controller can be auto-generated on next code-gen release. * Successfully generated and tested controller locally. By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent e8d620f commit b8e495d

File tree

77 files changed

+393
-144
lines changed

Some content is hidden

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

77 files changed

+393
-144
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ any 'help wanted' issues is a great place to start.
6464

6565
[See the documentation][dev-docs] for detailed development information.
6666

67-
[dev-docs]: https://aws.github.io/aws-controllers-k8s/dev-docs/overview/
67+
[dev-docs]: https://aws-controllers-k8s.github.io/community/docs/contributor-docs/overview/
6868

6969
## Code of Conduct
7070

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
ack_generate_info:
2-
build_date: "2021-09-02T19:54:53Z"
3-
build_hash: a866a846b883a772c4671061783ccc21a48f9412
4-
go_version: go1.14.1 darwin/amd64
5-
version: v0.13.1
6-
api_directory_checksum: b6d2b18be866a317bf26756b371d24fa26e4d7a2
2+
build_date: "2021-09-23T17:44:12Z"
3+
build_hash: e4d7c2aabd8113176b0662bb3d31751914e2c5e9
4+
go_version: go1.16.5
5+
version: v0.14.1
6+
api_directory_checksum: 20625534fa65e1e856fc014ab5de111bbc23bf57
77
api_version: v1alpha1
8-
aws_sdk_go_version: v1.35.5
8+
aws_sdk_go_version: v1.37.10
99
generator_config_info:
10-
file_checksum: 9d648ce9cb26d1572db8e54e82f052f25fa8f92a
10+
file_checksum: df7c7fbb497f119ebacb994cab1b242d67dcc201
1111
original_file_name: generator.yaml
1212
last_modification:
1313
reason: API generation
14-
timestamp: 2021-09-02 19:55:06.902381 +0000 UTC

apis/v1alpha1/generator.yaml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,15 @@ resources:
1919
is_required: false
2020
update_operation:
2121
custom_method_name: customUpdateApi
22+
DomainName:
23+
fields:
24+
DomainName:
25+
is_primary_key: true
26+
is_required: true
27+
from:
28+
operation: CreateDomainName
29+
path: DomainName
2230
operations:
2331
CreateApi:
2432
custom_implementation: customCreateApi
25-
GetDomainName:
26-
primary_identifier_field_name: DomainName
33+

apis/v1alpha1/integration.go

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

apis/v1alpha1/types.go

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

apis/v1alpha1/zz_generated.deepcopy.go

Lines changed: 50 additions & 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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ spec:
4141
image: controller:latest
4242
name: controller
4343
ports:
44-
- containerPort: 8080
44+
- name: http
45+
containerPort: 8080
4546
resources:
4647
limits:
4748
cpu: 100m

config/controller/service.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ spec:
99
ports:
1010
- name: metricsport
1111
port: 8080
12-
targetPort: 8080
12+
targetPort: http
1313
protocol: TCP
14-
type: NodePort
14+
type: NodePort

config/crd/bases/apigatewayv2.services.k8s.aws_apimappings.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.6.1
7+
controller-gen.kubebuilder.io/version: v0.7.0
88
creationTimestamp: null
99
name: apimappings.apigatewayv2.services.k8s.aws
1010
spec:

config/crd/bases/apigatewayv2.services.k8s.aws_apis.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.6.1
7+
controller-gen.kubebuilder.io/version: v0.7.0
88
creationTimestamp: null
99
name: apis.apigatewayv2.services.k8s.aws
1010
spec:

0 commit comments

Comments
 (0)