22 lines
No EOL
650 B
YAML
22 lines
No EOL
650 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
|
|
environment.ts: |
|
|
export const environment = {
|
|
production: false,
|
|
apiBaseUrl: 'http://silly-game-service.silly-game.svc.cluster.local'
|
|
}; |