Revert "feat: add memory service queues (processing, indexing, dlq)"
This reverts commit af6fc84a18.
This commit is contained in:
@@ -1,13 +0,0 @@
|
||||
apiVersion: kmsvc.io/v1
|
||||
kind: Queue
|
||||
metadata:
|
||||
name: memory-dlq
|
||||
namespace: sqs
|
||||
spec:
|
||||
isDLQ: true
|
||||
visibilityTimeoutSeconds: 300
|
||||
messageRetentionPeriodSeconds: 1209600 # 14 days
|
||||
maxReceiveCount: 1 # DLQ itself shouldn't retry
|
||||
partitionsPerShard: 1
|
||||
minShards: 1
|
||||
maxShards: 1
|
||||
@@ -1,14 +0,0 @@
|
||||
apiVersion: kmsvc.io/v1
|
||||
kind: Queue
|
||||
metadata:
|
||||
name: memory-indexing
|
||||
namespace: sqs
|
||||
spec:
|
||||
fifoQueue: true
|
||||
visibilityTimeoutSeconds: 60
|
||||
messageRetentionPeriodSeconds: 2592000 # 30 days
|
||||
maxReceiveCount: 5
|
||||
partitionsPerShard: 1
|
||||
minShards: 1
|
||||
maxShards: 2
|
||||
delaySeconds: 0
|
||||
@@ -1,9 +0,0 @@
|
||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
|
||||
namespace: sqs
|
||||
|
||||
resources:
|
||||
- processing-queue.yaml
|
||||
- indexing-queue.yaml
|
||||
- dlq.yaml
|
||||
@@ -1,15 +0,0 @@
|
||||
apiVersion: kmsvc.io/v1
|
||||
kind: Queue
|
||||
metadata:
|
||||
name: memory-processing
|
||||
namespace: sqs
|
||||
spec:
|
||||
fifoQueue: false
|
||||
visibilityTimeoutSeconds: 120
|
||||
messageRetentionPeriodSeconds: 604800 # 7 days
|
||||
maxReceiveCount: 3
|
||||
deadLetterTargetQueue: memory-dlq
|
||||
partitionsPerShard: 3
|
||||
minShards: 1
|
||||
maxShards: 4
|
||||
shardSplitThresholdBytesPerSec: 5242880
|
||||
@@ -1,20 +0,0 @@
|
||||
apiVersion: argoproj.io/v1alpha1
|
||||
kind: Application
|
||||
metadata:
|
||||
name: memory-queues
|
||||
namespace: argocd
|
||||
annotations:
|
||||
argocd.argoproj.io/sync-wave: "7"
|
||||
spec:
|
||||
project: homelab
|
||||
source:
|
||||
repoURL: https://forgejo.riotpiao.com/rock/homelab.git
|
||||
targetRevision: main
|
||||
path: k8s/apps/messaging/memory-queues
|
||||
destination:
|
||||
server: https://kubernetes.default.svc
|
||||
namespace: sqs
|
||||
syncPolicy:
|
||||
automated:
|
||||
prune: true
|
||||
selfHeal: true
|
||||
Reference in New Issue
Block a user