summaryrefslogtreecommitdiffstats
path: root/roles/openshift_hosted/defaults/main.yml
blob: 769d006e1c0c082003ee2ff8f49fb0ac5f9e8e78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
registry_volume_claim: 'registry-claim'

openshift_hosted_router_edits:
- key: spec.strategy.rollingParams.intervalSeconds
  value: 1
  action: put
- key: spec.strategy.rollingParams.updatePeriodSeconds
  value: 1
  action: put
- key: spec.strategy.activeDeadlineSeconds
  value: 21600
  action: put

openshift_hosted_routers:
- name: router
  replicas: "{{ openshift_hosted_router_replicas }}"
  namespace: default
  serviceaccount: router
  selector: "{{ openshift_hosted_router_selector }}"
  images: "{{ openshift_hosted_router_image }}"
  edits: "{{ openshift_hosted_router_edits }}"

openshift_hosted_router_certificates: {}