Forum Discussion
dannybhar
Oct 28, 2021Copper Contributor
azure kuberntes
Hi
I have simulator application running in kubernters with one node as I need to increase load I am thinking to increase it to cluster of two. Is that sufficient or I need to make sure my code support multiserver?
kind: Deployment
metadata:
name: #{deployment-name}#
labels:
app: sim
spec:
selector:
matchLabels:
app: sim
replicas: 1
template:
metadata:
labels:
app: sim
spec:
imagePullSecrets:
- name: mycontainer
containers:
- name: sim
image: myimage
env:
2 Replies
- Anthony_NorwoodBrass Contributor
Hi dannybhar
Without knowing what the 'myimage' image contains or what your app specifically does, it'll be impossible to answer this question. Did you create the simulator app and/or the image yourself?
Thanks,
Anthony
- dannybharCopper Contributorit is already existing and I can not share image, but it support parallel processing
and application is command line tool like , need to give command and then simulator will start with given specification