Merge "Adding Beijing Documentation"
[oom.git] / kubernetes / msb / templates / kube2msb-registrator-deployment.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 #{{ if not .Values.disableKube2MsbKube2MsbRegistrator }}
16 apiVersion: extensions/v1beta1
17 kind: Deployment
18 metadata:
19   name: kube2msb-registrator
20   namespace: "{{ .Values.nsPrefix }}"
21 spec:
22   replicas: 1
23   selector:
24     matchLabels:
25       app: kube2msb-registrator
26   template:
27     metadata:
28       labels:
29         app: kube2msb-registrator
30       name: kube2msb-registrator
31     spec:
32       hostname: kube2msb-registrator
33       initContainers:
34       - command:
35         - /root/ready.py
36         args:
37         - --container-name
38         - msb-discovery
39         env:
40         - name: NAMESPACE
41           valueFrom:
42             fieldRef:
43               apiVersion: v1
44               fieldPath: metadata.namespace
45         image: {{ .Values.image.readiness }}
46         imagePullPolicy: {{ .Values.pullPolicy }}
47         name: kube2msb-registrator-readiness
48       containers:
49       - args:
50         image: {{ .Values.image.kube2msb }}
51         name: kube2msb-registrator
52         env:
53         - name: KUBE_MASTER_URL
54           value: {{ .Values.kubeMasterUrl }}
55         - name: MSB_URL
56           value: {{tpl $.Values.discoveryUrl .}}
57         imagePullPolicy: {{ .Values.pullPolicy }}
58       imagePullSecrets:
59       - name: "{{ .Values.nsPrefix }}-docker-registry-key"
60 #{{ end }}