main.yml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. ---
  2. registry_volume_claim: 'registry-claim'
  3. openshift_hosted_router_edits:
  4. - key: spec.strategy.rollingParams.intervalSeconds
  5. value: 1
  6. action: put
  7. - key: spec.strategy.rollingParams.updatePeriodSeconds
  8. value: 1
  9. action: put
  10. - key: spec.strategy.activeDeadlineSeconds
  11. value: 21600
  12. action: put
  13. openshift_hosted_routers:
  14. - name: router
  15. replicas: "{{ replicas | default(1) }}"
  16. namespace: default
  17. serviceaccount: router
  18. selector: "{{ openshift_hosted_router_selector | default(None) }}"
  19. images: "{{ openshift_hosted_router_image | default(None) }}"
  20. edits: "{{ openshift_hosted_router_edits }}"
  21. stats_port: 1936
  22. ports:
  23. - 80:80
  24. - 443:443
  25. certificate: "{{ openshift_hosted_router_certificate | default({}) }}"
  26. openshift_hosted_router_certificate: {}
  27. openshift_hosted_registry_cert_expire_days: 730
  28. openshift_hosted_router_create_certificate: True
  29. r_openshift_hosted_router_os_firewall_deny: []
  30. r_openshift_hosted_router_os_firewall_allow: []
  31. r_openshift_hosted_registry_os_firewall_deny: []
  32. r_openshift_hosted_registry_os_firewall_allow:
  33. - service: Docker Registry Port
  34. port: 5000/tcp
  35. cond: "{{ r_openshift_hosted_use_calico }}"