- Standalone SQS-service repository - Multi-tenant message queue service, AWS SQS compatible - Based on GoAws, with mutable tenants, auth, WebUI, Redis persistence - Ready for independent development and deployment - See doc/ and README.md for architecture and usage
20 lines
327 B
YAML
20 lines
327 B
YAML
# deployments/k8s/service.yaml
|
|
# Service для shared-sqs
|
|
# Created: 2026-04-09
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: shared-sqs
|
|
namespace: shared-sqs
|
|
labels:
|
|
app: shared-sqs
|
|
spec:
|
|
selector:
|
|
app: shared-sqs
|
|
ports:
|
|
- name: http
|
|
port: 4100
|
|
targetPort: 4100
|
|
protocol: TCP
|
|
type: ClusterIP
|