Skip to content

Commit 9b6bf47

Browse files
authored
Release artifacts for release v0.2.0 (#125)
Release Notes Draft: - Unit tests for all resources currently included in [pkg/resource](https://github.com/aws-controllers-k8s/sagemaker-controller/tree/main/pkg/resource) - Helm image is updated to be Helm 3.7 compatible #119 - ⚠️ **Breaking Change** Helm versions < `3.7` are no longer compatible - Update ACK Runtime from `0.14.0` to `0.15.1` #120 - ⚠️ **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 30fa9c5 commit 9b6bf47

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The following sections will guide you to install SageMaker and Application Autos
4141
This guide assumes that you’ve the following prerequisites:
4242
- Installed the following tools on the client machine used to access your Kubernetes cluster:
4343
- [kubectl](https://docs.aws.amazon.com/eks/latest/userguide/install-kubectl.html) - A command line tool for working with Kubernetes clusters.
44-
- [helm](https://helm.sh/docs/intro/install/) - A tool for installing and managing Kubernetes applications
44+
- [helm 3.7+](https://helm.sh/docs/intro/install/) - A tool for installing and managing Kubernetes applications
4545
- [AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/install-cliv1.html) - A command line tool for interacting with AWS services.
4646
- [eksctl](https://docs.aws.amazon.com/eks/latest/userguide/eksctl.html) - A command line tool for working with EKS clusters that automates many individual tasks.
4747
- [yq](https://mikefarah.gitbook.io/yq) - command-line YAML processor.
@@ -160,11 +160,11 @@ Take note of IAM_ROLE_ARN_FOR_IRSA printed in the previous step; you will pass t
160160
#### 3.1 Install SageMaker Controller
161161

162162
##### 3.1.1 Download helm chart
163-
163+
- Helm version 3.7 or greater is required. Helm versions < 3.7 are incompatible.
164164
```sh
165165
export HELM_EXPERIMENTAL_OCI=1
166166
export SERVICE=sagemaker
167-
export RELEASE_VERSION=v0.1.0
167+
export RELEASE_VERSION=v0.2.0
168168
export CHART_EXPORT_PATH=/tmp/chart
169169
export CHART_REF=$SERVICE-chart
170170
export CHART_REPO=public.ecr.aws/aws-controllers-k8s/$CHART_REF
@@ -225,7 +225,7 @@ Jump to Section 4.0 if you only wish to install SageMaker controller
225225
```sh
226226
export HELM_EXPERIMENTAL_OCI=1
227227
export SERVICE=applicationautoscaling
228-
export RELEASE_VERSION=v0.1.1
228+
export RELEASE_VERSION=v0.2.0
229229
export CHART_EXPORT_PATH=/tmp/chart
230230
export CHART_REF=$SERVICE-chart
231231
export CHART_REPO=public.ecr.aws/aws-controllers-k8s/$CHART_REF

apis/v1alpha1/ack-generate-metadata.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ack_generate_info:
2-
build_date: "2021-10-08T20:19:54Z"
2+
build_date: "2021-10-21T19:55:26Z"
33
build_hash: 1eaee0ea592ad5752cb9d403e2c13e9a7bdb8d33
44
go_version: go1.17.1
55
version: v0.15.1

helm/Chart.yaml

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

helm/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

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

pkg/resource/notebook_instance/hooks.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ var (
2020
svcsdk.NotebookInstanceStatusStopping,
2121
}
2222

23-
resourceName = GroupKind.Kind
23+
resourceName = GroupKind.Kind
2424
requeueWaitWhileDeleting = ackrequeue.NeededAfter(
2525
errors.New(resourceName+" is deleting."),
2626
ackrequeue.DefaultRequeueAfterDuration,

0 commit comments

Comments
 (0)