Added deployment configuration for mepagent 38/3638/1
authorArvind Patel <arvind.patel@huawei.com>
Wed, 22 Jul 2020 19:11:44 +0000 (00:41 +0530)
committerArvind Patel <arvind.patel@huawei.com>
Wed, 22 Jul 2020 19:11:44 +0000 (00:41 +0530)
Change-Id: I4ed426177247cd4be6d420ea108c7954683c48e6

ocd/infra/playbooks/roles/mepagent/files/deploy/mepagentScript.sh [new file with mode: 0755]
ocd/infra/playbooks/roles/mepagent/tasks/install-ssl.yml [new file with mode: 0644]
ocd/infra/playbooks/roles/mepagent/tasks/install.yml
ocd/infra/playbooks/roles/mepagent/tasks/main.yml

diff --git a/ocd/infra/playbooks/roles/mepagent/files/deploy/mepagentScript.sh b/ocd/infra/playbooks/roles/mepagent/files/deploy/mepagentScript.sh
new file mode 100755 (executable)
index 0000000..48b1b58
--- /dev/null
@@ -0,0 +1,24 @@
+# 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: Server is running on http port"
+sed -i 's/value: \"0\"/value: \"1"/g' mepagent.yaml
+sed -i 's/#volumeMounts/ volumeMounts/g' mepagent.yaml
+sed -i 's/#- name/ - name/g' mepagent.yaml
+sed -i 's/#mountPath/ mountPath/g' mepagent.yaml
+sed -i 's/#readOnly/ readOnly/g' mepagent.yaml
+sed -i 's/#volumes/ volumes/g' mepagent.yaml
+sed -i 's/#- name/ - name/g' mepagent.yaml
+sed -i 's/#secret/ secret/g' mepagent.yaml
+sed -i 's/#secretName/ secretName/g' mepagent.yaml
diff --git a/ocd/infra/playbooks/roles/mepagent/tasks/install-ssl.yml b/ocd/infra/playbooks/roles/mepagent/tasks/install-ssl.yml
new file mode 100644 (file)
index 0000000..60897e2
--- /dev/null
@@ -0,0 +1,38 @@
+# 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: copy deploy folder to mep node to install mepagent
+  copy:
+    src: deploy
+    dest: /tmp/mepagent/
+
+- name: modifying configuration to support https
+  shell:
+    cmd: cp mepagent.yaml mepagent-ssl.yaml
+    chdir: /tmp/mepagent/deploy/
+
+- name: modify configuraiton to support https
+  shell:
+    cmd: chmod +x mepagentScript.sh && ./mepagentScript.sh
+    chdir: /tmp/mepagent/deploy/
+
+- name: Create mepagent-secret
+  shell:
+# yamllint disable rule:line-length
+    cmd: kubectl create secret --namespace mep generic mepagentssl-secret --from-file=/tmp/mepserver/deploy/server.cer --from-file=/tmp/mepserver/deploy/server_key.pem --from-file=/tmp/mepserver/deploy/trust.cer
+
+- name: Apply mepagent service
+  shell:
+    cmd: kubectl apply -f /tmp/mepagent/deploy/mepagent-ssl.yaml
index 53234a9..20fd1e0 100644 (file)
     src: deploy
     dest: /tmp/mepagent/
 
-- name: Create mepagent-secret
-  shell:
-# yamllint disable rule:line-length
-    cmd: kubectl create secret --namespace mep generic mepagentssl-secret --from-file=/tmp/mepserver/deploy/server.cer --from-file=/tmp/mepserver/deploy/server_key.pem --from-file=/tmp/mepserver/deploy/trust.cer
-
 - name: Apply mepagent service
   shell:
     cmd: kubectl apply -f /tmp/mepagent/deploy/mepagent.yaml
index fc34c0a..17cc6ff 100644 (file)
@@ -14,4 +14,7 @@
 
 ---
 - include: "install.yml"
-  when: operation == 'install'
+  when: operation == 'install' and mode == 'dev'
+
+- include: "install-ssl.yml"
+  when: operation == 'install' and mode == 'prod'