Advertisement
Guest User

Untitled

a guest
May 10th, 2019
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. proxy:
  2. secretToken: <<secret proxy token goes here>>
  3.  
  4. hub:
  5. cookieSecret: <<secret hub token goes here>>
  6. db:
  7. url: postgres+psycopg2://postgres:change_this_password@pgdatabase-postgresql.pgdatabase.svc.cluster.local:5432/jhubdb
  8. type: postgres
  9. password: change_this_password
  10.  
  11. singleuser:
  12. cpu:
  13. limit: 1
  14. guarantee: 0.05
  15. memory:
  16. limit: 2G
  17. guarantee: 512M
  18. storage:
  19. type: none
  20.  
  21. # culling old users, unit: seconds
  22. cull:
  23. enabled: true
  24. timeout: 1800
  25. every: 300
  26.  
  27. auth:
  28. admin:
  29. users:
  30. - admin
  31. access: false
  32.  
  33. # allow image to be prepulled
  34. prePuller:
  35. continuous:
  36. enabled: true
  37.  
  38. # pod priority - scale up nodes ahead of real users arrivals
  39. # user scheduler - pack users tight on some nodes
  40. scheduling:
  41. userScheduler:
  42. enabled: true
  43. podPriority:
  44. enabled: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement