KubernetesClassAkademik/Clase 6/Ejercicio/04-configmap.yaml

13 lines
292 B
YAML
Raw Normal View History

2022-09-14 15:56:37 -06:00
apiVersion: v1
kind: ConfigMap
metadata:
name: node-app-configmap
namespace: node-app
data:
#WHITELIST URLS Default to http://localhost
WHITELIST_URLS: http://localhost,http://localhost:4000
PORT: "4000"
HOST_MONGO: mongodb-node-app-svc
PORT_MONGO: "27017"
DB_MONGO: app_db