Last active
September 23, 2024 03:48
-
-
Save Zerpet/1a106575fe63a4917f2706c592302b72 to your computer and use it in GitHub Desktop.
RabbitMQ Perf Test deployment in Kubernetes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, your idea has already helped me. Just share something not found in official documentations :)