Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
*.swp
*~
.idea
.venv
/docs/site
bin
build
8 changes: 4 additions & 4 deletions apis/v1alpha1/ack-generate-metadata.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
ack_generate_info:
build_date: "2025-09-19T17:08:09Z"
build_hash: 6b4211163dcc34776b01da9a18217bac0f4103fd
go_version: go1.24.6
version: v0.52.0
build_date: "2025-11-13T00:20:46Z"
build_hash: c833f2d14f4fe8953663ff92f4661ae5fb01b8c8
go_version: go1.25.1
version: v0.53.1
api_directory_checksum: 2627dc306e3a83c86c04050c6c4336451459e728
api_version: v1alpha1
aws_sdk_go_version: v1.32.6
Expand Down
3 changes: 3 additions & 0 deletions config/controller/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ spec:
- "$(RECONCILE_DEFAULT_MAX_CONCURRENT_SYNCS)"
- --feature-gates
- "$(FEATURE_GATES)"
- --enable-carm=$(ENABLE_CARM)
image: controller:latest
name: controller
ports:
Expand Down Expand Up @@ -80,6 +81,8 @@ spec:
value: "1"
- name: "FEATURE_GATES"
value: ""
- name: "ENABLE_CARM"
value: "true"
securityContext:
allowPrivilegeEscalation: false
privileged: false
Expand Down
2 changes: 1 addition & 1 deletion config/crd/bases/sqs.services.k8s.aws_queues.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: queues.sqs.services.k8s.aws
spec:
group: sqs.services.k8s.aws
Expand Down
249 changes: 0 additions & 249 deletions config/crd/common/bases/services.k8s.aws_adoptedresources.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion config/crd/common/bases/services.k8s.aws_fieldexports.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
90 changes: 90 additions & 0 deletions config/crd/common/bases/services.k8s.aws_iamroleselectors.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.19.0
name: iamroleselectors.services.k8s.aws
spec:
group: services.k8s.aws
names:
kind: IAMRoleSelector
listKind: IAMRoleSelectorList
plural: iamroleselectors
singular: iamroleselector
scope: Cluster
versions:
- name: v1alpha1
schema:
openAPIV3Schema:
description: IAMRoleSelector is the schema for the IAMRoleSelector API.
properties:
apiVersion:
description: |-
APIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
type: object
spec:
properties:
arn:
type: string
x-kubernetes-validations:
- message: Value is immutable once set
rule: self == oldSelf
namespaceSelector:
description: IAMRoleSelectorSpec defines the desired state of IAMRoleSelector
properties:
labelSelector:
description: LabelSelector is a label query over a set of resources.
properties:
matchLabels:
additionalProperties:
type: string
type: object
required:
- matchLabels
type: object
names:
items:
type: string
type: array
required:
- names
type: object
resourceTypeSelector:
items:
properties:
group:
type: string
kind:
type: string
version:
type: string
required:
- group
- kind
- version
type: object
type: array
required:
- arn
type: object
status:
type: object
type: object
served: true
storage: true
subresources:
status: {}
Loading