[AAI] Service Mesh compatibility
[oom.git] / kubernetes / common / common / templates / _serviceMesh.tpl
1 {{/*
2 # Copyright © 2020 Amdocs, Bell Canada, Orange
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 */}}
16
17
18 {/*
19   Calculate if we are on service mesh.
20 */}}
21 {{- define "common.onServiceMesh" -}}
22 {{-   if .Values.global.serviceMesh -}}
23 {{-     if (default false .Values.global.serviceMesh.enabled) -}}
24 true
25 {{-     end -}}
26 {{-   end -}}
27 {{- end -}}
28
29 {{- define "common.serviceMesh.killSidecar" -}}
30 {{-   if (include "common.onServiceMesh" .) }}
31 RCODE="$?";
32 echo "*** script finished with exit code $RCODE" ;
33 echo "*** killing service mesh sidecar" ;
34 curl -sf -X POST http://127.0.0.1:15020/quitquitquit ;
35 echo "" ;
36 echo "*** exiting with script exit code" ;
37 exit "$RCODE"
38 {{-   end }}
39 {{- end -}}