KubernetesClassAkademik/Clase 7/Ejercicio/01-configmap.yaml

13 lines
291 B
YAML
Raw Permalink Normal View History

2022-09-21 00:21:33 -06:00
apiVersion: v1
kind: ConfigMap
metadata:
name: node-app-configmap
namespace: default
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