mecm-fe role added 29/3829/2
authorarvindpatel <arvind.patel@huawei.com>
Wed, 28 Oct 2020 07:48:05 +0000 (13:18 +0530)
committerArvind Patel <arvind.patel@huawei.com>
Wed, 28 Oct 2020 08:06:52 +0000 (08:06 +0000)
Signed-off-by: arvindpatel <arvind.patel@huawei.com>
Change-Id: Icf77792ac7c0a68fa75eeefb8f856d008cac9bc5

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

diff --git a/ocd/infra/playbooks/roles/eg_mecm-fe/tasks/install.yml b/ocd/infra/playbooks/roles/eg_mecm-fe/tasks/install.yml
new file mode 100644 (file)
index 0000000..b6373a6
--- /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.
+#
+
+---
+
+- name: Import config file
+  include_vars:
+      file: ../../../config.yml
+      name: vardata
+
+- name: Pulling repo mecm-fe
+  # yamllint disable rule:line-length
+  command: helm install mecm-fe-edgegallery edgegallery/mecm-fe --set global.oauth2.authServerAddress=https://{{vardata.authServer.name}}:30067 --set global.ssl.enabled=true --set global.ssl.secretName=edgegallery-ssl-secret
diff --git a/ocd/infra/playbooks/roles/eg_mecm-fe/tasks/main.yml b/ocd/infra/playbooks/roles/eg_mecm-fe/tasks/main.yml
new file mode 100644 (file)
index 0000000..51d8432
--- /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 eg_mecm-fe
+- include: "install.yml"
+  static: false
+  when: operation == 'install'