Skip to content

Commit 3ca37c4

Browse files
authored
Update ACK runtime to v0.16.4 (#18)
### Update ACK runtime to `v0.16.4` ---------- * ACK code-generator `v0.16.4` [release notes](https://github.com/aws-controllers-k8s/code-generator/releases/tag/v0.16.4) * ACK runtime `v0.16.4` [release notes](https://github.com/aws-controllers-k8s/runtime/releases/tag/v0.16.4) ---------- NOTE: This PR increments the release version of service controller from `v0.0.6` to `v0.0.7` Once this PR is merged, release `v0.0.7` will be automatically created for `opensearchservice-controller` **Please close this PR, if you do not want the new patch release for `opensearchservice-controller`** ---------- #### stdout for `make build-controller`: ``` building ack-generate ... ok. ==== building opensearchservice-controller ==== Copying common custom resource definitions into opensearchservice Building Kubernetes API objects for opensearchservice Generating deepcopy code for opensearchservice Generating custom resource definitions for opensearchservice Building service controller for opensearchservice Generating RBAC manifests for opensearchservice Running gofmt against generated code for opensearchservice Updating additional GitHub repository maintenance files ==== building opensearchservice-controller release artifacts ==== Building release artifacts for opensearchservice-v0.0.7 Generating common custom resource definitions Generating custom resource definitions for opensearchservice Generating RBAC manifests for opensearchservice ``` ---------- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent d8707d7 commit 3ca37c4

File tree

12 files changed

+42
-18
lines changed

12 files changed

+42
-18
lines changed

apis/v1alpha1/ack-generate-metadata.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
ack_generate_info:
2-
build_date: "2022-01-24T20:51:33Z"
3-
build_hash: cccec82a27ddd880095383360df1fdc8f530842f
2+
build_date: "2022-02-02T21:45:30Z"
3+
build_hash: 8f02d7700eaa65a51e99c37d296056def0b70647
44
go_version: go1.17.5
5-
version: v0.16.3
5+
version: v0.16.4
66
api_directory_checksum: 6f3ca5de4e5a1ac8cb5366ab502f7c73c8d5c88f
77
api_version: v1alpha1
8-
aws_sdk_go_version: v1.40.51
8+
aws_sdk_go_version: v1.42.0
99
generator_config_info:
1010
file_checksum: 387dff40ea37afcdbb465ca305c08d320e2558f4
1111
original_file_name: generator.yaml

config/controller/deployment.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ spec:
6161
drop:
6262
- ALL
6363
terminationGracePeriodSeconds: 10
64+
serviceAccountName: ack-opensearchservice-controller
6465
hostIPC: false
6566
hostNetwork: false
6667
hostPID: false

config/controller/kustomization.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ apiVersion: kustomize.config.k8s.io/v1beta1
55
kind: Kustomization
66
images:
77
- name: controller
8-
newName: ack-opensearchservice-controller
9-
newTag: latest
8+
newName: public.ecr.aws/aws-controllers-k8s/opensearchservice-controller
9+
newTag: v0.0.7

config/rbac/cluster-role-binding.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ roleRef:
88
name: ack-opensearchservice-controller
99
subjects:
1010
- kind: ServiceAccount
11-
name: default
11+
name: ack-opensearchservice-controller
1212
namespace: ack-system

config/rbac/kustomization.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ resources:
33
- cluster-role-controller.yaml
44
- role-reader.yaml
55
- role-writer.yaml
6+
- service-account.yaml
7+

config/rbac/service-account.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
apiVersion: v1
3+
kind: ServiceAccount
4+
metadata:
5+
name: ack-opensearchservice-controller
6+
namespace: ack-system

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module github.com/aws-controllers-k8s/opensearchservice-controller
33
go 1.17
44

55
require (
6-
github.com/aws-controllers-k8s/runtime v0.16.3
7-
github.com/aws/aws-sdk-go v1.40.51
6+
github.com/aws-controllers-k8s/runtime v0.16.4
7+
github.com/aws/aws-sdk-go v1.42.0
88
github.com/go-logr/logr v1.2.0
99
github.com/spf13/pflag v1.0.5
1010
k8s.io/api v0.23.0

go.sum

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,10 @@ github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hC
6464
github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY=
6565
github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8=
6666
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY=
67-
github.com/aws-controllers-k8s/runtime v0.16.3 h1:AaufF1pkfX3M3G4WK6m9OTcI6yEzKnFsffpuWTIy5wY=
68-
github.com/aws-controllers-k8s/runtime v0.16.3/go.mod h1:DHwPczqO/nK4L1kqWlmng5GuIQuX5MSSWbTQMuL4LnM=
69-
github.com/aws/aws-sdk-go v1.37.10/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro=
70-
github.com/aws/aws-sdk-go v1.40.51 h1:FfxDcjWqhMGwy+raf5Zf6AH8qsHIl9YG2dvJIBx1Aw4=
71-
github.com/aws/aws-sdk-go v1.40.51/go.mod h1:585smgzpB/KqRA+K3y/NL/oYRqQvpNJYvLm+LY1U59Q=
67+
github.com/aws-controllers-k8s/runtime v0.16.4 h1:gV8jT09PwaCQWaC46NEnaEggqPm8Lxke6G0f7SxVsys=
68+
github.com/aws-controllers-k8s/runtime v0.16.4/go.mod h1:9c2CL3w0BlVkse+foHlP1SkJRqYWLs9H+4X/z+2kE3w=
69+
github.com/aws/aws-sdk-go v1.42.0 h1:BMZws0t8NAhHFsfnT3B40IwD13jVDG5KerlRksctVIw=
70+
github.com/aws/aws-sdk-go v1.42.0/go.mod h1:585smgzpB/KqRA+K3y/NL/oYRqQvpNJYvLm+LY1U59Q=
7271
github.com/benbjohnson/clock v1.0.3/go.mod h1:bGMdMPoPVvcYyt1gHDf4J2KE153Yf9BuiUKYMaxlTDM=
7372
github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLju8=
7473
github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA=

helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
22
name: opensearchservice-chart
33
description: A Helm chart for the ACK service controller for Amazon OpenSearch Service (OpenSearch)
4-
version: v0.0.6
5-
appVersion: v0.0.6
4+
version: v0.0.7
5+
appVersion: v0.0.7
66
home: https://github.com/aws-controllers-k8s/opensearchservice-controller
77
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
88
sources:

helm/templates/NOTES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{ .Chart.Name }} has been installed.
2-
This chart deploys "public.ecr.aws/aws-controllers-k8s/opensearchservice-controller:v0.0.6".
2+
This chart deploys "public.ecr.aws/aws-controllers-k8s/opensearchservice-controller:v0.0.7".
33

44
Check its status by running:
55
kubectl --namespace {{ .Release.Namespace }} get pods -l "app.kubernetes.io/instance={{ .Release.Name }}"

0 commit comments

Comments
 (0)