├── 99-asm-disks.rules ├── ANSIBLE.md ├── ANSIBLE_SETUP.md ├── COREOS.md ├── Dockerfile-bind ├── Dockerfile ├── db.10.10.10 ├── db.11.11.11 ├── db.example.com ├── keys.conf ├── named.conf └── named.conf.custom-zones ├── Dockerfile-nfs ├── Dockerfile └── entrypoint.sh ├── Dockerfile-racnode ├── Dockerfile ├── dbus_contexts └── grid_security_limits.conf ├── README.md ├── TODO.md ├── ansible ├── add_NDATA_diskgroup.yml ├── add_database.yml ├── create_first_rac_node.yml ├── create_oracle_image.yml ├── create_second_rac_node.yml ├── prepare_host.yml ├── roles │ ├── add_database │ │ └── tasks │ │ │ └── main.yml │ ├── add_diskgroup │ │ └── tasks │ │ │ └── main.yml │ ├── add_rac_nodes │ │ └── tasks │ │ │ └── main.yml │ ├── common │ │ ├── tasks │ │ │ └── start_rac_node.yml │ │ ├── templates │ │ │ ├── 99-asm-disks.rules.j2 │ │ │ ├── dhclient.j2 │ │ │ ├── oracle-nfs-mount.j2 │ │ │ └── rac-node-networks.j2 │ │ └── vars │ │ │ ├── files.yml │ │ │ └── main.yml │ ├── create_first_rac_node │ │ └── tasks │ │ │ └── main.yml │ ├── create_oracle_image │ │ └── tasks │ │ │ └── main.yml │ └── prepare_host │ │ ├── files │ │ ├── dhcpd.conf │ │ └── ganesha.conf │ │ └── tasks │ │ └── main.yml └── test │ ├── print_var.yml │ └── test.yml ├── cloud-config ├── coreos-bootstrap.yml ├── dhclient-rac1-eth-priv.service ├── dhclient-rac1-eth-pub.service ├── dhclient-rac2-eth-priv.service ├── dhclient-rac2-eth-pub.service ├── dhcpd.conf ├── docker.py ├── exports ├── fixssh.sh ├── ganesha.conf ├── networks-rac1.sh ├── networks-rac2.sh ├── oraclenfs.mount ├── rac_and_docker_miller.pptx ├── tools_config.rsp └── viewcap.sh /99-asm-disks.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/99-asm-disks.rules -------------------------------------------------------------------------------- /ANSIBLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ANSIBLE.md -------------------------------------------------------------------------------- /ANSIBLE_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ANSIBLE_SETUP.md -------------------------------------------------------------------------------- /COREOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/COREOS.md -------------------------------------------------------------------------------- /Dockerfile-bind/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/Dockerfile-bind/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-bind/db.10.10.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/Dockerfile-bind/db.10.10.10 -------------------------------------------------------------------------------- /Dockerfile-bind/db.11.11.11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/Dockerfile-bind/db.11.11.11 -------------------------------------------------------------------------------- /Dockerfile-bind/db.example.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/Dockerfile-bind/db.example.com -------------------------------------------------------------------------------- /Dockerfile-bind/keys.conf: -------------------------------------------------------------------------------- 1 | key dnsupdate. { 2 | algorithm HMAC-MD5; 3 | secret "REPLACE_WITH_SECRET_KEY"; 4 | }; 5 | -------------------------------------------------------------------------------- /Dockerfile-bind/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/Dockerfile-bind/named.conf -------------------------------------------------------------------------------- /Dockerfile-bind/named.conf.custom-zones: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/Dockerfile-bind/named.conf.custom-zones -------------------------------------------------------------------------------- /Dockerfile-nfs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/Dockerfile-nfs/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-nfs/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/Dockerfile-nfs/entrypoint.sh -------------------------------------------------------------------------------- /Dockerfile-racnode/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/Dockerfile-racnode/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-racnode/dbus_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/Dockerfile-racnode/dbus_contexts -------------------------------------------------------------------------------- /Dockerfile-racnode/grid_security_limits.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/Dockerfile-racnode/grid_security_limits.conf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/TODO.md -------------------------------------------------------------------------------- /ansible/add_NDATA_diskgroup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ansible/add_NDATA_diskgroup.yml -------------------------------------------------------------------------------- /ansible/add_database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ansible/add_database.yml -------------------------------------------------------------------------------- /ansible/create_first_rac_node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ansible/create_first_rac_node.yml -------------------------------------------------------------------------------- /ansible/create_oracle_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ansible/create_oracle_image.yml -------------------------------------------------------------------------------- /ansible/create_second_rac_node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ansible/create_second_rac_node.yml -------------------------------------------------------------------------------- /ansible/prepare_host.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ansible/prepare_host.yml -------------------------------------------------------------------------------- /ansible/roles/add_database/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ansible/roles/add_database/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/add_diskgroup/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ansible/roles/add_diskgroup/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/add_rac_nodes/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ansible/roles/add_rac_nodes/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/common/tasks/start_rac_node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ansible/roles/common/tasks/start_rac_node.yml -------------------------------------------------------------------------------- /ansible/roles/common/templates/99-asm-disks.rules.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ansible/roles/common/templates/99-asm-disks.rules.j2 -------------------------------------------------------------------------------- /ansible/roles/common/templates/dhclient.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ansible/roles/common/templates/dhclient.j2 -------------------------------------------------------------------------------- /ansible/roles/common/templates/oracle-nfs-mount.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ansible/roles/common/templates/oracle-nfs-mount.j2 -------------------------------------------------------------------------------- /ansible/roles/common/templates/rac-node-networks.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ansible/roles/common/templates/rac-node-networks.j2 -------------------------------------------------------------------------------- /ansible/roles/common/vars/files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ansible/roles/common/vars/files.yml -------------------------------------------------------------------------------- /ansible/roles/common/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ansible/roles/common/vars/main.yml -------------------------------------------------------------------------------- /ansible/roles/create_first_rac_node/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ansible/roles/create_first_rac_node/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/create_oracle_image/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ansible/roles/create_oracle_image/tasks/main.yml -------------------------------------------------------------------------------- /ansible/roles/prepare_host/files/dhcpd.conf: -------------------------------------------------------------------------------- 1 | ../../../../dhcpd.conf -------------------------------------------------------------------------------- /ansible/roles/prepare_host/files/ganesha.conf: -------------------------------------------------------------------------------- 1 | ../../../../ganesha.conf -------------------------------------------------------------------------------- /ansible/roles/prepare_host/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ansible/roles/prepare_host/tasks/main.yml -------------------------------------------------------------------------------- /ansible/test/print_var.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ansible/test/print_var.yml -------------------------------------------------------------------------------- /ansible/test/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ansible/test/test.yml -------------------------------------------------------------------------------- /cloud-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/cloud-config -------------------------------------------------------------------------------- /coreos-bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/coreos-bootstrap.yml -------------------------------------------------------------------------------- /dhclient-rac1-eth-priv.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/dhclient-rac1-eth-priv.service -------------------------------------------------------------------------------- /dhclient-rac1-eth-pub.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/dhclient-rac1-eth-pub.service -------------------------------------------------------------------------------- /dhclient-rac2-eth-priv.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/dhclient-rac2-eth-priv.service -------------------------------------------------------------------------------- /dhclient-rac2-eth-pub.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/dhclient-rac2-eth-pub.service -------------------------------------------------------------------------------- /dhcpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/dhcpd.conf -------------------------------------------------------------------------------- /docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/docker.py -------------------------------------------------------------------------------- /exports: -------------------------------------------------------------------------------- 1 | /oraclenfs (rw) 2 | -------------------------------------------------------------------------------- /fixssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/fixssh.sh -------------------------------------------------------------------------------- /ganesha.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/ganesha.conf -------------------------------------------------------------------------------- /networks-rac1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/networks-rac1.sh -------------------------------------------------------------------------------- /networks-rac2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/networks-rac2.sh -------------------------------------------------------------------------------- /oraclenfs.mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/oraclenfs.mount -------------------------------------------------------------------------------- /rac_and_docker_miller.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/rac_and_docker_miller.pptx -------------------------------------------------------------------------------- /tools_config.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/tools_config.rsp -------------------------------------------------------------------------------- /viewcap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seth-Miller/12c-rac-docker/HEAD/viewcap.sh --------------------------------------------------------------------------------