Skip to content

Commit e7a995b

Browse files
authored
Release artifacts for release v0.2.0 (#63)
Release Notes Draft: - Added `ScalableTarget` unit tests #56 - Added `ScalaingPolicy` unit tests #57 - Helm image is updated to be Helm 3.7 compatible #58 - ⚠️ **Breaking Change** Helm versions < `3.7` are no longer compatible - Update ACK Runtime from `0.14.0` to `0.15.1` #62 - ⚠️ **Breaking Change** `aws-account-id` can no longer be set and has been removed from the charts. - Please refer to https://github.com/aws-controllers-k8s/runtime/releases for a detailed list of changes By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 9e0d95b commit e7a995b

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

apis/v1alpha1/ack-generate-metadata.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
ack_generate_info:
2-
build_date: "2021-10-08T22:00:03Z"
2+
build_date: "2021-10-20T20:39:00Z"
33
build_hash: 1eaee0ea592ad5752cb9d403e2c13e9a7bdb8d33
44
go_version: go1.17.1
55
version: v0.15.1
6-
api_directory_checksum: a13caf20935ebb6193efdee1ab377cae33311ad7
6+
api_directory_checksum: f74933ce367600826bd1c18d8f23df43e98f7140
77
api_version: v1alpha1
88
aws_sdk_go_version: v1.37.10
99
generator_config_info:

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: applicationautoscaling-chart
33
description: A Helm chart for the ACK service controller for AWS Auto Scaling (AutoScaling)
4-
version: v0.1.1
5-
appVersion: v0.1.1
4+
version: v0.2.0
5+
appVersion: v0.2.0
66
home: https://github.com/aws-controllers-k8s/applicationautoscaling-controller
77
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
88
sources:

helm/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
image:
66
repository: public.ecr.aws/aws-controllers-k8s/applicationautoscaling-controller
7-
tag: v0.1.1
7+
tag: v0.2.0
88
pullPolicy: IfNotPresent
99
pullSecrets: []
1010

pkg/resource/scalable_target/manager_test_suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ import (
1717
"errors"
1818
"fmt"
1919

20+
svcapitypes "github.com/aws-controllers-k8s/applicationautoscaling-controller/apis/v1alpha1"
2021
"github.com/aws-controllers-k8s/applicationautoscaling-controller/pkg/testutil"
2122
mocksvcsdkapi "github.com/aws-controllers-k8s/applicationautoscaling-controller/test/mocks/aws-sdk-go/applicationautoscaling"
2223
ackv1alpha1 "github.com/aws-controllers-k8s/runtime/apis/core/v1alpha1"
23-
svcapitypes "github.com/aws-controllers-k8s/applicationautoscaling-controller/apis/v1alpha1"
2424
ackmetrics "github.com/aws-controllers-k8s/runtime/pkg/metrics"
2525
acktypes "github.com/aws-controllers-k8s/runtime/pkg/types"
2626
svcsdk "github.com/aws/aws-sdk-go/service/applicationautoscaling"

pkg/testutil/util.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ func cleanup(filename string) {
6868
err := os.Remove(filename)
6969
if err != nil && !errors.Is(err, os.ErrNotExist) {
7070
panic("The specified file could not be deleted")
71-
}
71+
}
7272
}
7373

7474
// Checks to see if the contents of a given yaml file, with name stored

0 commit comments

Comments
 (0)