Advertisement
Guest User

Untitled

a guest
Oct 17th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. #Sample YAML config file
  2.  
  3. kind: ConfigMap
  4. apiVersion: v1
  5. metadata:
  6. name: automation-api
  7. data:
  8. application.yml: |-
  9. automation:
  10. global:
  11. default:
  12. pagesize: 10
  13. automationapi:
  14. message: openshift enabled!
  15. spring:
  16. datasource:
  17. url: jdbc:postgresql://${POSTGRESQL_SVC}:5432/${POSTGRESQL_DATABASE}
  18. username: ${POSTGRESQL_USER}
  19. password: ${POSTGRESQL_PASSWORD}
  20. jpa:
  21. properties:
  22. hibernate:
  23. default_schema: automation
  24. hibernate:
  25. ddl-auto: none
  26. logging:
  27. level:
  28. org:
  29. hibernate:
  30. SQL: debug
  31. flyway:
  32. schemas: automation
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement