Skip to content

Commit

Permalink
Use latest ACK codegen
Browse files Browse the repository at this point in the history
This generates controllers that import types from the crossplane-contrib
org per aws-controllers-k8s/code-generator#338

Signed-off-by: Nic Cope <nicc@rk0n.org>
  • Loading branch information
negz authored and Emelie Åkerström committed Sep 28, 2022
1 parent e4d8b4c commit 38f1684
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ PROJECT_REPO := github.com/crossplane/$(PROJECT_NAME)
PLATFORMS ?= linux_amd64 linux_arm64

CODE_GENERATOR_REPO ?= https://github.com/aws-controllers-k8s/code-generator.git
CODE_GENERATOR_COMMIT ?= f8c0f4711a91e50335450521e3c49673d135d56d
CODE_GENERATOR_COMMIT ?= 6acf40fe3e3cfd97b799ef7cbf1e89e01c3db8f7
GENERATED_SERVICES ?= $(shell find ./apis -type f -name generator-config.yaml | cut -d/ -f 3 | tr '\n' ' ')

# kind-related versions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -948,7 +948,7 @@ spec:
aliasICPRecordals:
items:
properties:
cNAME:
cname:
type: string
iCPRecordalStatus:
type: string
Expand Down
2 changes: 1 addition & 1 deletion pkg/controller/cognitoidentityprovider/userpool/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ func areSmsConfigurationEqual(spec *svcapitypes.SmsConfigurationType, current *s
if spec != nil && current != nil {
switch {
case awsclients.StringValue(spec.ExternalID) != awsclients.StringValue(current.ExternalId),
awsclients.StringValue(spec.SnsCallerARN) != awsclients.StringValue(current.SnsCallerArn):
awsclients.StringValue(spec.SNSCallerARN) != awsclients.StringValue(current.SnsCallerArn):
return false
}
}
Expand Down

0 comments on commit 38f1684

Please sign in to comment.