firsh push
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: rent-server-config
|
||||
namespace: rent-platform
|
||||
data:
|
||||
NODE_ENV: "production"
|
||||
PORT: "3000"
|
||||
DB_HOST: "mysql-service"
|
||||
DB_PORT: "3306"
|
||||
DB_USERNAME: "root"
|
||||
DB_DATABASE: "rent_platform"
|
||||
REDIS_HOST: "redis-service"
|
||||
REDIS_PORT: "6379"
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: rent-server-secret
|
||||
namespace: rent-platform
|
||||
type: Opaque
|
||||
stringData:
|
||||
DB_PASSWORD: "CHANGE_ME"
|
||||
JWT_SECRET: "CHANGE_ME"
|
||||
Reference in New Issue
Block a user