Skip to content

Commit ad2521d

Browse files
authored
Support queues RedriveAllowPolicy (#35)
Fixes aws-controllers-k8s/community#1806 By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 2c4c963 commit ad2521d

File tree

14 files changed

+46
-10
lines changed

14 files changed

+46
-10
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
ack_generate_info:
2-
build_date: "2023-05-15T22:57:03Z"
2+
build_date: "2023-05-20T02:19:20Z"
33
build_hash: 8f3ba427974fd6e769926778d54834eaee3b81a3
4-
go_version: go1.19
4+
go_version: go1.20.1
55
version: v0.26.1
6-
api_directory_checksum: 3741e855a47295ce5921a70cf58ca4fc020fae5d
6+
api_directory_checksum: 3f2eabdb24056446ab978af269536dd7f2fef116
77
api_version: v1alpha1
88
aws_sdk_go_version: v1.44.93
99
generator_config_info:
10-
file_checksum: 91bff6ceb1de65791e99fe6fa5f8edbc3dbd2323
10+
file_checksum: 9eac8d3730cfe212c3a88aa5173b22de93c2d0b7
1111
original_file_name: generator.yaml
1212
last_modification:
1313
reason: API generation

apis/v1alpha1/generator.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ resources:
5656
RedrivePolicy:
5757
is_attribute: true
5858
type: string
59+
RedriveAllowPolicy:
60+
is_attribute: true
61+
type: string
5962
QueueArn:
6063
is_attribute: true
6164
is_arn: true

apis/v1alpha1/queue.go

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apis/v1alpha1/zz_generated.deepcopy.go

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/controller/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ kind: Kustomization
66
images:
77
- name: controller
88
newName: public.ecr.aws/aws-controllers-k8s/sqs-controller
9-
newTag: 1.0.3
9+
newTag: 1.0.2

config/crd/bases/sqs.services.k8s.aws_queues.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ spec:
8181
type: string
8282
receiveMessageWaitTimeSeconds:
8383
type: string
84+
redriveAllowPolicy:
85+
type: string
8486
redrivePolicy:
8587
type: string
8688
tags:

generator.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ resources:
5656
RedrivePolicy:
5757
is_attribute: true
5858
type: string
59+
RedriveAllowPolicy:
60+
is_attribute: true
61+
type: string
5962
QueueArn:
6063
is_attribute: true
6164
is_arn: true

helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
22
name: sqs-chart
33
description: A Helm chart for the ACK service controller for Amazon Simple Queue Service (SQS)
4-
version: 1.0.3
5-
appVersion: 1.0.3
4+
version: 1.0.2
5+
appVersion: 1.0.2
66
home: https://github.com/aws-controllers-k8s/sqs-controller
77
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
88
sources:

helm/crds/sqs.services.k8s.aws_queues.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ spec:
8181
type: string
8282
receiveMessageWaitTimeSeconds:
8383
type: string
84+
redriveAllowPolicy:
85+
type: string
8486
redrivePolicy:
8587
type: string
8688
tags:

helm/templates/NOTES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{ .Chart.Name }} has been installed.
2-
This chart deploys "public.ecr.aws/aws-controllers-k8s/sqs-controller:1.0.3".
2+
This chart deploys "public.ecr.aws/aws-controllers-k8s/sqs-controller:1.0.2".
33

44
Check its status by running:
55
kubectl --namespace {{ .Release.Namespace }} get pods -l "app.kubernetes.io/instance={{ .Release.Name }}"

0 commit comments

Comments
 (0)