Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / platform / components / cmpv2-cert-provider / values.yaml
1 # Copyright © 2020-2021, Nokia
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 # Global
16 global:
17   nodePortPrefix: 302
18   readinessImage: onap/oom/readiness:6.0.3
19   loggingRepository: docker.elastic.co
20   loggingImage: beats/filebeat:5.5.0
21   busyboxRepository: registry.hub.docker.com
22   busyboxImage: library/busybox:latest
23   repository: "nexus3.onap.org:10001"
24
25 namespace: onap
26
27
28 # Deployment configuration
29 deployment:
30   name: oom-certservice-cmpv2issuer
31   image: onap/org.onap.oom.platform.cert-service.oom-certservice-k8s-external-provider:2.6.0
32   proxyImage: gcr.io/kubebuilder/kube-rbac-proxy:v0.4.0
33   # fol local development use IfNotPresent
34   pullPolicy: Always
35   logLevel: debug
36   resources:
37     limits:
38       cpu: "250m"
39       memory: "100Mi"
40     requests:
41       cpu: "100m"
42       memory: "60Mi"
43 readinessCheck:
44   wait_for:
45     services:
46       - oom-cert-service
47
48 # CMPv2Issuer
49 cmpv2issuer:
50   name: cmpv2-issuer-onap
51   url: https://oom-cert-service:8443
52   healthcheckEndpoint: actuator/health
53   certEndpoint: v1/certificate
54   updateEndpoint: v1/certificate-update
55   caName: RA
56   certSecretRef:
57     name: oom-cert-service-client-tls-secret
58     certRef: tls.crt
59     keyRef: tls.key
60     cacertRef: ca.crt
61
62
63
64