Skip to content

Commit 1789e4c

Browse files
committed
More defaults
1 parent 485779f commit 1789e4c

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

orahost/defaults/main.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,38 @@
55
asmlib_rpm: "http://download.oracle.com/otn_software/asmlib/oracleasmlib-2.0.4-1.el6.x86_64.rpm"
66
ol6_repo_file: public-yum-ol6.repo
77
repo_dir: /etc/yum.repos.d/
8+
oracle_user: oracle # User that will own the Oracle Installations. No support for separation of duties yet
9+
oracle_passwd: "yoursecrethashedpassword" # Encrypted password for oracle_user
10+
oracle_user_home: "/home/{{ oracle_user }}" # Home directory for oracle_user. Needed for passing in ssh-keys, profiles etc
11+
oracle_group: dba # Primary group for oracle_user.
12+
oracle_user_id: 600 # uid for oracle_user
13+
oracle_group_id: 600 # gid for oracle_users's primary group
14+
disable_numa_boot: true # (true/false) Sets numa=off in grub.conf
15+
percent_hugepages: 60 # Percentage (0-100) of total RAM to dedicate to hugepages, Configures vm.nr_hugepages & memlock settings
16+
configure_interconnect: true # (true/false) Should the Interconnect network be configured by Ansible (setup IP-address. IP-address configurable by variable oracle_ic_net). Only applicable to RAC-installs
17+
configure_ssh: true # (true/false). Should passwordless ssh be configured between clusternodes. Only applicable to RAC-installs
18+
configure_host_disks: true # (true/false). Should the specified directories be on their on devices -> (true), or do they live in the root-filesystem (/) -> (false).
19+
# mountpoints are described in host_fs_layout
20+
21+
# host_fs_layout: # Sets up filesystem on host. If storage_type=FS under oracle_databases, this is where the mapping between device/fs is described
22+
# u01:
23+
# {mntp: /u01, device: /dev/sdb, vgname: vgora, pvname: /dev/sdb1, lvname: lvora}
24+
25+
# asm_diskgroups: # ASM Diskgroups used for DB-storage. Should map to dict asm_storage_layout.
26+
# - crs
27+
# - data
28+
# - fra
29+
30+
# asm_storage_layout: # Mapping between device & ASMlib label. If storage_type=ASM under oracle_databases, this is where the mapping between device/asm-disk is described
31+
# crs:
32+
# - {device: /dev/sdc, asmlabel: CRS01}
33+
# data:
34+
# - {device: /dev/sdd, asmlabel: DATA01}
35+
# fra:
36+
# - {device: /dev/sde, asmlabel: FRA01
37+
38+
39+
840
oracle_packages:
941
- libselinux-python
1042
- procps

0 commit comments

Comments
 (0)