# 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