Added role for k8s 37/3437/4
authorArvind Patel <arvind.patel@huawei.com>
Wed, 13 May 2020 17:26:54 +0000 (22:56 +0530)
committerGaurav Agrawal <gaurav.agrawal@huawei.com>
Fri, 15 May 2020 12:19:23 +0000 (12:19 +0000)
Change-Id: I68c8b5761a2105dc24541eb2a8712ca0a093ac80

ocd/infra/playbooks/roles/k8s/tasks/install.yml [new file with mode: 0644]
ocd/infra/playbooks/roles/k8s/tasks/main.yml [new file with mode: 0644]

diff --git a/ocd/infra/playbooks/roles/k8s/tasks/install.yml b/ocd/infra/playbooks/roles/k8s/tasks/install.yml
new file mode 100644 (file)
index 0000000..52466ab
--- /dev/null
@@ -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 (file)
index 0000000..316542a
--- /dev/null
@@ -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'