oravirt/ansible-oracle

Missing switch for Single-Instance, Gird-Infrastructure or Oracle Restart

Rendanic opened this issue · 1 comments

There is no real switch to select between the following installation options:

  • Single-Instance
  • Oracle Restart
  • Grid-Infrastructure

The following variable is existing:

  • configure_cluster
    false => Oracle Restart
    true => Grid Infrastructure

The only way to distinct between Oracle Restart and Single Instance is by skipping the role oraswgi_install.
There are some situation where a switch between Oracle Restart and Single Instance is needed - i.e. orahost_logrotate

Solved with following variable:

  • Single Instance without ASM (Default)
    oracle_install_option_gi: ''
  • Oracle Restart
    oracle_install_option_gi: HA_CONFIG
  • Real Application Cluster
    oracle_install_option_gi: CRS_CONFIG

fixed by #328