From 1197ef36997d56caa7888a471ccd5939313ebdd6 Mon Sep 17 00:00:00 2001 From: Gualter Barbas Baptista Date: Fri, 1 May 2020 13:45:09 +0200 Subject: [PATCH] Adds post-install of Operator Lifecycle Manager. --- .gitignore | 3 ++- install.yaml | 5 ++++- postinstall.yml | 5 +++++ requirements.yaml | 3 +++ 4 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 postinstall.yml diff --git a/.gitignore b/.gitignore index d2c9d02..42d5682 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *.retry *.creds -roles/ \ No newline at end of file +roles/ +.history \ No newline at end of file diff --git a/install.yaml b/install.yaml index d510a0e..f78ded2 100644 --- a/install.yaml +++ b/install.yaml @@ -25,4 +25,7 @@ - role: create_volumes_for_storage_class - name: Include kubespray tasks - include: ./kubespray/cluster.yml \ No newline at end of file + include: ./kubespray/cluster.yml + +- name: Post-install tasks + include: postinstall.yml \ No newline at end of file diff --git a/postinstall.yml b/postinstall.yml new file mode 100644 index 0000000..59fc776 --- /dev/null +++ b/postinstall.yml @@ -0,0 +1,5 @@ +--- + - name: Install Operator Lifecycle Manager + hosts: bm1 + roles: + - role: operator_lifecycle_manager \ No newline at end of file diff --git a/requirements.yaml b/requirements.yaml index efea98e..315bf00 100644 --- a/requirements.yaml +++ b/requirements.yaml @@ -4,4 +4,7 @@ scm: git - src: git@git.indie.host:liiibre/infrastructure/ansible-roles/wireguard-for-canal + scm: git + +- src: git@git.indie.host:liiibre/infrastructure/ansible-roles/operator_lifecycle_manager scm: git \ No newline at end of file -- GitLab