deployment of golang project with yaml file

12/21/2018

i have a shopping card app with server and client side and i want to deploy it using Minikube and Kubernetes
should we create two Yaml files for the server and the client or not ?
any ideas guys on how to create the Yaml files.

-- hajji
kubernetes
minikube
yaml

1 Answer

12/21/2018

one for server and one for client

simple path

k8s
   -values_production.yaml for production server
   -value_staging.yaml for staging server

thats all

in yaml files you should store enviroment variables and parse them by prefixes it's most simple way

-- frankegoesdown
Source: StackOverflow