├── LICENSE ├── README.md ├── ansible ├── README.md ├── compute.yaml ├── generated_inventory ├── inventory │ ├── rh_rhel_worker │ └── rhel_inv_file ├── ocp.yaml └── roles │ ├── bootstrap │ ├── README.md │ └── tasks │ │ └── main.yml │ ├── dhcp │ ├── handlers │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── templates │ │ └── dhcpd.conf.j2 │ ├── dns │ ├── handlers │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── templates │ │ ├── forward.dns.j2 │ │ ├── named.conf.j2 │ │ ├── reverse.dns.j2 │ │ └── zones.j2 │ ├── http │ ├── handlers │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── templates │ │ └── httpd.conf.j2 │ ├── ignition │ ├── tasks │ │ └── main.yml │ └── templates │ │ └── install-config.j2 │ ├── proxy │ ├── handlers │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── templates │ │ └── haproxy.conf.j2 │ ├── pxe │ ├── handlers │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── templates │ │ ├── default.j2 │ │ ├── ks.j2 │ │ ├── menu.j2 │ │ └── pxe.config.j2 │ └── rhel_compute │ ├── .travis.yml │ ├── README.md │ └── tasks │ └── main.yml ├── examples ├── FC6510 ├── S3048 ├── S5232F-1 ├── S5232F-2 └── multipath.conf ├── python ├── generate_inventory_file.py ├── helper.py ├── log_config.py ├── nodes.py └── nodes.yaml └── sample_yaml ├── sriov ├── compute-1.network.node.policy.yaml ├── compute-1.sriov.network.yaml └── compute-1.sriov.pod.yaml ├── storage ├── isilon │ ├── dynfspod.yaml │ ├── dynfspvc.yaml │ ├── dynfsreg.yaml │ ├── isilon-secret.yaml │ ├── isilon_v140_ops_46.yaml │ ├── restore.yaml │ ├── restorepod.yaml │ └── snapshot.yaml ├── multipathd │ └── multipathmc.yaml ├── ocs │ ├── ocsfs.yaml │ ├── ocsfspod.yaml │ ├── ocsrbd.yaml │ └── ocsrbdpod.yaml ├── powermax │ ├── dyfcpod.yaml │ ├── dyfcpvc.yaml │ ├── dyiscsipod.yaml │ ├── dyiscsipvc.yaml │ ├── powermax_v150_fc_ops_46.yaml │ ├── powermax_v150_iscsi_ops_46.yaml │ ├── restore.yaml │ ├── restorepod.yaml │ ├── secret.yaml │ └── snapshot.yaml └── unity │ ├── dyfcpod.yaml │ ├── dyfcpvc.yaml │ ├── dyiscsipod.yaml │ ├── dyiscsipvc.yaml │ ├── dynfspod.yaml │ ├── dynfspvc.yaml │ ├── emptysecret.yaml │ ├── newiscsipod.yaml │ ├── newiscsipvc.yaml │ ├── pod.yaml │ ├── regpvc.yaml │ ├── restore.yaml │ ├── restorepod.yaml │ ├── secret.json │ ├── snapshot.yaml │ └── unity_v140_ops_46.yaml └── velero ├── pod.yaml └── pvc.yaml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/README.md -------------------------------------------------------------------------------- /ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/README.md -------------------------------------------------------------------------------- /ansible/compute.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/compute.yaml -------------------------------------------------------------------------------- /ansible/generated_inventory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/generated_inventory -------------------------------------------------------------------------------- /ansible/inventory/rh_rhel_worker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/inventory/rh_rhel_worker -------------------------------------------------------------------------------- /ansible/inventory/rhel_inv_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/inventory/rhel_inv_file -------------------------------------------------------------------------------- /ansible/ocp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/ocp.yaml -------------------------------------------------------------------------------- /ansible/roles/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/bootstrap/README.md -------------------------------------------------------------------------------- /ansible/roles/bootstrap/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/bootstrap/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/dhcp/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/dhcp/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/dhcp/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/dhcp/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/dhcp/templates/dhcpd.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/dhcp/templates/dhcpd.conf.j2 -------------------------------------------------------------------------------- /ansible/roles/dns/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/dns/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/dns/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/dns/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/dns/templates/forward.dns.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/dns/templates/forward.dns.j2 -------------------------------------------------------------------------------- /ansible/roles/dns/templates/named.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/dns/templates/named.conf.j2 -------------------------------------------------------------------------------- /ansible/roles/dns/templates/reverse.dns.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/dns/templates/reverse.dns.j2 -------------------------------------------------------------------------------- /ansible/roles/dns/templates/zones.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/dns/templates/zones.j2 -------------------------------------------------------------------------------- /ansible/roles/http/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/http/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/http/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/http/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/http/templates/httpd.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/http/templates/httpd.conf.j2 -------------------------------------------------------------------------------- /ansible/roles/ignition/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/ignition/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/ignition/templates/install-config.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/ignition/templates/install-config.j2 -------------------------------------------------------------------------------- /ansible/roles/proxy/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/proxy/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/proxy/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/proxy/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/proxy/templates/haproxy.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/proxy/templates/haproxy.conf.j2 -------------------------------------------------------------------------------- /ansible/roles/pxe/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/pxe/handlers/main.yml -------------------------------------------------------------------------------- /ansible/roles/pxe/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/pxe/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/pxe/templates/default.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/pxe/templates/default.j2 -------------------------------------------------------------------------------- /ansible/roles/pxe/templates/ks.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/pxe/templates/ks.j2 -------------------------------------------------------------------------------- /ansible/roles/pxe/templates/menu.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/pxe/templates/menu.j2 -------------------------------------------------------------------------------- /ansible/roles/pxe/templates/pxe.config.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/pxe/templates/pxe.config.j2 -------------------------------------------------------------------------------- /ansible/roles/rhel_compute/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/rhel_compute/.travis.yml -------------------------------------------------------------------------------- /ansible/roles/rhel_compute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/rhel_compute/README.md -------------------------------------------------------------------------------- /ansible/roles/rhel_compute/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/ansible/roles/rhel_compute/tasks/main.yml -------------------------------------------------------------------------------- /examples/FC6510: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/examples/FC6510 -------------------------------------------------------------------------------- /examples/S3048: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/examples/S3048 -------------------------------------------------------------------------------- /examples/S5232F-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/examples/S5232F-1 -------------------------------------------------------------------------------- /examples/S5232F-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/examples/S5232F-2 -------------------------------------------------------------------------------- /examples/multipath.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/examples/multipath.conf -------------------------------------------------------------------------------- /python/generate_inventory_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/python/generate_inventory_file.py -------------------------------------------------------------------------------- /python/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/python/helper.py -------------------------------------------------------------------------------- /python/log_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/python/log_config.py -------------------------------------------------------------------------------- /python/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/python/nodes.py -------------------------------------------------------------------------------- /python/nodes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/python/nodes.yaml -------------------------------------------------------------------------------- /sample_yaml/sriov/compute-1.network.node.policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/sriov/compute-1.network.node.policy.yaml -------------------------------------------------------------------------------- /sample_yaml/sriov/compute-1.sriov.network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/sriov/compute-1.sriov.network.yaml -------------------------------------------------------------------------------- /sample_yaml/sriov/compute-1.sriov.pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/sriov/compute-1.sriov.pod.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/isilon/dynfspod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/isilon/dynfspod.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/isilon/dynfspvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/isilon/dynfspvc.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/isilon/dynfsreg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/isilon/dynfsreg.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/isilon/isilon-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/isilon/isilon-secret.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/isilon/isilon_v140_ops_46.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/isilon/isilon_v140_ops_46.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/isilon/restore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/isilon/restore.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/isilon/restorepod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/isilon/restorepod.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/isilon/snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/isilon/snapshot.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/multipathd/multipathmc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/multipathd/multipathmc.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/ocs/ocsfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/ocs/ocsfs.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/ocs/ocsfspod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/ocs/ocsfspod.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/ocs/ocsrbd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/ocs/ocsrbd.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/ocs/ocsrbdpod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/ocs/ocsrbdpod.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/powermax/dyfcpod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/powermax/dyfcpod.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/powermax/dyfcpvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/powermax/dyfcpvc.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/powermax/dyiscsipod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/powermax/dyiscsipod.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/powermax/dyiscsipvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/powermax/dyiscsipvc.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/powermax/powermax_v150_fc_ops_46.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/powermax/powermax_v150_fc_ops_46.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/powermax/powermax_v150_iscsi_ops_46.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/powermax/powermax_v150_iscsi_ops_46.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/powermax/restore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/powermax/restore.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/powermax/restorepod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/powermax/restorepod.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/powermax/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/powermax/secret.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/powermax/snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/powermax/snapshot.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/unity/dyfcpod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/unity/dyfcpod.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/unity/dyfcpvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/unity/dyfcpvc.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/unity/dyiscsipod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/unity/dyiscsipod.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/unity/dyiscsipvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/unity/dyiscsipvc.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/unity/dynfspod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/unity/dynfspod.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/unity/dynfspvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/unity/dynfspvc.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/unity/emptysecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/unity/emptysecret.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/unity/newiscsipod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/unity/newiscsipod.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/unity/newiscsipvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/unity/newiscsipvc.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/unity/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/unity/pod.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/unity/regpvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/unity/regpvc.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/unity/restore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/unity/restore.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/unity/restorepod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/unity/restorepod.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/unity/secret.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/unity/secret.json -------------------------------------------------------------------------------- /sample_yaml/storage/unity/snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/unity/snapshot.yaml -------------------------------------------------------------------------------- /sample_yaml/storage/unity/unity_v140_ops_46.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/storage/unity/unity_v140_ops_46.yaml -------------------------------------------------------------------------------- /sample_yaml/velero/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/velero/pod.yaml -------------------------------------------------------------------------------- /sample_yaml/velero/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dell-esg/openshift-bare-metal/HEAD/sample_yaml/velero/pvc.yaml --------------------------------------------------------------------------------