main.yml 736 B

123456789101112131415161718192021222324252627282930
  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 }}"
  16. namespace: default
  17. serviceaccount: router
  18. selector: "{{ openshift_hosted_router_selector }}"
  19. images: "{{ openshift_hosted_router_image }}"
  20. edits: "{{ openshift_hosted_router_edits }}"
  21. stats_port: 1936
  22. ports:
  23. - 80:80
  24. - 443:443
  25. certificates: "{{ openshift_hosted_router_certificate | default({}) }}"
  26. openshift_hosted_router_certificates: {}