OCI PoC - Prerequisites
The steps described on this document can be changed from the final version.
The goal is to quickly setup the PoC environment installing all the dependencies and Oracle Cloud Infrastructure identities to use the CLI/SDK with Ansible.
Setup Ansible project
This steps should be made only when OCI provider is under development - not merged to
main
branch. Then the normal install flow should be used.
- Setup your ansible workdir (optional, you can use the defaults)
cat <<EOF > ansible.cfg
[defaults]
inventory = ./inventories
collections_path=./collections
callbacks_enabled=ansible.posix.profile_roles,ansible.posix.profile_tasks
hash_behavior=merge
[inventory]
enable_plugins = yaml, ini
[callback_profile_tasks]
task_output_limit=1000
sort_order=none
EOF
- Create a virtual ennv
python3.9 -m venv ./.oci
source ./.oci/bin/activate
- Donwload requirements files
wget https://raw.githubusercontent.com/mtulio/ansible-collection-okd-installer/main/requirements.yml
wget https://raw.githubusercontent.com/mtulio/ansible-collection-okd-installer/main/requirements.txt
- Install ansible and dependencies
pip install -r requirements.txt
- Install the Collections
ansible-galaxy collection install -r requirements.yml
- Get the latest (under development) okd-installer for OCI
https://github.com/mtulio/ansible-collection-okd-installer/pull/26
git clone -b feat-added-provider-oci --recursive \
git@github.com:mtulio/ansible-collection-okd-installer.git \
collections/ansible_collections/mtulio/okd_installer
- Check if the collection is present
$ ansible-galaxy collection list |egrep "(okd_installer|^oracle)"
mtulio.okd_installer 0.0.0-latest
oracle.oci 4.23.0
Setup OCI credentials
- See API Key Authentication:
- See https://docs.oracle.com/en-us/iaas/Content/API/Concepts/apisigningkey.htm#two
Make sure your credentials have been set correctly on the file ~/.oci/config
and you can use the OCI ansible collection:
- Get the User ID from the documentation
export oci_user_id=$(grep ^user ~/.oci/config | awk -F '=' '{print$2}')
- Retrieve facts from the user
ansible localhost \
-m oracle.oci.oci_identity_user_facts \
-a user_id=${oci_user_id}
You must be able to collect the user information.