aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/ansible-vvp-templates/templates/deployments/20-imagescanner.yaml.j2
blob: b8f2f66e720922bb2a2199387efae362c326b92e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# -*- encoding: utf-8 -*- 
# ============LICENSE_START======================================================= 
# org.onap.vvp/engagementmgr
# ===================================================================
# Copyright © 2017 AT&T Intellectual Property. All rights reserved.
# ===================================================================
#
# Unless otherwise specified, all software contained herein is licensed
# under the Apache License, Version 2.0 (the “License”);
# you may not use this software 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.
#
#
#
# Unless otherwise specified, all documentation contained herein is licensed
# under the Creative Commons License, Attribution 4.0 Intl. (the “License”);
# you may not use this documentation except in compliance with the License.
# You may obtain a copy of the License at
#
#             https://creativecommons.org/licenses/by/4.0/
#
# Unless required by applicable law or agreed to in writing, documentation
# 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.
#
# ============LICENSE_END============================================
#
# ECOMP is a trademark and service mark of AT&T Intellectual Property.
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: imagescanner
spec:
  template:
    spec:
      imagePullSecrets:
      - name: onapkey

      containers:
      - name: imagescanner-worker
        image: {{container_uri}}image-scanner:{{container_tag}}
        command:
        - "sh"
        - "/opt/site-certificate/wrapper.sh"
        - "/usr/local/bin/imagescanner-worker"
        securityContext:
          privileged: true
        volumeMounts:
        - name: imagescanner-ssh
          mountPath: /root/.ssh
        - name: dev
          mountPath: /dev
        - name: logs
          mountPath: /var/log/imagescanner
        - name: imagescanner-settings
          mountPath: /opt/imagescanner-settings
        - name: site-certificate
          mountPath: /opt/site-certificate
        env:
        - name: PYTHONPATH
          value: /opt/imagescanner-settings
        - name: S3_HOST
          value: "{{s3_dns_name}}"
        - name: S3_PORT
          value: "443"
        - name: AWS_ACCESS_KEY_ID
          valueFrom:
            secretKeyRef: {name: em-secret, key: aws_access_key_id}
        - name: AWS_SECRET_ACCESS_KEY
          valueFrom:
            secretKeyRef: {name: em-secret, key: aws_secret_access_key}
        - name: SECRET_JENKINS_PASSWORD
          value: ''
        - name: REQUESTS_CA_BUNDLE
          value: /etc/ssl/certs/ca-certificates.crt

      - name: notifications-worker
        image: {{container_uri}}image-scanner:{{container_tag}}
        command: ["/usr/local/bin/notifications-worker"]
        securityContext:
          privileged: true
        env:
        - name: SLACK_TOKEN
          valueFrom:
            secretKeyRef: {name: slack-tokens, key: notifications}
        - name: DOMAIN
          value: "{{em_internal_dns_name}}"
        - name: PYTHONPATH
          value: /opt/imagescanner-settings
        - name: SECRET_JENKINS_PASSWORD
          valueFrom:
            secretKeyRef: {name: em-secret, key: jenkins_admin_password}
        volumeMounts:
        - name: imagescanner-settings
          mountPath: /opt/imagescanner-settings

      - name: imagescanner-frontend
        image: {{container_uri}}image-scanner:{{container_tag}}
        command: ["/usr/local/bin/imagescanner-frontend"]
        {#
            FIXME: No, the frontend does not require a privileged container.
            However, it seems that if you run the frontend container without
            this specification in the same pod as the worker, then the worker
            loses its privileges!
        -#}
        securityContext:
          privileged: true
        ports:
        - containerPort: 80
        volumeMounts:
        - name: logs
          mountPath: /var/log/imagescanner
        - name: imagescanner-settings
          mountPath: /opt/imagescanner-settings
        env:
        - name: DEFAULT_SLACK_CHANNEL
          value: "#notifications"
        - name: SECRET_JENKINS_PASSWORD
          value: ''

      volumes:
      - name: imagescanner-ssh
        secret:
          secretName: imagescanner-ssh
          defaultMode: 0600
      - name: dev
        hostPath:
          path: /dev
      - name: logs
        emptyDir: {}
      - name: imagescanner-settings
        configMap:
          name: imagescanner-settings
      - name: site-certificate
        configMap:
          name: site-certificate

    metadata:
      labels:
        run: imagescanner