-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmetadata.rb
61 lines (57 loc) · 4.13 KB
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name 'cookbook-openshift3'
maintainer 'ENC4U Ltd'
maintainer_email '[email protected]'
license 'MIT'
source_url 'https://github.com/IshentRas/cookbook-openshift3'
issues_url 'https://github.com/IshentRas/cookbook-openshift3/issues'
description 'Installs/Configures Openshift 3.x (>= 3.4)'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
chef_version '>= 13' if respond_to?(:chef_version)
version '2.1.31'
supports 'redhat', '>= 7.1'
supports 'centos', '>= 7.1'
depends 'yum', '>= 5.0'
depends 'iptables', '>= 4.0.0'
depends 'selinux_policy'
depends 'docker', '>= 4.0'
recipe 'cookbook-openshift3::adhoc_migrate_etcd', 'Adhoc action for migrating ETCD from v2 to v3'
recipe 'cookbook-openshift3::adhoc_redeploy_certificates', 'Redeploy certificates'
recipe 'cookbook-openshift3::adhoc_redeploy_cluster_ca', 'Redeploy OpenShift certificates'
recipe 'cookbook-openshift3::adhoc_redeploy_etcd_ca', 'Redeploy ETCD CA certificates'
recipe 'cookbook-openshift3::adhoc_uninstall', 'Adhoc action for uninstalling Openshift from server'
recipe 'cookbook-openshift3::adhoc_reset', 'Adhoc action for resetting server (Keeping OCP configurations, Certificates, ETCD DATA)'
recipe 'cookbook-openshift3::certificate_server', 'Configure the certificate server'
recipe 'cookbook-openshift3::cloud_provider', 'Configure cloud providers'
recipe 'cookbook-openshift3::common', 'Apply common packages'
recipe 'cookbook-openshift3::commons', 'Apply common logic'
recipe 'cookbook-openshift3::default', 'Default recipe'
recipe 'cookbook-openshift3::docker', 'Install/Configure docker service'
recipe 'cookbook-openshift3::etcd_certificates', 'Configure ETCD CA certificate'
recipe 'cookbook-openshift3::etcd_cluster', 'Configure ETCD cluster'
recipe 'cookbook-openshift3::etcd_packages', 'Install/Configure ETCD packages'
recipe 'cookbook-openshift3::etcd_removal', 'Scale down the ETCD cluster'
recipe 'cookbook-openshift3::etcd_scaleup', 'Scale up the ETCD cluster'
recipe 'cookbook-openshift3::excluder', 'Install/Configure the excluder packages'
recipe 'cookbook-openshift3::helper_migrate_certificate_server_cluster', 'Helper for migrating old cert logic to new'
recipe 'cookbook-openshift3::helper_migrate_certificate_server_etcd', 'Helper for migrating old cert logic to new'
recipe 'cookbook-openshift3::master_cluster_ca', 'Configure CA cluster certificate'
recipe 'cookbook-openshift3::master_cluster_certificates', 'Configure Master/Node certificates'
recipe 'cookbook-openshift3::master_cluster', 'Configure HA cluster master (Only Native method)'
recipe 'cookbook-openshift3::master_config_post', 'Configure Post actions for master server'
recipe 'cookbook-openshift3::master', 'Configure basic master logic'
recipe 'cookbook-openshift3::master_standalone', 'Configure standalone master logic (<= 3.6)'
recipe 'cookbook-openshift3::node', 'Configure node server'
recipe 'cookbook-openshift3::nodes_certificates', 'Configure certificates for nodes'
recipe 'cookbook-openshift3::packages', 'Configure YUM repositories'
recipe 'cookbook-openshift3::services', 'Apply common services'
recipe 'cookbook-openshift3::upgrade_certificate_server', 'Control Upgrade for the certificate server (1.3 to 3.7)'
recipe 'cookbook-openshift3::upgrade_control_plane15', 'Control Upgrade from 1.4 to 1.5 (Control plane)'
recipe 'cookbook-openshift3::upgrade_control_plane36', 'Control Upgrade from 1.5 to 3.6 (Control plane)'
recipe 'cookbook-openshift3::upgrade_control_plane37_part1', 'Control Upgrade from 3.6 to 3.7 (Control plane)'
recipe 'cookbook-openshift3::upgrade_control_plane37_part2', 'Control Upgrade from 3.6 to 3.7 (Control plane)'
recipe 'cookbook-openshift3::upgrade_control_plane37', 'Control Upgrade from 3.6 to 3.7 (Control plane)'
recipe 'cookbook-openshift3::upgrade_node15', 'Control Upgrade from 1.4 to 1.5 (Node only)'
recipe 'cookbook-openshift3::upgrade_node36', 'Control Upgrade from 1.5 to 3.6 (Node only)'
recipe 'cookbook-openshift3::upgrade_node37', 'Control Upgrade from 3.6 to 3.7 (Node only)'
recipe 'cookbook-openshift3::validate', 'Pre-validation check before installing OpenShift'
recipe 'cookbook-openshift3::wire_aggregator', 'Configure Wire-aggregator for Service Catalog logic (>= 3.6)'