main.yml 881 B

1234567891011121314151617181920212223242526272829303132
  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. certificates: "{{ openshift_hosted_router_certificates | default({}) }}"
  26. openshift_hosted_router_certificates: {}
  27. openshift_hosted_registry_cert_expire_days: 730
  28. openshift_hosted_router_create_certificate: False