Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add feature to install olm via rpm #61

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions defaults/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ microshift_ovn: {}
# Install the OLM - https://olm.operatorframework.io/
setup_olm: false
# https://github.com/operator-framework/operator-lifecycle-manager/releases
# NOTE: the olm_version is not working when microshift_olm_package is set to true.
microshift_olm_package: false
olm_version: "v0.28.0"

# Version of the Operator SDK
Expand Down
73 changes: 45 additions & 28 deletions tasks/olm.yaml
Original file line number Diff line number Diff line change
@@ -1,32 +1,49 @@
---
- name: Fetch operator-sdk
become: true
ansible.builtin.uri:
url: https://github.com/operator-framework/operator-sdk/releases/download/{{ operator_sdk_version }}/operator-sdk_linux_amd64
dest: /usr/local/bin/operator-sdk
mode: "755"
status_code:
- 200
- 304
- name: Install OLM via rpm package
when: microshift_olm_package
block:
- name: Install OLM rpm
become: true
ansible.builtin.yum:
name: microshift-olm
state: present
enablerepo: microshift-rpms,microshift-deps-rpms
notify: Restart Microshift

- name: Check if OLM is installed
ansible.builtin.command: /usr/local/bin/operator-sdk olm status
register: olm_status
failed_when: olm_status.rc not in [0, 1]
changed_when: true
- name: Flush handlers
ansible.builtin.meta: flush_handlers

# Set ns/user to SCC before we run the OLM installation
- name: Ensure privileged SCC for OLM
ansible.builtin.command:
oc adm policy add-scc-to-user privileged system:serviceaccount:olm:{{ item }}
changed_when: true
loop:
- "default"
- "operatorhubio-catalog"
- "olm-operator-serviceaccount"
- name: Install OLM via OperatorSDK
when: not microshift_olm_package
block:
- name: Fetch operator-sdk
become: true
ansible.builtin.uri:
url: https://github.com/operator-framework/operator-sdk/releases/download/{{ operator_sdk_version }}/operator-sdk_linux_amd64
dest: /usr/local/bin/operator-sdk
mode: "755"
status_code:
- 200
- 304

- name: Install OLM with SDK
ansible.builtin.command: |
/usr/local/bin/operator-sdk olm install --version {{ olm_version }}
when: olm_status.rc != 0
changed_when: true
- name: Check if OLM is installed
ansible.builtin.command: /usr/local/bin/operator-sdk olm status
register: olm_status
failed_when: olm_status.rc not in [0, 1]
changed_when: true

# Set ns/user to SCC before we run the OLM installation
- name: Ensure privileged SCC for OLM
ansible.builtin.command:
oc adm policy add-scc-to-user privileged system:serviceaccount:olm:{{ item }}
changed_when: true
loop:
- "default"
- "operatorhubio-catalog"
- "olm-operator-serviceaccount"

- name: Install OLM with SDK
ansible.builtin.command: |
/usr/local/bin/operator-sdk olm install --version {{ olm_version }}
when: olm_status.rc != 0
changed_when: true