blob: 003782ded1fe40185260b8ecabb06cadebb79335 [file] [log] [blame]
Sylvain Desbureaux2b2aa112020-11-19 16:22:39 +01001# Copyright © 2020 Orange
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
15global:
16 # Repositories used
17 repository: nexus3.onap.org:10001
18 dockerHubRepository: docker.io
19 elasticRepository: docker.elastic.co
20 googleK8sRepository: k8s.gcr.io
21
22 # common global images
23 busyboxImage: busybox:1.32
24 curlImage: curlimages/curl:7.69.1
25 envsubstImage: dibi/envsubst:1
26 # there's only latest image for htpasswd
27 htpasswdImage: xmartlabs/htpasswd:latest
28 kubectlImage: bitnami/kubectl:1.19
29 loggingImage: beats/filebeat:5.5.0
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +010030 mariadbImage: bitnami/mariadb:10.5.8
Sylvain Desbureaux2b2aa112020-11-19 16:22:39 +010031 nginxImage: bitnami/nginx:1.18-debian-10
32 postgresImage: crunchydata/crunchy-postgres:centos7-10.11-4.2.1
33 readinessImage: onap/oom/readiness:3.0.1
34
35 # Default credentials
36 # they're optional. If the target repository doesn't need them, comment them
37 repositoryCred:
38 user: docker
39 password: docker
40 # If you want / need authentication on the repositories, please set
41 # Don't set them if the target repo is the same than others
42 # dockerHubCred:
43 # user: myuser
44 # password: mypassord
45 # elasticCred:
46 # user: myuser
47 # password: mypassord
48 # googleK8sCred:
49 # user: myuser
50 # password: mypassord
51
52imageRepoMapping:
53 busyboxImage: dockerHubRepository
54 curlImage: dockerHubRepository
55 envsubstImage: dockerHubRepository
56 htpasswdImage: dockerHubRepository
57 kubectlImage: dockerHubRepository
58 loggingImage: elasticRepository
59 mariadbImage: dockerHubRepository
60 nginxImage: dockerHubRepository
61 postgresImage: dockerHubRepository
62 readinessImage: repository