-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Description of changes: Updates the version of ACK runtime to `v0.12.0` By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
- Loading branch information
1 parent
4693adf
commit 6d7cf6b
Showing
54 changed files
with
2,908 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
ack_generate_info: | ||
build_date: "2021-07-12T23:57:06Z" | ||
build_hash: 00bf248923c17be1e8e9688f909f83e7bdff3c5c | ||
build_date: "2021-08-24T18:22:24Z" | ||
build_hash: be9e3abf09e334d8585d14404a99d8adae0daec7 | ||
go_version: go1.15.6 linux/amd64 | ||
version: v0.5.0 | ||
api_directory_checksum: 4124e9ce79a6a01ecd4d6911bb659c2e768601c0 | ||
version: v0.12.0 | ||
api_directory_checksum: 93dac39771f80f75f6498e89289ac5674c4de0df | ||
api_version: v1alpha1 | ||
aws_sdk_go_version: v1.38.67 | ||
generator_config_info: | ||
file_checksum: 4878e381dd85bb88d0691255f3359da6775fc169 | ||
original_file_name: generator.yaml | ||
last_modification: | ||
reason: API generation | ||
timestamp: 2021-07-12 23:57:12.006034402 +0000 UTC | ||
timestamp: 2021-08-24 18:22:29.303293978 +0000 UTC |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
resources: | ||
- ../../default | ||
patches: | ||
- path: role.json | ||
target: | ||
group: rbac.authorization.k8s.io | ||
version: v1 | ||
kind: ClusterRole | ||
name: ack-eks-controller | ||
- path: role-binding.json | ||
target: | ||
group: rbac.authorization.k8s.io | ||
version: v1 | ||
kind: ClusterRoleBinding | ||
name: ack-eks-controller-rolebinding |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[{"op": "replace", "path": "/kind", "value": "RoleBinding"}, | ||
{"op": "add", "path": "/metadata/namespace", "value": "ack-system"}, | ||
{"op": "replace", "path": "/roleRef/kind", "value": "Role"}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[{"op": "replace", "path": "/kind", "value": "Role"}, | ||
{"op": "add", "path": "/metadata/namespace", "value": "ack-system"}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
module github.com/aws-controllers-k8s/eks-controller | ||
|
||
go 1.14 | ||
|
||
replace github.com/aws-controllers-k8s/runtime => ../runtime | ||
|
||
require ( | ||
github.com/aws-controllers-k8s/runtime v0.12.0 | ||
github.com/aws/aws-sdk-go v1.38.67 | ||
github.com/go-logr/logr v0.1.0 | ||
github.com/spf13/pflag v1.0.5 | ||
k8s.io/api v0.18.2 | ||
k8s.io/apimachinery v0.18.6 | ||
k8s.io/client-go v0.18.2 | ||
sigs.k8s.io/controller-runtime v0.6.0 | ||
) |
Oops, something went wrong.