aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/ansible-vvp-templates/files/configmaps/imagescanner-configmap.yaml
blob: 23c2be85f0264a24f72113381b0caef9818af8d1 (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
---
kind: ConfigMap
apiVersion: v1
metadata:
  name: imagescanner-settings
  namespace: default
data:
  imagescannerconfig.py: |
    import os
    from pathlib import Path
    from awsauth import S3Auth
    # A mapping from host names to Requests Authentication Objects; see
    # http://docs.python-requests.org/en/master/user/authentication/
    AUTHS = {}
    if 'S3_HOST' in os.environ:
        AUTHS[os.environ['S3_HOST']] = S3Auth(
            os.environ['AWS_ACCESS_KEY_ID'],
            os.environ['AWS_SECRET_ACCESS_KEY'],
            service_url='https://%s/' % os.environ['S3_HOST']
            )
    LOGS_PATH = Path(os.environ['IMAGESCANNER_LOGS_PATH'])
    STATUSFILE = LOGS_PATH/'status.txt'
    # A dict passed as kwargs to jenkins.Jenkins constructor.
    JENKINS = {
      'url': 'http://jenkins:8080',
      'username': 'admin',
      'password': os.environ['SECRET_JENKINS_PASSWORD'],
      }