├── .gitignore ├── INSTALLER_VERSION ├── LICENSE ├── Makefile ├── Makefile.ocp ├── OCP_VERSION ├── PLAYBOOK.adoc ├── README.adoc ├── Session.vim ├── ansible.cfg ├── conf ├── base-images.yml ├── base-rpms.txt ├── bootable │ ├── EULA │ ├── GPL │ ├── comps.xml │ ├── discinfo │ ├── f2_net.txt │ ├── isolinux.cfg │ └── media.repo ├── build-rpms.txt ├── local.repo ├── manifest.yml ├── profile.d │ └── odie-commands.sh └── rc │ ├── bashrc │ ├── gitconfig │ ├── sshConfig │ └── vimrc ├── contrib ├── README.md ├── bin │ ├── 7z │ ├── README.adoc │ ├── ag │ ├── jq-linux64 │ ├── semver │ ├── tailodie │ └── yaml_linux_amd64 ├── cac-proxy │ ├── Dockerfile │ ├── README.txt │ ├── VERSION │ ├── apache-global.conf │ ├── healthz.html │ ├── index.html │ ├── ose-pivproxy-deployment-template.yml │ ├── passwd.template │ ├── pivproxy.conf │ ├── shared-build.sh │ ├── shared-setup.sh │ └── start.sh ├── certs │ └── PLACEHOLDER ├── cicd │ ├── README.md │ ├── cicd-template.yaml │ ├── deploy.sh │ ├── jenkins-ephemeral-template.json │ └── jenkins-persistent-template.json ├── dev_tools │ ├── build-and-test-iso.sh │ ├── init_kvm_cluster.yml │ └── reverse-proxy.sh ├── env-config │ ├── build │ │ └── hosts.csv │ ├── default │ │ └── hosts.csv │ ├── full │ │ └── hosts.csv │ └── lab │ │ └── hosts.csv ├── ldap │ ├── ldap-config.yml │ ├── ldap_instructions.txt │ └── pivproxy.conf ├── ocp_patched_tasks │ └── generate_hawkular_certificates.yaml ├── postgresql-container-stig │ ├── .Dockerfile.rhel7.swp │ ├── .gitignore │ ├── Dockerfile.rhel7 │ ├── Dockerfile.rhel7.scripts │ ├── VERSION │ └── root │ │ └── usr │ │ ├── bin │ │ └── run-postgresql │ │ └── share │ │ ├── container-scripts │ │ └── postgresql │ │ │ ├── README.md │ │ │ ├── stig-custom-pg_hba.conf.template │ │ │ ├── stig-custom-pg_ident.conf.template │ │ │ ├── stig-custom-pgaudit-postgresql.conf.template │ │ │ ├── stig-custom-postgresql.conf.template │ │ │ ├── stig-custom-syslog-postgresql.conf.template │ │ │ └── stig.sh │ │ └── pgaudit_95-1.0.4-1.rhel7.x86_64.rpm ├── python-docker.spec └── scripts │ ├── docker-gc │ └── watch-for-changes.sh ├── deploy.sh ├── dist ├── do-build.sh ├── documentation ├── Makefile ├── README.adoc ├── assets │ ├── fonts │ │ └── liberation │ │ │ ├── LiberationSans-Bold.ttf │ │ │ ├── LiberationSans-BoldItalic.ttf │ │ │ ├── LiberationSans-Italic.ttf │ │ │ └── LiberationSans-Regular.ttf │ └── images │ │ ├── EngagementJournalCoverPageLogoNew.jpg │ │ ├── diagrams │ │ └── clusterOverview.png │ │ ├── header.jpeg │ │ ├── jumphost │ │ ├── 0010-boot-menu-selection.png │ │ ├── 0020-select-language.png │ │ ├── 0030-software-selection.png │ │ ├── 0040-basic-web-server.png │ │ ├── 0050-installation-destination.png │ │ ├── 0051-diskSelect.png │ │ ├── 0060-i-will-configure-partitioning.png │ │ ├── 0070-create-partitions-automatically.png │ │ ├── 0080-default-jumphost-partitions.png │ │ ├── 0090-select-the-home-partition.png │ │ ├── 0100-click-minus-to-remove-home.png │ │ ├── 0101-three-buttons.png │ │ ├── 0110-select-the-root-partition.png │ │ ├── 0200-kdump.png │ │ ├── 0201-kdump.png │ │ ├── 0300-network.png │ │ ├── 0301-hostname.png │ │ ├── 0302-ethernet.png │ │ ├── 0304-general-auto-connect.png │ │ ├── 0320-ipv4-manual.png │ │ ├── 0321-ipv4-static.png │ │ ├── 0322-ipv4-dns.png │ │ ├── 0400-begin-installation.png │ │ ├── 0401-root-password.png │ │ ├── 0402-root-password-entry.png │ │ ├── 0501-reboot.png │ │ ├── 0502-console.png │ │ ├── 0503-initial-login.png │ │ ├── 404-user-entry.png │ │ ├── button-continue.png │ │ ├── button-done.png │ │ ├── button-minus.png │ │ └── button-plus.png │ │ ├── technical │ │ ├── registry-01.png │ │ └── registry-02.png │ │ └── watermark-draft.png ├── auto-compile.sh ├── redhat-theme.yml └── volumes │ ├── general │ ├── preface.adoc │ ├── software-component.adoc │ └── teamRoster.adoc │ ├── user_guide │ ├── bluesuit.adoc │ ├── build_properties.adoc │ ├── config_yml.adoc │ ├── dns.adoc │ ├── hardware-requirements.adoc │ ├── jumphost.adoc │ └── reference_table.adoc │ ├── vol04_runbook.adoc │ └── vol04_userguide.adoc ├── files ├── docker-storage-setup ├── lb-nfs-etc-exports └── ose.repo ├── inventory ├── csv_inventory.py ├── group_vars │ ├── all │ │ ├── certs.yml │ │ ├── env.yml │ │ ├── images.yml │ │ ├── internal.yml │ │ ├── ks.yml │ │ ├── ocp.yml │ │ ├── odie.yml │ │ └── secret.yml │ ├── lb.yml │ └── registry.yml ├── host_vars │ └── .gitignore ├── hosts-ha.csv.example └── hosts-lab.csv.example ├── manifests ├── base-rpms.txt.packages └── base-rpms.txt.processed ├── odie-check.yml ├── odie-configure.yml ├── odie-generate.yml ├── odie-harden.yml ├── odie-install.yml ├── odie-provision.yml ├── odie-validate.yml ├── odie.sh ├── playbooks ├── app_deployment │ ├── initial_setup.yml │ └── update_crl.yml ├── container_images │ ├── export-images.yml │ ├── import-images.yml │ ├── pull.yml │ ├── push-delta.yml │ ├── push.yml │ ├── smoketest-images.yml │ └── tasks │ │ └── push_registry.yml ├── development │ ├── configure_jumphost.retry │ ├── configure_jumphost.yml │ ├── install_odie.yml │ ├── mount-odie-src.yml │ ├── mount_dir_nfs.yml │ ├── provision_jumphost.yml │ ├── provision_vms.yml │ └── snapshot_vms.yml ├── generate_configuration │ ├── generate_kickstarts.yml │ └── property_generation.yml ├── media_preparation │ └── generate_jumphost_ks.yml ├── ocp_install │ ├── htpasswd.yml │ ├── install_gluster.yml │ ├── install_jumphost_cert.yml │ ├── install_logging.yml │ ├── install_metrics.yml │ ├── patch_99-origin-dns.yml │ ├── prepare_hosts.yml │ ├── prepare_registry.yml │ ├── setup_ntp.yml │ └── setup_rsyslog.yml ├── operations │ ├── check_dns.yml │ ├── ping.yml │ ├── reboot_hosts.yml │ ├── reset_ssh_known_hosts.yml │ ├── setup_dnsmasq.yml │ ├── teardown_dnsmasq.yml │ └── update_rpms.yml ├── security │ ├── .configure_pivproxy_roles.yml.swp │ ├── aide.yml │ ├── configure_ldap.yml │ ├── configure_pivproxy_roles.yml │ ├── configure_registry_console_certs.yml │ ├── fips_check.yml │ ├── firewalld.yml │ ├── ifcfg.yml │ ├── install_pivproxy.yml │ ├── login_defs.yml │ ├── misc.yml │ ├── netconfig.yml │ ├── ntp.yml │ ├── oscap-remediation.yml │ ├── oscap-scan.yml │ ├── pam.yml │ ├── update_ansible_cfg.yml │ └── update_pivproxy.yml └── updates │ └── 0.7.0.0-rsyslog-forwarding.yml ├── roles ├── configure_ldap │ ├── handlers │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── templates │ │ ├── group-sync │ │ └── whitelist ├── dnsmasq_configuration │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ ├── main.yml │ │ └── restart_dnsmasq.yml │ ├── tasks │ │ ├── dnsmasq_configuration.yml │ │ └── main.yml │ └── vars │ │ └── main.yml ├── docker_login │ └── tasks │ │ └── main.yml ├── docker_pull │ ├── defaults │ │ └── main.yml │ ├── tasks │ │ ├── main.yml │ │ ├── pull_archive.yml │ │ └── pull_image_archive.yml │ └── templates │ │ └── manifest.yml ├── docker_push │ ├── defaults │ │ └── main.yml │ └── tasks │ │ ├── load_archive.yml │ │ ├── main.yml │ │ └── tag_push.yml ├── httpd-configure │ ├── tasks │ │ └── main.yml │ └── templates │ │ └── httpd-conf.j2 ├── install_cac_proxy │ ├── defaults │ │ └── main.yml │ ├── files │ │ └── ose-pivproxy-deployment-template.yml │ ├── handlers │ │ └── main.yml │ └── tasks │ │ ├── certs_configuration.yml │ │ └── main.yml ├── kickstart-generator │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ ├── includes │ │ │ ├── common-footer.j2 │ │ │ ├── common-header.j2 │ │ │ ├── common-packages.j2 │ │ │ ├── common-user.j2 │ │ │ ├── disk-rhel.j2 │ │ │ ├── docker-setup.j2 │ │ │ └── second-block.j2 │ │ ├── infra-ks.j2 │ │ ├── jumphost-ks.j2 │ │ ├── lb_nfs-ks.j2 │ │ ├── master-ks.j2 │ │ ├── node-ks.j2 │ │ ├── registry-ks.j2 │ │ └── repos.j2 │ ├── tests │ │ ├── inventory │ │ └── test.yml │ └── vars │ │ └── main.yml ├── ocp_inventory_generator │ ├── defaults │ │ └── main.yml │ ├── tasks │ │ ├── inventory_gen.yml │ │ └── main.yml │ ├── templates │ │ └── ocp-inventory.j2 │ └── test │ │ └── test.yml ├── odie_properties │ ├── defaults │ │ └── main.yml │ ├── tasks │ │ ├── copy_config.yml │ │ ├── main.yml │ │ ├── properties.yml │ │ └── property_fragments.yml │ ├── templates │ │ └── property_fragment.j2 │ ├── tests │ │ ├── .gitignore │ │ ├── inventory │ │ ├── property_generation.yml │ │ └── props.yml │ └── vars │ │ └── main.yml ├── openshift_facts ├── os_firewall ├── provision_vm │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ ├── main.yml │ │ └── restart_dnsmasq.yml │ ├── tasks │ │ ├── add_etc_hosts_entry.yml │ │ ├── config_etc_hosts.yml │ │ ├── main.yml │ │ ├── ops │ │ │ ├── add_ssh_authorized_key.yml │ │ │ ├── delete_vm.yml │ │ │ ├── start_vm.yml │ │ │ ├── vm_state.yml │ │ │ └── wait_until_shutdown.yml │ │ ├── reset_known_hosts.yml │ │ ├── setup_kvm.yml │ │ └── setup_pool.yml │ └── templates │ │ └── kvm.xml.j2 ├── rsyslog_configuration │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── files │ │ ├── create-rsyslog-subdirs.sh │ │ ├── remote_log_rotate.sh │ │ └── rotate_var_log_messages.sh │ ├── handlers │ │ └── main.yml │ ├── tasks │ │ ├── main.yml │ │ ├── rsyslog_log_rotation.yml │ │ ├── rsyslog_remote_server.yml │ │ └── rsyslog_setup_client.yml │ └── templates │ │ ├── auditd-rsyslog.conf │ │ ├── docker.json.j2 │ │ ├── remote_log_rotate.j2 │ │ ├── rsyslog.conf-remote-template │ │ └── rsyslog.conf.j2 └── update_cac_proxy │ └── tasks │ └── main.yml └── scripts ├── delete-project.sh ├── generate-cve-delta.pl ├── idle_spinner.sh ├── install_asciidoctor.sh ├── lib.sh ├── local-git-repo.sh ├── migrate-images.sh ├── odie-version.pl ├── oscap-remediation.sh ├── parse_adoc_headers.py ├── repo-pki.sh ├── sshchpwd.exp └── stage-iso.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALLER_VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0+alpha 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.ocp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/Makefile.ocp -------------------------------------------------------------------------------- /OCP_VERSION: -------------------------------------------------------------------------------- 1 | 3.11.46 2 | -------------------------------------------------------------------------------- /PLAYBOOK.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/PLAYBOOK.adoc -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/README.adoc -------------------------------------------------------------------------------- /Session.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/Session.vim -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/ansible.cfg -------------------------------------------------------------------------------- /conf/base-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/conf/base-images.yml -------------------------------------------------------------------------------- /conf/base-rpms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/conf/base-rpms.txt -------------------------------------------------------------------------------- /conf/bootable/EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/conf/bootable/EULA -------------------------------------------------------------------------------- /conf/bootable/GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/conf/bootable/GPL -------------------------------------------------------------------------------- /conf/bootable/comps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/conf/bootable/comps.xml -------------------------------------------------------------------------------- /conf/bootable/discinfo: -------------------------------------------------------------------------------- 1 | 1476915898.899142 2 | Red Hat Enterprise Linux 7.5 3 | x86_64 4 | 1 5 | -------------------------------------------------------------------------------- /conf/bootable/f2_net.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/conf/bootable/f2_net.txt -------------------------------------------------------------------------------- /conf/bootable/isolinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/conf/bootable/isolinux.cfg -------------------------------------------------------------------------------- /conf/bootable/media.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/conf/bootable/media.repo -------------------------------------------------------------------------------- /conf/build-rpms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/conf/build-rpms.txt -------------------------------------------------------------------------------- /conf/local.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/conf/local.repo -------------------------------------------------------------------------------- /conf/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/conf/manifest.yml -------------------------------------------------------------------------------- /conf/profile.d/odie-commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/conf/profile.d/odie-commands.sh -------------------------------------------------------------------------------- /conf/rc/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/conf/rc/bashrc -------------------------------------------------------------------------------- /conf/rc/gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/conf/rc/gitconfig -------------------------------------------------------------------------------- /conf/rc/sshConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/conf/rc/sshConfig -------------------------------------------------------------------------------- /conf/rc/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/conf/rc/vimrc -------------------------------------------------------------------------------- /contrib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/README.md -------------------------------------------------------------------------------- /contrib/bin/7z: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | "/usr/libexec/p7zip/7z" "$@" 3 | -------------------------------------------------------------------------------- /contrib/bin/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/bin/README.adoc -------------------------------------------------------------------------------- /contrib/bin/ag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/bin/ag -------------------------------------------------------------------------------- /contrib/bin/jq-linux64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/bin/jq-linux64 -------------------------------------------------------------------------------- /contrib/bin/semver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/bin/semver -------------------------------------------------------------------------------- /contrib/bin/tailodie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/bin/tailodie -------------------------------------------------------------------------------- /contrib/bin/yaml_linux_amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/bin/yaml_linux_amd64 -------------------------------------------------------------------------------- /contrib/cac-proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/cac-proxy/Dockerfile -------------------------------------------------------------------------------- /contrib/cac-proxy/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/cac-proxy/README.txt -------------------------------------------------------------------------------- /contrib/cac-proxy/VERSION: -------------------------------------------------------------------------------- 1 | 0.2.0 2 | -------------------------------------------------------------------------------- /contrib/cac-proxy/apache-global.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/cac-proxy/apache-global.conf -------------------------------------------------------------------------------- /contrib/cac-proxy/healthz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/cac-proxy/healthz.html -------------------------------------------------------------------------------- /contrib/cac-proxy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/cac-proxy/index.html -------------------------------------------------------------------------------- /contrib/cac-proxy/ose-pivproxy-deployment-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/cac-proxy/ose-pivproxy-deployment-template.yml -------------------------------------------------------------------------------- /contrib/cac-proxy/passwd.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/cac-proxy/passwd.template -------------------------------------------------------------------------------- /contrib/cac-proxy/pivproxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/cac-proxy/pivproxy.conf -------------------------------------------------------------------------------- /contrib/cac-proxy/shared-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/cac-proxy/shared-build.sh -------------------------------------------------------------------------------- /contrib/cac-proxy/shared-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/cac-proxy/shared-setup.sh -------------------------------------------------------------------------------- /contrib/cac-proxy/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/cac-proxy/start.sh -------------------------------------------------------------------------------- /contrib/certs/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/cicd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/cicd/README.md -------------------------------------------------------------------------------- /contrib/cicd/cicd-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/cicd/cicd-template.yaml -------------------------------------------------------------------------------- /contrib/cicd/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/cicd/deploy.sh -------------------------------------------------------------------------------- /contrib/cicd/jenkins-ephemeral-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/cicd/jenkins-ephemeral-template.json -------------------------------------------------------------------------------- /contrib/cicd/jenkins-persistent-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/cicd/jenkins-persistent-template.json -------------------------------------------------------------------------------- /contrib/dev_tools/build-and-test-iso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/dev_tools/build-and-test-iso.sh -------------------------------------------------------------------------------- /contrib/dev_tools/init_kvm_cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/dev_tools/init_kvm_cluster.yml -------------------------------------------------------------------------------- /contrib/dev_tools/reverse-proxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/dev_tools/reverse-proxy.sh -------------------------------------------------------------------------------- /contrib/env-config/build/hosts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/env-config/build/hosts.csv -------------------------------------------------------------------------------- /contrib/env-config/default/hosts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/env-config/default/hosts.csv -------------------------------------------------------------------------------- /contrib/env-config/full/hosts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/env-config/full/hosts.csv -------------------------------------------------------------------------------- /contrib/env-config/lab/hosts.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/env-config/lab/hosts.csv -------------------------------------------------------------------------------- /contrib/ldap/ldap-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/ldap/ldap-config.yml -------------------------------------------------------------------------------- /contrib/ldap/ldap_instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/ldap/ldap_instructions.txt -------------------------------------------------------------------------------- /contrib/ldap/pivproxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/ldap/pivproxy.conf -------------------------------------------------------------------------------- /contrib/ocp_patched_tasks/generate_hawkular_certificates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/ocp_patched_tasks/generate_hawkular_certificates.yaml -------------------------------------------------------------------------------- /contrib/postgresql-container-stig/.Dockerfile.rhel7.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/postgresql-container-stig/.Dockerfile.rhel7.swp -------------------------------------------------------------------------------- /contrib/postgresql-container-stig/.gitignore: -------------------------------------------------------------------------------- 1 | .remote-sync.json 2 | -------------------------------------------------------------------------------- /contrib/postgresql-container-stig/Dockerfile.rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/postgresql-container-stig/Dockerfile.rhel7 -------------------------------------------------------------------------------- /contrib/postgresql-container-stig/Dockerfile.rhel7.scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/postgresql-container-stig/Dockerfile.rhel7.scripts -------------------------------------------------------------------------------- /contrib/postgresql-container-stig/VERSION: -------------------------------------------------------------------------------- 1 | 0.3.0 2 | -------------------------------------------------------------------------------- /contrib/postgresql-container-stig/root/usr/bin/run-postgresql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/postgresql-container-stig/root/usr/bin/run-postgresql -------------------------------------------------------------------------------- /contrib/postgresql-container-stig/root/usr/share/container-scripts/postgresql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/postgresql-container-stig/root/usr/share/container-scripts/postgresql/README.md -------------------------------------------------------------------------------- /contrib/postgresql-container-stig/root/usr/share/container-scripts/postgresql/stig-custom-pg_hba.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/postgresql-container-stig/root/usr/share/container-scripts/postgresql/stig-custom-pg_hba.conf.template -------------------------------------------------------------------------------- /contrib/postgresql-container-stig/root/usr/share/container-scripts/postgresql/stig-custom-pg_ident.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/postgresql-container-stig/root/usr/share/container-scripts/postgresql/stig-custom-pg_ident.conf.template -------------------------------------------------------------------------------- /contrib/postgresql-container-stig/root/usr/share/container-scripts/postgresql/stig-custom-pgaudit-postgresql.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/postgresql-container-stig/root/usr/share/container-scripts/postgresql/stig-custom-pgaudit-postgresql.conf.template -------------------------------------------------------------------------------- /contrib/postgresql-container-stig/root/usr/share/container-scripts/postgresql/stig-custom-postgresql.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/postgresql-container-stig/root/usr/share/container-scripts/postgresql/stig-custom-postgresql.conf.template -------------------------------------------------------------------------------- /contrib/postgresql-container-stig/root/usr/share/container-scripts/postgresql/stig-custom-syslog-postgresql.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/postgresql-container-stig/root/usr/share/container-scripts/postgresql/stig-custom-syslog-postgresql.conf.template -------------------------------------------------------------------------------- /contrib/postgresql-container-stig/root/usr/share/container-scripts/postgresql/stig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/postgresql-container-stig/root/usr/share/container-scripts/postgresql/stig.sh -------------------------------------------------------------------------------- /contrib/postgresql-container-stig/root/usr/share/pgaudit_95-1.0.4-1.rhel7.x86_64.rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/postgresql-container-stig/root/usr/share/pgaudit_95-1.0.4-1.rhel7.x86_64.rpm -------------------------------------------------------------------------------- /contrib/python-docker.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/python-docker.spec -------------------------------------------------------------------------------- /contrib/scripts/docker-gc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/scripts/docker-gc -------------------------------------------------------------------------------- /contrib/scripts/watch-for-changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/contrib/scripts/watch-for-changes.sh -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/deploy.sh -------------------------------------------------------------------------------- /dist: -------------------------------------------------------------------------------- 1 | /var/iso -------------------------------------------------------------------------------- /do-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/do-build.sh -------------------------------------------------------------------------------- /documentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/Makefile -------------------------------------------------------------------------------- /documentation/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/README.adoc -------------------------------------------------------------------------------- /documentation/assets/fonts/liberation/LiberationSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/fonts/liberation/LiberationSans-Bold.ttf -------------------------------------------------------------------------------- /documentation/assets/fonts/liberation/LiberationSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/fonts/liberation/LiberationSans-BoldItalic.ttf -------------------------------------------------------------------------------- /documentation/assets/fonts/liberation/LiberationSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/fonts/liberation/LiberationSans-Italic.ttf -------------------------------------------------------------------------------- /documentation/assets/fonts/liberation/LiberationSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/fonts/liberation/LiberationSans-Regular.ttf -------------------------------------------------------------------------------- /documentation/assets/images/EngagementJournalCoverPageLogoNew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/EngagementJournalCoverPageLogoNew.jpg -------------------------------------------------------------------------------- /documentation/assets/images/diagrams/clusterOverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/diagrams/clusterOverview.png -------------------------------------------------------------------------------- /documentation/assets/images/header.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/header.jpeg -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0010-boot-menu-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0010-boot-menu-selection.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0020-select-language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0020-select-language.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0030-software-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0030-software-selection.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0040-basic-web-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0040-basic-web-server.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0050-installation-destination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0050-installation-destination.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0051-diskSelect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0051-diskSelect.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0060-i-will-configure-partitioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0060-i-will-configure-partitioning.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0070-create-partitions-automatically.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0070-create-partitions-automatically.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0080-default-jumphost-partitions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0080-default-jumphost-partitions.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0090-select-the-home-partition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0090-select-the-home-partition.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0100-click-minus-to-remove-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0100-click-minus-to-remove-home.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0101-three-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0101-three-buttons.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0110-select-the-root-partition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0110-select-the-root-partition.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0200-kdump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0200-kdump.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0201-kdump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0201-kdump.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0300-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0300-network.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0301-hostname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0301-hostname.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0302-ethernet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0302-ethernet.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0304-general-auto-connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0304-general-auto-connect.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0320-ipv4-manual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0320-ipv4-manual.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0321-ipv4-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0321-ipv4-static.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0322-ipv4-dns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0322-ipv4-dns.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0400-begin-installation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0400-begin-installation.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0401-root-password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0401-root-password.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0402-root-password-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0402-root-password-entry.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0501-reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0501-reboot.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0502-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0502-console.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/0503-initial-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/0503-initial-login.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/404-user-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/404-user-entry.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/button-continue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/button-continue.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/button-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/button-done.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/button-minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/button-minus.png -------------------------------------------------------------------------------- /documentation/assets/images/jumphost/button-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/jumphost/button-plus.png -------------------------------------------------------------------------------- /documentation/assets/images/technical/registry-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/technical/registry-01.png -------------------------------------------------------------------------------- /documentation/assets/images/technical/registry-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/technical/registry-02.png -------------------------------------------------------------------------------- /documentation/assets/images/watermark-draft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/assets/images/watermark-draft.png -------------------------------------------------------------------------------- /documentation/auto-compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/auto-compile.sh -------------------------------------------------------------------------------- /documentation/redhat-theme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/redhat-theme.yml -------------------------------------------------------------------------------- /documentation/volumes/general/preface.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/volumes/general/preface.adoc -------------------------------------------------------------------------------- /documentation/volumes/general/software-component.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/volumes/general/software-component.adoc -------------------------------------------------------------------------------- /documentation/volumes/general/teamRoster.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/volumes/general/teamRoster.adoc -------------------------------------------------------------------------------- /documentation/volumes/user_guide/bluesuit.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/volumes/user_guide/bluesuit.adoc -------------------------------------------------------------------------------- /documentation/volumes/user_guide/build_properties.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/volumes/user_guide/build_properties.adoc -------------------------------------------------------------------------------- /documentation/volumes/user_guide/config_yml.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/volumes/user_guide/config_yml.adoc -------------------------------------------------------------------------------- /documentation/volumes/user_guide/dns.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/volumes/user_guide/dns.adoc -------------------------------------------------------------------------------- /documentation/volumes/user_guide/hardware-requirements.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/volumes/user_guide/hardware-requirements.adoc -------------------------------------------------------------------------------- /documentation/volumes/user_guide/jumphost.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/volumes/user_guide/jumphost.adoc -------------------------------------------------------------------------------- /documentation/volumes/user_guide/reference_table.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/volumes/user_guide/reference_table.adoc -------------------------------------------------------------------------------- /documentation/volumes/vol04_runbook.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/volumes/vol04_runbook.adoc -------------------------------------------------------------------------------- /documentation/volumes/vol04_userguide.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/documentation/volumes/vol04_userguide.adoc -------------------------------------------------------------------------------- /files/docker-storage-setup: -------------------------------------------------------------------------------- 1 | DEVS=/dev/sdb 2 | VG=docker-vg 3 | -------------------------------------------------------------------------------- /files/lb-nfs-etc-exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/files/lb-nfs-etc-exports -------------------------------------------------------------------------------- /files/ose.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/files/ose.repo -------------------------------------------------------------------------------- /inventory/csv_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/inventory/csv_inventory.py -------------------------------------------------------------------------------- /inventory/group_vars/all/certs.yml: -------------------------------------------------------------------------------- 1 | /opt/odie/config/certs.yml -------------------------------------------------------------------------------- /inventory/group_vars/all/env.yml: -------------------------------------------------------------------------------- 1 | /opt/odie/config/env.yml -------------------------------------------------------------------------------- /inventory/group_vars/all/images.yml: -------------------------------------------------------------------------------- 1 | /opt/odie/config/images.yml -------------------------------------------------------------------------------- /inventory/group_vars/all/internal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/inventory/group_vars/all/internal.yml -------------------------------------------------------------------------------- /inventory/group_vars/all/ks.yml: -------------------------------------------------------------------------------- 1 | /opt/odie/config/ks.yml -------------------------------------------------------------------------------- /inventory/group_vars/all/ocp.yml: -------------------------------------------------------------------------------- 1 | /opt/odie/config/ocp.yml -------------------------------------------------------------------------------- /inventory/group_vars/all/odie.yml: -------------------------------------------------------------------------------- 1 | /opt/odie/config/odie.yml -------------------------------------------------------------------------------- /inventory/group_vars/all/secret.yml: -------------------------------------------------------------------------------- 1 | /opt/odie/config/secret.yml -------------------------------------------------------------------------------- /inventory/group_vars/lb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/inventory/group_vars/lb.yml -------------------------------------------------------------------------------- /inventory/group_vars/registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/inventory/group_vars/registry.yml -------------------------------------------------------------------------------- /inventory/host_vars/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/inventory/host_vars/.gitignore -------------------------------------------------------------------------------- /inventory/hosts-ha.csv.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/inventory/hosts-ha.csv.example -------------------------------------------------------------------------------- /inventory/hosts-lab.csv.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/inventory/hosts-lab.csv.example -------------------------------------------------------------------------------- /manifests/base-rpms.txt.packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/manifests/base-rpms.txt.packages -------------------------------------------------------------------------------- /manifests/base-rpms.txt.processed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/manifests/base-rpms.txt.processed -------------------------------------------------------------------------------- /odie-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/odie-check.yml -------------------------------------------------------------------------------- /odie-configure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/odie-configure.yml -------------------------------------------------------------------------------- /odie-generate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/odie-generate.yml -------------------------------------------------------------------------------- /odie-harden.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/odie-harden.yml -------------------------------------------------------------------------------- /odie-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/odie-install.yml -------------------------------------------------------------------------------- /odie-provision.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/odie-provision.yml -------------------------------------------------------------------------------- /odie-validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/odie-validate.yml -------------------------------------------------------------------------------- /odie.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/odie.sh -------------------------------------------------------------------------------- /playbooks/app_deployment/initial_setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/app_deployment/initial_setup.yml -------------------------------------------------------------------------------- /playbooks/app_deployment/update_crl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/app_deployment/update_crl.yml -------------------------------------------------------------------------------- /playbooks/container_images/export-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/container_images/export-images.yml -------------------------------------------------------------------------------- /playbooks/container_images/import-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/container_images/import-images.yml -------------------------------------------------------------------------------- /playbooks/container_images/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/container_images/pull.yml -------------------------------------------------------------------------------- /playbooks/container_images/push-delta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/container_images/push-delta.yml -------------------------------------------------------------------------------- /playbooks/container_images/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/container_images/push.yml -------------------------------------------------------------------------------- /playbooks/container_images/smoketest-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/container_images/smoketest-images.yml -------------------------------------------------------------------------------- /playbooks/container_images/tasks/push_registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/container_images/tasks/push_registry.yml -------------------------------------------------------------------------------- /playbooks/development/configure_jumphost.retry: -------------------------------------------------------------------------------- 1 | localhost 2 | -------------------------------------------------------------------------------- /playbooks/development/configure_jumphost.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/development/configure_jumphost.yml -------------------------------------------------------------------------------- /playbooks/development/install_odie.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/development/install_odie.yml -------------------------------------------------------------------------------- /playbooks/development/mount-odie-src.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/development/mount-odie-src.yml -------------------------------------------------------------------------------- /playbooks/development/mount_dir_nfs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/development/mount_dir_nfs.yml -------------------------------------------------------------------------------- /playbooks/development/provision_jumphost.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/development/provision_jumphost.yml -------------------------------------------------------------------------------- /playbooks/development/provision_vms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/development/provision_vms.yml -------------------------------------------------------------------------------- /playbooks/development/snapshot_vms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/development/snapshot_vms.yml -------------------------------------------------------------------------------- /playbooks/generate_configuration/generate_kickstarts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/generate_configuration/generate_kickstarts.yml -------------------------------------------------------------------------------- /playbooks/generate_configuration/property_generation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/generate_configuration/property_generation.yml -------------------------------------------------------------------------------- /playbooks/media_preparation/generate_jumphost_ks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/media_preparation/generate_jumphost_ks.yml -------------------------------------------------------------------------------- /playbooks/ocp_install/htpasswd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/ocp_install/htpasswd.yml -------------------------------------------------------------------------------- /playbooks/ocp_install/install_gluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/ocp_install/install_gluster.yml -------------------------------------------------------------------------------- /playbooks/ocp_install/install_jumphost_cert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/ocp_install/install_jumphost_cert.yml -------------------------------------------------------------------------------- /playbooks/ocp_install/install_logging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/ocp_install/install_logging.yml -------------------------------------------------------------------------------- /playbooks/ocp_install/install_metrics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/ocp_install/install_metrics.yml -------------------------------------------------------------------------------- /playbooks/ocp_install/patch_99-origin-dns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/ocp_install/patch_99-origin-dns.yml -------------------------------------------------------------------------------- /playbooks/ocp_install/prepare_hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/ocp_install/prepare_hosts.yml -------------------------------------------------------------------------------- /playbooks/ocp_install/prepare_registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/ocp_install/prepare_registry.yml -------------------------------------------------------------------------------- /playbooks/ocp_install/setup_ntp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/ocp_install/setup_ntp.yml -------------------------------------------------------------------------------- /playbooks/ocp_install/setup_rsyslog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/ocp_install/setup_rsyslog.yml -------------------------------------------------------------------------------- /playbooks/operations/check_dns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/operations/check_dns.yml -------------------------------------------------------------------------------- /playbooks/operations/ping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/operations/ping.yml -------------------------------------------------------------------------------- /playbooks/operations/reboot_hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/operations/reboot_hosts.yml -------------------------------------------------------------------------------- /playbooks/operations/reset_ssh_known_hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/operations/reset_ssh_known_hosts.yml -------------------------------------------------------------------------------- /playbooks/operations/setup_dnsmasq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/operations/setup_dnsmasq.yml -------------------------------------------------------------------------------- /playbooks/operations/teardown_dnsmasq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/operations/teardown_dnsmasq.yml -------------------------------------------------------------------------------- /playbooks/operations/update_rpms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/operations/update_rpms.yml -------------------------------------------------------------------------------- /playbooks/security/.configure_pivproxy_roles.yml.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/security/.configure_pivproxy_roles.yml.swp -------------------------------------------------------------------------------- /playbooks/security/aide.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/security/aide.yml -------------------------------------------------------------------------------- /playbooks/security/configure_ldap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/security/configure_ldap.yml -------------------------------------------------------------------------------- /playbooks/security/configure_pivproxy_roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/security/configure_pivproxy_roles.yml -------------------------------------------------------------------------------- /playbooks/security/configure_registry_console_certs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/security/configure_registry_console_certs.yml -------------------------------------------------------------------------------- /playbooks/security/fips_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/security/fips_check.yml -------------------------------------------------------------------------------- /playbooks/security/firewalld.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/security/firewalld.yml -------------------------------------------------------------------------------- /playbooks/security/ifcfg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/security/ifcfg.yml -------------------------------------------------------------------------------- /playbooks/security/install_pivproxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/security/install_pivproxy.yml -------------------------------------------------------------------------------- /playbooks/security/login_defs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/security/login_defs.yml -------------------------------------------------------------------------------- /playbooks/security/misc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/security/misc.yml -------------------------------------------------------------------------------- /playbooks/security/netconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/security/netconfig.yml -------------------------------------------------------------------------------- /playbooks/security/ntp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/security/ntp.yml -------------------------------------------------------------------------------- /playbooks/security/oscap-remediation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/security/oscap-remediation.yml -------------------------------------------------------------------------------- /playbooks/security/oscap-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/security/oscap-scan.yml -------------------------------------------------------------------------------- /playbooks/security/pam.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/security/pam.yml -------------------------------------------------------------------------------- /playbooks/security/update_ansible_cfg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/security/update_ansible_cfg.yml -------------------------------------------------------------------------------- /playbooks/security/update_pivproxy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/playbooks/security/update_pivproxy.yml -------------------------------------------------------------------------------- /playbooks/updates/0.7.0.0-rsyslog-forwarding.yml: -------------------------------------------------------------------------------- 1 | ../../playbooks/ocp_install/setup_rsyslog.yml -------------------------------------------------------------------------------- /roles/configure_ldap/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/configure_ldap/handlers/main.yml -------------------------------------------------------------------------------- /roles/configure_ldap/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/configure_ldap/tasks/main.yml -------------------------------------------------------------------------------- /roles/configure_ldap/templates/group-sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/configure_ldap/templates/group-sync -------------------------------------------------------------------------------- /roles/configure_ldap/templates/whitelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/configure_ldap/templates/whitelist -------------------------------------------------------------------------------- /roles/dnsmasq_configuration/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/dnsmasq_configuration/defaults/main.yml -------------------------------------------------------------------------------- /roles/dnsmasq_configuration/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/dnsmasq_configuration/handlers/main.yml -------------------------------------------------------------------------------- /roles/dnsmasq_configuration/handlers/restart_dnsmasq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/dnsmasq_configuration/handlers/restart_dnsmasq.yml -------------------------------------------------------------------------------- /roles/dnsmasq_configuration/tasks/dnsmasq_configuration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/dnsmasq_configuration/tasks/dnsmasq_configuration.yml -------------------------------------------------------------------------------- /roles/dnsmasq_configuration/tasks/main.yml: -------------------------------------------------------------------------------- 1 | - include: dnsmasq_configuration.yml tags=dhcp,pxe 2 | 3 | -------------------------------------------------------------------------------- /roles/dnsmasq_configuration/vars/main.yml: -------------------------------------------------------------------------------- 1 | rhel_iso: /dev/sr0 2 | -------------------------------------------------------------------------------- /roles/docker_login/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/docker_login/tasks/main.yml -------------------------------------------------------------------------------- /roles/docker_pull/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/docker_pull/defaults/main.yml -------------------------------------------------------------------------------- /roles/docker_pull/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/docker_pull/tasks/main.yml -------------------------------------------------------------------------------- /roles/docker_pull/tasks/pull_archive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/docker_pull/tasks/pull_archive.yml -------------------------------------------------------------------------------- /roles/docker_pull/tasks/pull_image_archive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/docker_pull/tasks/pull_image_archive.yml -------------------------------------------------------------------------------- /roles/docker_pull/templates/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/docker_pull/templates/manifest.yml -------------------------------------------------------------------------------- /roles/docker_push/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/docker_push/defaults/main.yml -------------------------------------------------------------------------------- /roles/docker_push/tasks/load_archive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/docker_push/tasks/load_archive.yml -------------------------------------------------------------------------------- /roles/docker_push/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/docker_push/tasks/main.yml -------------------------------------------------------------------------------- /roles/docker_push/tasks/tag_push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/docker_push/tasks/tag_push.yml -------------------------------------------------------------------------------- /roles/httpd-configure/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/httpd-configure/tasks/main.yml -------------------------------------------------------------------------------- /roles/httpd-configure/templates/httpd-conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/httpd-configure/templates/httpd-conf.j2 -------------------------------------------------------------------------------- /roles/install_cac_proxy/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/install_cac_proxy/defaults/main.yml -------------------------------------------------------------------------------- /roles/install_cac_proxy/files/ose-pivproxy-deployment-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/install_cac_proxy/files/ose-pivproxy-deployment-template.yml -------------------------------------------------------------------------------- /roles/install_cac_proxy/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/install_cac_proxy/handlers/main.yml -------------------------------------------------------------------------------- /roles/install_cac_proxy/tasks/certs_configuration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/install_cac_proxy/tasks/certs_configuration.yml -------------------------------------------------------------------------------- /roles/install_cac_proxy/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/install_cac_proxy/tasks/main.yml -------------------------------------------------------------------------------- /roles/kickstart-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/kickstart-generator/README.md -------------------------------------------------------------------------------- /roles/kickstart-generator/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/kickstart-generator/defaults/main.yml -------------------------------------------------------------------------------- /roles/kickstart-generator/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for kickstart-generator -------------------------------------------------------------------------------- /roles/kickstart-generator/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/kickstart-generator/meta/main.yml -------------------------------------------------------------------------------- /roles/kickstart-generator/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/kickstart-generator/tasks/main.yml -------------------------------------------------------------------------------- /roles/kickstart-generator/templates/includes/common-footer.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/kickstart-generator/templates/includes/common-footer.j2 -------------------------------------------------------------------------------- /roles/kickstart-generator/templates/includes/common-header.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/kickstart-generator/templates/includes/common-header.j2 -------------------------------------------------------------------------------- /roles/kickstart-generator/templates/includes/common-packages.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/kickstart-generator/templates/includes/common-packages.j2 -------------------------------------------------------------------------------- /roles/kickstart-generator/templates/includes/common-user.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/kickstart-generator/templates/includes/common-user.j2 -------------------------------------------------------------------------------- /roles/kickstart-generator/templates/includes/disk-rhel.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/kickstart-generator/templates/includes/disk-rhel.j2 -------------------------------------------------------------------------------- /roles/kickstart-generator/templates/includes/docker-setup.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/kickstart-generator/templates/includes/docker-setup.j2 -------------------------------------------------------------------------------- /roles/kickstart-generator/templates/includes/second-block.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/kickstart-generator/templates/includes/second-block.j2 -------------------------------------------------------------------------------- /roles/kickstart-generator/templates/infra-ks.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/kickstart-generator/templates/infra-ks.j2 -------------------------------------------------------------------------------- /roles/kickstart-generator/templates/jumphost-ks.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/kickstart-generator/templates/jumphost-ks.j2 -------------------------------------------------------------------------------- /roles/kickstart-generator/templates/lb_nfs-ks.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/kickstart-generator/templates/lb_nfs-ks.j2 -------------------------------------------------------------------------------- /roles/kickstart-generator/templates/master-ks.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/kickstart-generator/templates/master-ks.j2 -------------------------------------------------------------------------------- /roles/kickstart-generator/templates/node-ks.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/kickstart-generator/templates/node-ks.j2 -------------------------------------------------------------------------------- /roles/kickstart-generator/templates/registry-ks.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/kickstart-generator/templates/registry-ks.j2 -------------------------------------------------------------------------------- /roles/kickstart-generator/templates/repos.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/kickstart-generator/templates/repos.j2 -------------------------------------------------------------------------------- /roles/kickstart-generator/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /roles/kickstart-generator/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/kickstart-generator/tests/test.yml -------------------------------------------------------------------------------- /roles/kickstart-generator/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for kickstart-generator -------------------------------------------------------------------------------- /roles/ocp_inventory_generator/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/ocp_inventory_generator/defaults/main.yml -------------------------------------------------------------------------------- /roles/ocp_inventory_generator/tasks/inventory_gen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/ocp_inventory_generator/tasks/inventory_gen.yml -------------------------------------------------------------------------------- /roles/ocp_inventory_generator/tasks/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - include: inventory_gen.yml tag=configuration,ocp 3 | -------------------------------------------------------------------------------- /roles/ocp_inventory_generator/templates/ocp-inventory.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/ocp_inventory_generator/templates/ocp-inventory.j2 -------------------------------------------------------------------------------- /roles/ocp_inventory_generator/test/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/ocp_inventory_generator/test/test.yml -------------------------------------------------------------------------------- /roles/odie_properties/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/odie_properties/defaults/main.yml -------------------------------------------------------------------------------- /roles/odie_properties/tasks/copy_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/odie_properties/tasks/copy_config.yml -------------------------------------------------------------------------------- /roles/odie_properties/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/odie_properties/tasks/main.yml -------------------------------------------------------------------------------- /roles/odie_properties/tasks/properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/odie_properties/tasks/properties.yml -------------------------------------------------------------------------------- /roles/odie_properties/tasks/property_fragments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/odie_properties/tasks/property_fragments.yml -------------------------------------------------------------------------------- /roles/odie_properties/templates/property_fragment.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/odie_properties/templates/property_fragment.j2 -------------------------------------------------------------------------------- /roles/odie_properties/tests/.gitignore: -------------------------------------------------------------------------------- 1 | output/* 2 | -------------------------------------------------------------------------------- /roles/odie_properties/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost ansible_connection=local 2 | 3 | -------------------------------------------------------------------------------- /roles/odie_properties/tests/property_generation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/odie_properties/tests/property_generation.yml -------------------------------------------------------------------------------- /roles/odie_properties/tests/props.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/odie_properties/tests/props.yml -------------------------------------------------------------------------------- /roles/odie_properties/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/odie_properties/vars/main.yml -------------------------------------------------------------------------------- /roles/openshift_facts: -------------------------------------------------------------------------------- 1 | /usr/share/ansible/openshift-ansible/roles/openshift_facts/ -------------------------------------------------------------------------------- /roles/os_firewall: -------------------------------------------------------------------------------- 1 | /usr/share/ansible/openshift-ansible/roles/os_firewall/ -------------------------------------------------------------------------------- /roles/provision_vm/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/provision_vm/defaults/main.yml -------------------------------------------------------------------------------- /roles/provision_vm/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/provision_vm/handlers/main.yml -------------------------------------------------------------------------------- /roles/provision_vm/handlers/restart_dnsmasq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/provision_vm/handlers/restart_dnsmasq.yml -------------------------------------------------------------------------------- /roles/provision_vm/tasks/add_etc_hosts_entry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/provision_vm/tasks/add_etc_hosts_entry.yml -------------------------------------------------------------------------------- /roles/provision_vm/tasks/config_etc_hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/provision_vm/tasks/config_etc_hosts.yml -------------------------------------------------------------------------------- /roles/provision_vm/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/provision_vm/tasks/main.yml -------------------------------------------------------------------------------- /roles/provision_vm/tasks/ops/add_ssh_authorized_key.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/provision_vm/tasks/ops/add_ssh_authorized_key.yml -------------------------------------------------------------------------------- /roles/provision_vm/tasks/ops/delete_vm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/provision_vm/tasks/ops/delete_vm.yml -------------------------------------------------------------------------------- /roles/provision_vm/tasks/ops/start_vm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/provision_vm/tasks/ops/start_vm.yml -------------------------------------------------------------------------------- /roles/provision_vm/tasks/ops/vm_state.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/provision_vm/tasks/ops/vm_state.yml -------------------------------------------------------------------------------- /roles/provision_vm/tasks/ops/wait_until_shutdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/provision_vm/tasks/ops/wait_until_shutdown.yml -------------------------------------------------------------------------------- /roles/provision_vm/tasks/reset_known_hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/provision_vm/tasks/reset_known_hosts.yml -------------------------------------------------------------------------------- /roles/provision_vm/tasks/setup_kvm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/provision_vm/tasks/setup_kvm.yml -------------------------------------------------------------------------------- /roles/provision_vm/tasks/setup_pool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/provision_vm/tasks/setup_pool.yml -------------------------------------------------------------------------------- /roles/provision_vm/templates/kvm.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/provision_vm/templates/kvm.xml.j2 -------------------------------------------------------------------------------- /roles/rsyslog_configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/rsyslog_configuration/README.md -------------------------------------------------------------------------------- /roles/rsyslog_configuration/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/rsyslog_configuration/defaults/main.yml -------------------------------------------------------------------------------- /roles/rsyslog_configuration/files/create-rsyslog-subdirs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/rsyslog_configuration/files/create-rsyslog-subdirs.sh -------------------------------------------------------------------------------- /roles/rsyslog_configuration/files/remote_log_rotate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/rsyslog_configuration/files/remote_log_rotate.sh -------------------------------------------------------------------------------- /roles/rsyslog_configuration/files/rotate_var_log_messages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/rsyslog_configuration/files/rotate_var_log_messages.sh -------------------------------------------------------------------------------- /roles/rsyslog_configuration/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/rsyslog_configuration/handlers/main.yml -------------------------------------------------------------------------------- /roles/rsyslog_configuration/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/rsyslog_configuration/tasks/main.yml -------------------------------------------------------------------------------- /roles/rsyslog_configuration/tasks/rsyslog_log_rotation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/rsyslog_configuration/tasks/rsyslog_log_rotation.yml -------------------------------------------------------------------------------- /roles/rsyslog_configuration/tasks/rsyslog_remote_server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/rsyslog_configuration/tasks/rsyslog_remote_server.yml -------------------------------------------------------------------------------- /roles/rsyslog_configuration/tasks/rsyslog_setup_client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/rsyslog_configuration/tasks/rsyslog_setup_client.yml -------------------------------------------------------------------------------- /roles/rsyslog_configuration/templates/auditd-rsyslog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/rsyslog_configuration/templates/auditd-rsyslog.conf -------------------------------------------------------------------------------- /roles/rsyslog_configuration/templates/docker.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/rsyslog_configuration/templates/docker.json.j2 -------------------------------------------------------------------------------- /roles/rsyslog_configuration/templates/remote_log_rotate.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/rsyslog_configuration/templates/remote_log_rotate.j2 -------------------------------------------------------------------------------- /roles/rsyslog_configuration/templates/rsyslog.conf-remote-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/rsyslog_configuration/templates/rsyslog.conf-remote-template -------------------------------------------------------------------------------- /roles/rsyslog_configuration/templates/rsyslog.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/rsyslog_configuration/templates/rsyslog.conf.j2 -------------------------------------------------------------------------------- /roles/update_cac_proxy/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/roles/update_cac_proxy/tasks/main.yml -------------------------------------------------------------------------------- /scripts/delete-project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/scripts/delete-project.sh -------------------------------------------------------------------------------- /scripts/generate-cve-delta.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/scripts/generate-cve-delta.pl -------------------------------------------------------------------------------- /scripts/idle_spinner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/scripts/idle_spinner.sh -------------------------------------------------------------------------------- /scripts/install_asciidoctor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/scripts/install_asciidoctor.sh -------------------------------------------------------------------------------- /scripts/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/scripts/lib.sh -------------------------------------------------------------------------------- /scripts/local-git-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/scripts/local-git-repo.sh -------------------------------------------------------------------------------- /scripts/migrate-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/scripts/migrate-images.sh -------------------------------------------------------------------------------- /scripts/odie-version.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/scripts/odie-version.pl -------------------------------------------------------------------------------- /scripts/oscap-remediation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/scripts/oscap-remediation.sh -------------------------------------------------------------------------------- /scripts/parse_adoc_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/scripts/parse_adoc_headers.py -------------------------------------------------------------------------------- /scripts/repo-pki.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/scripts/repo-pki.sh -------------------------------------------------------------------------------- /scripts/sshchpwd.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/scripts/sshchpwd.exp -------------------------------------------------------------------------------- /scripts/stage-iso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedHatOfficial/odie/HEAD/scripts/stage-iso.sh --------------------------------------------------------------------------------