diff --git a/apis/v1alpha1/ack-generate-metadata.yaml b/apis/v1alpha1/ack-generate-metadata.yaml index 6b13c70..d11a6da 100755 --- a/apis/v1alpha1/ack-generate-metadata.yaml +++ b/apis/v1alpha1/ack-generate-metadata.yaml @@ -1,13 +1,13 @@ ack_generate_info: - build_date: "2025-10-20T15:37:08Z" - build_hash: f25517757439025aa7058673d97267033f5b9acc + build_date: "2025-11-10T22:51:53Z" + build_hash: e559791972d46f5bd760cc3faa516e03f7f72c87 go_version: go1.24.0 - version: v0.52.0-7-gf255177 + version: v0.52.0-7-ge559791 api_directory_checksum: 60dd2e0fe820ba29b0c906cb9debcd88f1ac1810 api_version: v1alpha1 aws_sdk_go_version: v1.39.2 generator_config_info: - file_checksum: 90d7abc62e7f2b85e403743a40e1b7827503cccd + file_checksum: fd80830702395e6c2c8f212a91f7499e855bba74 original_file_name: generator.yaml last_modification: reason: API generation diff --git a/apis/v1alpha1/generator.yaml b/apis/v1alpha1/generator.yaml index 3ec6452..17aafcd 100644 --- a/apis/v1alpha1/generator.yaml +++ b/apis/v1alpha1/generator.yaml @@ -48,7 +48,3 @@ resources: template_path: hooks/agentruntimeendpoint/sdk_read_one_post_set_output.go.tpl sdk_update_pre_build_request: template_path: hooks/agentruntimeendpoint/sdk_update_pre_build_request.go.tpl - exceptions: - errors: - 404: - code: AccessDeniedException diff --git a/config/controller/kustomization.yaml b/config/controller/kustomization.yaml index 423c3cc..6556ec4 100644 --- a/config/controller/kustomization.yaml +++ b/config/controller/kustomization.yaml @@ -6,4 +6,4 @@ kind: Kustomization images: - name: controller newName: public.ecr.aws/aws-controllers-k8s/bedrockagentcorecontrol-controller - newTag: 0.1.0 + newTag: 1.0.0 diff --git a/config/crd/common/bases/services.k8s.aws_adoptedresources.yaml b/config/crd/common/bases/services.k8s.aws_adoptedresources.yaml index b7be322..d6cdd10 100644 --- a/config/crd/common/bases/services.k8s.aws_adoptedresources.yaml +++ b/config/crd/common/bases/services.k8s.aws_adoptedresources.yaml @@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: v0.16.2 + controller-gen.kubebuilder.io/version: v0.19.0 name: adoptedresources.services.k8s.aws spec: group: services.k8s.aws diff --git a/config/crd/common/bases/services.k8s.aws_fieldexports.yaml b/config/crd/common/bases/services.k8s.aws_fieldexports.yaml index 49b4f38..6e2c61e 100644 --- a/config/crd/common/bases/services.k8s.aws_fieldexports.yaml +++ b/config/crd/common/bases/services.k8s.aws_fieldexports.yaml @@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: v0.16.2 + controller-gen.kubebuilder.io/version: v0.19.0 name: fieldexports.services.k8s.aws spec: group: services.k8s.aws diff --git a/generator.yaml b/generator.yaml index 3ec6452..17aafcd 100644 --- a/generator.yaml +++ b/generator.yaml @@ -48,7 +48,3 @@ resources: template_path: hooks/agentruntimeendpoint/sdk_read_one_post_set_output.go.tpl sdk_update_pre_build_request: template_path: hooks/agentruntimeendpoint/sdk_update_pre_build_request.go.tpl - exceptions: - errors: - 404: - code: AccessDeniedException diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 7875d7a..1bf4b08 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 name: bedrockagentcorecontrol-chart description: A Helm chart for the ACK service controller for Amazon Bedrock Agent Core Control (Bedrock Agent Core Control) -version: 0.1.0 -appVersion: 0.1.0 +version: 1.0.0 +appVersion: 1.0.0 home: https://github.com/aws-controllers-k8s/bedrockagentcorecontrol-controller icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png sources: diff --git a/helm/templates/NOTES.txt b/helm/templates/NOTES.txt index 69686c1..215a66e 100644 --- a/helm/templates/NOTES.txt +++ b/helm/templates/NOTES.txt @@ -1,5 +1,5 @@ {{ .Chart.Name }} has been installed. -This chart deploys "public.ecr.aws/aws-controllers-k8s/bedrockagentcorecontrol-controller:0.1.0". +This chart deploys "public.ecr.aws/aws-controllers-k8s/bedrockagentcorecontrol-controller:1.0.0". Check its status by running: kubectl --namespace {{ .Release.Namespace }} get pods -l "app.kubernetes.io/instance={{ .Release.Name }}" diff --git a/helm/values.yaml b/helm/values.yaml index 62ac8f6..3355a29 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -4,7 +4,7 @@ image: repository: public.ecr.aws/aws-controllers-k8s/bedrockagentcorecontrol-controller - tag: 0.1.0 + tag: 1.0.0 pullPolicy: IfNotPresent pullSecrets: [] diff --git a/pkg/resource/agent_runtime_endpoint/sdk.go b/pkg/resource/agent_runtime_endpoint/sdk.go index dcda388..19be81f 100644 --- a/pkg/resource/agent_runtime_endpoint/sdk.go +++ b/pkg/resource/agent_runtime_endpoint/sdk.go @@ -79,7 +79,7 @@ func (rm *resourceManager) sdkFind( rm.metrics.RecordAPICall("READ_ONE", "GetAgentRuntimeEndpoint", err) if err != nil { var awsErr smithy.APIError - if errors.As(err, &awsErr) && awsErr.ErrorCode() == "AccessDeniedException" { + if errors.As(err, &awsErr) && awsErr.ErrorCode() == "ResourceNotFoundException" { return nil, ackerr.NotFound } return nil, err