main.yml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. ---
  2. openshift_client_binary: "{{ openshift_is_containerized | ternary('/usr/local/bin/oc', 'oc') }}"
  3. openshift_cli_image_dict:
  4. origin: 'openshift/origin'
  5. openshift-enterprise: 'openshift3/ose'
  6. repoquery_cmd: "{{ (ansible_pkg_mgr == 'dnf') | ternary('dnf repoquery --latest-limit 1 -d 0', 'repoquery --plugins') }}"
  7. repoquery_installed: "{{ (ansible_pkg_mgr == 'dnf') | ternary('dnf repoquery --latest-limit 1 -d 0 --disableexcludes=all --installed', 'repoquery --plugins --installed') }}"
  8. openshift_hosted_images_dict:
  9. origin: 'openshift/origin-${component}:${version}'
  10. openshift-enterprise: 'openshift3/ose-${component}:${version}'
  11. openshift_cli_image: "{{ osm_image | default(openshift_cli_image_dict[openshift_deployment_type]) }}"
  12. # osm_default_subdomain is an old migrated fact, can probably be removed.
  13. osm_default_subdomain: "router.default.svc.cluster.local"
  14. openshift_master_default_subdomain: "{{ osm_default_subdomain }}"
  15. openshift_hosted_etcd_storage_nfs_directory: '/exports'
  16. openshift_hosted_etcd_storage_nfs_options: '*(rw,root_squash)'
  17. openshift_hosted_etcd_storage_volume_name: 'etcd'
  18. openshift_hosted_etcd_storage_volume_size: '1Gi'
  19. openshift_hosted_etcd_storage_create_pv: True
  20. openshift_hosted_etcd_storage_create_pvc: False
  21. openshift_hosted_etcd_storage_access_modes:
  22. - 'ReadWriteOnce'
  23. openshift_hosted_registry_namespace: 'default'
  24. openshift_hosted_registry_storage_volume_name: 'registry'
  25. openshift_hosted_registry_storage_volume_size: '5Gi'
  26. openshift_hosted_registry_storage_create_pv: True
  27. openshift_hosted_registry_storage_create_pvc: True
  28. openshift_hosted_registry_storage_nfs_directory: '/exports'
  29. openshift_hosted_registry_storage_nfs_options: '*(rw,root_squash)'
  30. openshift_hosted_registry_storage_glusterfs_endpoints: 'glusterfs-registry-endpoints'
  31. openshift_hosted_registry_storage_glusterfs_path: glusterfs-registry-volume
  32. openshift_hosted_registry_storage_glusterfs_readOnly: False
  33. openshift_hosted_registry_storage_glusterfs_swap: False
  34. openshift_hosted_registry_storage_glusterfs_swapcopy: True
  35. openshift_hosted_registry_storage_glusterfs_ips: []
  36. openshift_hosted_registry_storage_access_modes:
  37. - 'ReadWriteMany'
  38. openshift_logging_storage_nfs_directory: '/exports'
  39. openshift_logging_storage_nfs_options: '*(rw,root_squash)'
  40. openshift_logging_storage_volume_name: 'logging-es'
  41. openshift_logging_storage_create_pv: True
  42. openshift_logging_storage_create_pvc: False
  43. openshift_logging_storage_access_modes:
  44. - ['ReadWriteOnce']
  45. openshift_loggingops_storage_volume_name: 'logging-es-ops'
  46. openshift_loggingops_storage_volume_size: '10Gi'
  47. openshift_loggingops_storage_create_pv: True
  48. openshift_loggingops_storage_create_pvc: False
  49. openshift_loggingops_storage_nfs_directory: '/exports'
  50. openshift_loggingops_storage_nfs_options: '*(rw,root_squash)'
  51. openshift_loggingops_storage_access_modes:
  52. - 'ReadWriteOnce'
  53. openshift_metrics_deploy: False
  54. openshift_metrics_duration: 7
  55. openshift_metrics_resolution: '10s'
  56. openshift_metrics_storage_volume_name: 'metrics'
  57. openshift_metrics_storage_volume_size: '10Gi'
  58. openshift_metrics_storage_create_pv: True
  59. openshift_metrics_storage_create_pvc: False
  60. openshift_metrics_storage_nfs_directory: '/exports'
  61. openshift_metrics_storage_nfs_options: '*(rw,root_squash)'
  62. openshift_metrics_storage_access_modes:
  63. - 'ReadWriteOnce'
  64. openshift_prometheus_storage_volume_name: 'prometheus'
  65. openshift_prometheus_storage_volume_size: '10Gi'
  66. openshift_prometheus_storage_nfs_directory: '/exports'
  67. openshift_prometheus_storage_nfs_options: '*(rw,root_squash)'
  68. openshift_prometheus_storage_access_modes:
  69. - 'ReadWriteOnce'
  70. openshift_prometheus_storage_create_pv: True
  71. openshift_prometheus_storage_create_pvc: False
  72. openshift_prometheus_alertmanager_storage_volume_name: 'prometheus-alertmanager'
  73. openshift_prometheus_alertmanager_storage_volume_size: '10Gi'
  74. openshift_prometheus_alertmanager_storage_nfs_directory: '/exports'
  75. openshift_prometheus_alertmanager_storage_nfs_options: '*(rw,root_squash)'
  76. openshift_prometheus_alertmanager_storage_access_modes:
  77. - 'ReadWriteOnce'
  78. openshift_prometheus_alertmanager_storage_create_pv: True
  79. openshift_prometheus_alertmanager_storage_create_pvc: False
  80. openshift_prometheus_alertbuffer_storage_volume_name: 'prometheus-alertbuffer'
  81. openshift_prometheus_alertbuffer_storage_volume_size: '10Gi'
  82. openshift_prometheus_alertbuffer_storage_nfs_directory: '/exports'
  83. openshift_prometheus_alertbuffer_storage_nfs_options: '*(rw,root_squash)'
  84. openshift_prometheus_alertbuffer_storage_access_modes:
  85. - 'ReadWriteOnce'
  86. openshift_prometheus_alertbuffer_storage_create_pv: True
  87. openshift_prometheus_alertbuffer_storage_create_pvc: False
  88. openshift_service_type_dict:
  89. origin: origin
  90. openshift-enterprise: atomic-openshift
  91. openshift_service_type: "{{ openshift_service_type_dict[openshift_deployment_type] }}"