main.yml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ---
  2. openshift_master_loopback_config: "{{ openshift_master_config_dir }}/openshift-master.kubeconfig"
  3. loopback_context_string: "current-context: {{ openshift.master.loopback_context_name }}"
  4. openshift_master_session_secrets_file: "{{ openshift_master_config_dir }}/session-secrets.yaml"
  5. openshift_master_policy: "{{ openshift_master_config_dir }}/policy.json"
  6. scheduler_config:
  7. kind: Policy
  8. apiVersion: v1
  9. predicates: "{{ openshift_master_scheduler_predicates
  10. | default(openshift_master_scheduler_current_predicates
  11. | default(openshift_master_scheduler_default_predicates)) }}"
  12. priorities: "{{ openshift_master_scheduler_priorities
  13. | default(openshift_master_scheduler_current_priorities
  14. | default(openshift_master_scheduler_default_priorities)) }}"
  15. openshift_master_valid_grant_methods:
  16. - auto
  17. - prompt
  18. - deny
  19. openshift_master_is_scaleup_host: False
  20. # These defaults assume forcing journald persistence, fsync to disk once
  21. # a second, rate-limiting to 10,000 logs a second, no forwarding to
  22. # syslog or wall, using 8GB of disk space maximum, using 10MB journal
  23. # files, keeping only a days worth of logs per journal file, and
  24. # retaining journal files no longer than a month.
  25. journald_vars_to_replace:
  26. - { var: Storage, val: persistent }
  27. - { var: Compress, val: yes }
  28. - { var: SyncIntervalSec, val: 1s }
  29. - { var: RateLimitInterval, val: 1s }
  30. - { var: RateLimitBurst, val: 10000 }
  31. - { var: SystemMaxUse, val: 8G }
  32. - { var: SystemKeepFree, val: 20% }
  33. - { var: SystemMaxFileSize, val: 10M }
  34. - { var: MaxRetentionSec, val: 1month }
  35. - { var: MaxFileSec, val: 1day }
  36. - { var: ForwardToSyslog, val: no }
  37. - { var: ForwardToWall, val: no }