From d597817a147258adf1024cc0476215662c664540 Mon Sep 17 00:00:00 2001 From: arvindpatel Date: Wed, 28 Oct 2020 13:18:05 +0530 Subject: [PATCH] mecm-fe role added Signed-off-by: arvindpatel Change-Id: Icf77792ac7c0a68fa75eeefb8f856d008cac9bc5 --- .../playbooks/roles/eg_mecm-fe/tasks/install.yml | 26 ++++++++++++++++++++++ .../playbooks/roles/eg_mecm-fe/tasks/main.yml | 21 +++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 ocd/infra/playbooks/roles/eg_mecm-fe/tasks/install.yml create mode 100644 ocd/infra/playbooks/roles/eg_mecm-fe/tasks/main.yml 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 index 0000000..b6373a6 --- /dev/null +++ b/ocd/infra/playbooks/roles/eg_mecm-fe/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. +# + +--- + +- 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 index 0000000..51d8432 --- /dev/null +++ b/ocd/infra/playbooks/roles/eg_mecm-fe/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 eg_mecm-fe +- include: "install.yml" + static: false + when: operation == 'install' -- 2.16.6