File tree 5 files changed +13
-14
lines changed
5 files changed +13
-14
lines changed Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ kind: Kustomization
6
6
images :
7
7
- name : controller
8
8
newName : public.ecr.aws/aws-controllers-k8s/dynamodb-controller
9
- newTag : 1.4.1
9
+ newTag : 1.4.2
Original file line number Diff line number Diff line change 1
1
apiVersion : v1
2
2
name : dynamodb-chart
3
3
description : A Helm chart for the ACK service controller for Amazon DynamoDB (DynamoDB)
4
- version : 1.4.1
5
- appVersion : 1.4.1
4
+ version : 1.4.2
5
+ appVersion : 1.4.2
6
6
home : https://github.com/aws-controllers-k8s/dynamodb-controller
7
7
icon : https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
8
8
sources :
Original file line number Diff line number Diff line change 1
1
{{ .Chart.Name }} has been installed.
2
- This chart deploys "public.ecr.aws/aws-controllers-k8s/dynamodb-controller:1.4.1 ".
2
+ This chart deploys "public.ecr.aws/aws-controllers-k8s/dynamodb-controller:1.4.2 ".
3
3
4
4
Check its status by running:
5
5
kubectl --namespace {{ .Release.Namespace }} get pods -l "app.kubernetes.io/instance={{ .Release.Name }}"
Original file line number Diff line number Diff line change 4
4
5
5
image :
6
6
repository : public.ecr.aws/aws-controllers-k8s/dynamodb-controller
7
- tag : 1.4.1
7
+ tag : 1.4.2
8
8
pullPolicy : IfNotPresent
9
9
pullSecrets : []
10
10
Original file line number Diff line number Diff line change @@ -614,15 +614,14 @@ func customPreCompare(
614
614
// Making this field a no-op if user does not set it.
615
615
// This will ensure controller does not act on this field
616
616
// if user is unaware of it.
617
- if a .ko .Spec .ContributorInsights == nil {
618
- return
619
- }
620
- // latestInsight will always be either ENABLED or DISABLED, since we requeue at readOne if its not
621
- // either
622
- desiredInsight , _ := ensureContibutorInsight (a )
623
- latestInsight , _ := ensureContibutorInsight (b )
624
- if desiredInsight != latestInsight {
625
- delta .Add ("Spec.ContributorInsights" , a .ko .Spec .ContributorInsights , b .ko .Spec .ContributorInsights )
617
+ if a .ko .Spec .ContributorInsights != nil {
618
+ // latestInsight will always be either ENABLED or DISABLED, since we requeue at readOne if its not
619
+ // either
620
+ desiredInsight , _ := ensureContibutorInsight (a )
621
+ latestInsight , _ := ensureContibutorInsight (b )
622
+ if desiredInsight != latestInsight {
623
+ delta .Add ("Spec.ContributorInsights" , a .ko .Spec .ContributorInsights , b .ko .Spec .ContributorInsights )
624
+ }
626
625
}
627
626
628
627
}
You can’t perform that action at this time.
0 commit comments