First draft of the SMO package based on the ONAP charts
[it/dep.git] / smo-install / oran_oom / ric-common / templates / _docker.tpl
1 ################################################################################
2 #   Copyright (c) 2019 AT&T Intellectual Property.                             #
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 {{- define "common.dockerregistry.url" -}}
18   {{- $defaultregistry := .defaultregistry }}
19   {{- $keylist := list $.ctx.Chart.Name "registry" -}}
20   {{- $ctx := dict "ctx" $.ctx.Values "keylist" $keylist -}}
21   {{- $overrideregistry := include "locate" $ctx -}}
22   {{- $keylist := list "common" "localregistry" -}}
23   {{- $ctx := dict "ctx" $.ctx.Values "keylist" $keylist -}}
24   {{- $localregistry := include "locate" $ctx -}}
25   {{- if not (empty $overrideregistry) -}}
26     {{- $overrideregistry -}}
27   {{- else -}}
28     {{- if not (empty $localregistry) -}}
29       {{- $localregistry -}}
30     {{- else -}}
31       {{- $defaultregistry -}}
32     {{- end -}}
33   {{- end -}}
34 {{- end -}}
35
36
37 {{- define "common.dockerregistry.credential" -}}
38   {{- $reponame := include "common.dockerregistry.url" . -}}
39   {{- $postfix := $reponame | replace "." "-" | replace ":" "-" | replace "/" "-" | trunc 63 | trimSuffix "-" -}}
40   {{- printf "secret-%s" $postfix -}}
41 {{- end -}}
42
43
44 {{- define "common.dockerregistry.pullpolicy" -}}
45   {{- $defaulpullpolicy := .defaultpullpolicy }}
46   {{- $keylist := list $.ctx.Chart.Name "pullpolicy" -}}
47   {{- $ctx := dict "ctx" $.ctx.Values "keylist" $keylist -}}
48   {{- $overridepullpolicy := include "locate" $ctx -}}
49   {{- $keylist := list "common" "pullpolicy" -}}
50   {{- $ctx := dict "ctx" $.ctx.Values "keylist" $keylist -}}
51   {{- $globalpullpolicy := include "locate" $ctx -}}
52   {{- if not (empty $overridepullpolicy) -}}
53     {{- $overridepullpolicy -}}
54   {{- else -}}
55     {{- if not (empty $globalpullpolicy) -}}
56       {{- $globalpullpolicy -}}
57     {{- else -}}
58       {{- $defaulpullpolicy -}}
59     {{- end -}}
60   {{- end -}}
61 {{- end -}}
62
63