17 lines
490 B
YAML
17 lines
490 B
YAML
|
apiVersion: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: silly-game-config
|
||
|
namespace: silly-game
|
||
|
data:
|
||
|
game-config.properties: |
|
||
|
spring.application.name=silly-game
|
||
|
|
||
|
spring.mail.host=mailhog.mailhog.svc.cluster.local
|
||
|
spring.mail.port=1025
|
||
|
spring.mail.username=
|
||
|
spring.mail.password=
|
||
|
spring.mail.properties.mail.smtp.auth=false
|
||
|
spring.mail.properties.mail.smtp.starttls.enable=false
|
||
|
|
||
|
cors.allowed-origin=http://silly-game-service.silly-game.svc.cluster.local
|