From 2d95a5afeaabd7f2826e3fa0e96fbe128abfe392 Mon Sep 17 00:00:00 2001 From: Arvind Patel Date: Wed, 13 May 2020 22:56:54 +0530 Subject: [PATCH] Added role for k8s Change-Id: I68c8b5761a2105dc24541eb2a8712ca0a093ac80 --- ocd/infra/playbooks/roles/k8s/tasks/install.yml | 26 +++++++++++++++++++++++++ ocd/infra/playbooks/roles/k8s/tasks/main.yml | 21 ++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 ocd/infra/playbooks/roles/k8s/tasks/install.yml create mode 100644 ocd/infra/playbooks/roles/k8s/tasks/main.yml diff --git a/ocd/infra/playbooks/roles/k8s/tasks/install.yml b/ocd/infra/playbooks/roles/k8s/tasks/install.yml new file mode 100644 index 0000000..52466ab --- /dev/null +++ b/ocd/infra/playbooks/roles/k8s/tasks/install.yml @@ -0,0 +1,26 @@ +# Copyright 2020 Huawei Technologies Co., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +--- +# tasks file for k8s +- name: debug msg + debug: + msg: installing k8s + +- name: Install k8s + shell: +# yamllint disable rule:line-length + cmd: ansible-playbook -i inventory/mycluster/hosts.yaml --become --become-user=root cluster.yml +# yamllint disable rule:line-length + chdir: /root/kubespray/ diff --git a/ocd/infra/playbooks/roles/k8s/tasks/main.yml b/ocd/infra/playbooks/roles/k8s/tasks/main.yml new file mode 100644 index 0000000..316542a --- /dev/null +++ b/ocd/infra/playbooks/roles/k8s/tasks/main.yml @@ -0,0 +1,21 @@ +# Copyright 2020 Huawei Technologies Co., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +--- +# tasks file for k8s +- include: "install.yml" + when: operation == 'install' + +#- include: "uninstall.yml" + #when: operation == 'uninstall' -- 2.16.6