mirror of
https://github.com/aleleba/curso-basico-kubernetes.git
synced 2025-01-24 22:34:45 -06:00
13 lines
292 B
YAML
13 lines
292 B
YAML
|
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
|
||
|
|