I have a very simple node.js application (HTTP service), which \"talks\" to redis. I want to create a deployment and run it with minikube.
From my understanding, I n
yes you need a separete deployement
and service
for redis
use kubernetes service discovery , should be built in , KubeDNS , CoreDNS
use readniness and liveness probes
Yes , you can write a single big yaml file to describe all the deployments and services. then:
kubectl apply -f yourfile.yml
or you can place the yaml in separate files and then do the :
kubectl apply -f dir/