main.yml 4.4 KB

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