Skip to content

Commit 8b54e42

Browse files
authored
Pin runtime to v0.37.1 (#542)
- Add CARMv2 as a featureGate, disabled by default - Pin runtime to v0.37.1 By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent f2f76bc commit 8b54e42

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ toolchain go1.22.4
66

77
require (
88
github.com/aws-controllers-k8s/pkg v0.0.14
9-
github.com/aws-controllers-k8s/runtime v0.37.0
9+
github.com/aws-controllers-k8s/runtime v0.37.1
1010
github.com/aws/aws-sdk-go v1.49.0
1111
github.com/dlclark/regexp2 v1.10.0 // indirect
1212
// pin to v0.1.1 due to release problem with v0.1.2

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ github.com/asaskevich/govalidator v0.0.0-20180720115003-f9ffefc3facf/go.mod h1:l
7373
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY=
7474
github.com/aws-controllers-k8s/pkg v0.0.14 h1:6GDwy4SHvL6znO3qb9rDStTOLwUEYRlGsfLfv/p16ck=
7575
github.com/aws-controllers-k8s/pkg v0.0.14/go.mod h1:VvdjLWmR6IJ3KU8KByKiq/lJE8M+ur2piXysXKTGUS0=
76-
github.com/aws-controllers-k8s/runtime v0.37.0 h1:NobDzkYdSnHG44glFmOKJkT5nqbBTcTZH8UDmv/4T6w=
77-
github.com/aws-controllers-k8s/runtime v0.37.0/go.mod h1:gI2pWb20UGLP2SnHf1a1VzTd7iVVy+/I9VAzT0Y+Dew=
76+
github.com/aws-controllers-k8s/runtime v0.37.1 h1:OKSG3WnswkazWgUtSZh3RApU6OK3l01LklP1DjWgEFY=
77+
github.com/aws-controllers-k8s/runtime v0.37.1/go.mod h1:gI2pWb20UGLP2SnHf1a1VzTd7iVVy+/I9VAzT0Y+Dew=
7878
github.com/aws/aws-sdk-go v1.49.0 h1:g9BkW1fo9GqKfwg2+zCD+TW/D36Ux+vtfJ8guF4AYmY=
7979
github.com/aws/aws-sdk-go v1.49.0/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk=
8080
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q=

templates/helm/values.yaml.tpl

+2-3
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,5 @@ leaderElection:
157157
# Configuration for feature gates. These are optional controller features that
158158
# can be individually enabled ("true") or disabled ("false") by adding key/value
159159
# pairs below.
160-
featureGates: {}
161-
# featureGate1: true
162-
# featureGate2: false
160+
featureGates:
161+
CARMv2: false

0 commit comments

Comments
 (0)