Skip to content

Instantly share code, notes, and snippets.

@Zerpet
Last active March 8, 2024 09:55
Show Gist options
  • Save Zerpet/1a106575fe63a4917f2706c592302b72 to your computer and use it in GitHub Desktop.
Save Zerpet/1a106575fe63a4917f2706c592302b72 to your computer and use it in GitHub Desktop.
RabbitMQ Perf Test deployment in Kubernetes
apiVersion: apps/v1
kind: Deployment
metadata:
name: perf-test-deployment
labels:
app: perf-test
spec:
replicas: 1
selector:
matchLabels:
app: perf-test
template:
metadata:
labels:
app: perf-test
spec:
containers:
- name: perf-test
image: pivotalrabbitmq/perf-test:latest
command: ["sleep", "10000"]
@Zerpet
Copy link
Author

Zerpet commented Mar 8, 2024

The idea of this snippet and the command in my comment is to get a shell session, and try different combinations of Perf-Test arguments interactively.

@xixiangzouyibian
Copy link

Yes, your idea has already helped me. Just share something not found in official documentations :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment