mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-24 18:30:23 +08:00
90 lines
2.6 KiB
YAML
90 lines
2.6 KiB
YAML
- pause:
|
|
prompt: |
|
|
Choice Oracle edition:
|
|
0: Oracle enterprise
|
|
1: Oracle express
|
|
private: no
|
|
Default:0
|
|
register: oracle_edition_options
|
|
|
|
- set_fact:
|
|
oracle_edition_meta:
|
|
"0": "enterprise"
|
|
"1": "express"
|
|
|
|
- set_fact:
|
|
oracle_edition: "{{oracle_edition_meta[oracle_edition_options.user_input]}}"
|
|
|
|
- block:
|
|
- pause:
|
|
prompt: |
|
|
Choice Oracle version:
|
|
0: Oracle 21
|
|
1: Oracle 18
|
|
private: no
|
|
Default:0
|
|
register: oracle_version_options
|
|
|
|
- set_fact:
|
|
oracle_version_meta:
|
|
"0": "21.3.0-xe"
|
|
"1": "18.4.0-xe"
|
|
|
|
- set_fact:
|
|
oracle_version: "{{oracle_version_meta[oracle_version_options.user_input]}}"
|
|
|
|
- set_fact:
|
|
oracle_delete_image: false
|
|
|
|
- debug:
|
|
msg: "oracle_version is {{oracle_version}}"
|
|
|
|
- name: Config .env and docker-compose for start containers
|
|
shell: |
|
|
sed -i 's/APP_VERSION=.*/APP_VERSION={{oracle_version}}/g' {{installpath}}/{{appname}}/.env
|
|
cat {{installpath}}/{{appname}}/docker-compose.yml |yq eval 'del(.services.oracleex.profiles)' > /tmp/tmp.yml
|
|
cat /tmp/tmp.yml > {{installpath}}/{{appname}}/docker-compose.yml
|
|
when: oracle_edition == "express"
|
|
|
|
- block:
|
|
- pause:
|
|
prompt: |
|
|
Choice Oracle version:
|
|
0: Oracle 21
|
|
1: Oracle 19
|
|
2: Oracle 12
|
|
private: no
|
|
Default:0
|
|
register: oracle_version_options
|
|
|
|
- set_fact:
|
|
oracle_version_meta:
|
|
"0": "21.3.0.0"
|
|
"1": "19.3.0.0"
|
|
"2": "12.2.0.1"
|
|
|
|
- set_fact:
|
|
oracle_version: "{{oracle_version_meta[oracle_version_options.user_input]}}"
|
|
|
|
- debug:
|
|
msg: "oracle_version is {{oracle_version}}"
|
|
|
|
- name: Config .env and docker-compose for start containers
|
|
shell: |
|
|
sed -i 's/APP_COMPOSE_UP=.*/APP_COMPOSE_UP=false/g' {{installpath}}/{{appname}}/.env
|
|
sed -i 's/APP_VERSION=.*/APP_VERSION={{oracle_version}}/g' {{installpath}}/{{appname}}/.env
|
|
cat {{installpath}}/{{appname}}/docker-compose.yml |yq eval 'del(.services.oracle.profiles)' > /tmp/tmp.yml
|
|
cat /tmp/tmp.yml > {{installpath}}/{{appname}}/docker-compose.yml
|
|
|
|
- name: Copy login.exp file
|
|
copy:
|
|
src: login.exp
|
|
dest: /tmp/login.exp
|
|
|
|
- name: Pull the image of enterprise
|
|
shell: |
|
|
expect /tmp/login.exp
|
|
docker pull container-registry.oracle.com/database/enterprise:"{{oracle_version}}"
|
|
rm -f /tmp/login.exp
|
|
when: oracle_edition == "enterprise"
|