Jan Malkiewicz | 741fb0b | 2020-11-18 11:31:06 +0100 | [diff] [blame^] | 1 | # Copyright © 2020, 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:3.0.1 |
| 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 | CMPv2CertManagerIntegration: false |
| 25 | |
| 26 | namespace: onap |
| 27 | |
| 28 | # Service configuration |
| 29 | service: |
| 30 | name: oom-certservice-cmpv2issuer-metrics-service |
| 31 | type: ClusterIP |
| 32 | ports: |
| 33 | name: https |
| 34 | port: 8443 |
| 35 | targetPort: https |
| 36 | |
| 37 | # Deployment configuration |
| 38 | deployment: |
| 39 | name: oom-certservice-cmpv2issuer |
| 40 | image: onap/org.onap.oom.platform.cert-service.oom-certservice-k8s-external-provider:2.3.0 |
| 41 | proxyImage: gcr.io/kubebuilder/kube-rbac-proxy:v0.4.0 |
| 42 | # fol local development use IfNotPresent |
| 43 | pullPolicy: Always |
| 44 | logLevel: debug |
| 45 | resources: |
| 46 | limits: |
| 47 | cpu: 250m |
| 48 | memory: 128Mi |
| 49 | requests: |
| 50 | cpu: 100m |
| 51 | memory: 64Mi |
| 52 | deploymentProxy: |
| 53 | name: kube-rbac-proxy |
| 54 | image: gcr.io/kubebuilder/kube-rbac-proxy:v0.4.0 |
| 55 | pullPolicy: IfNotPresent |
| 56 | resources: |
| 57 | limits: |
| 58 | cpu: 250m |
| 59 | memory: 128Mi |
| 60 | requests: |
| 61 | cpu: 50m |
| 62 | memory: 32Mi |
| 63 | |
| 64 | # CMPv2Issuer |
| 65 | cmpv2issuer: |
| 66 | name: cmpv2-issuer-onap |
| 67 | url: https://oom-cert-service:8443 |
| 68 | healthcheckEndpoint: actuator/health |
| 69 | certEndpoint: v1/certificate |
| 70 | caName: RA |
| 71 | certSecretRef: |
| 72 | name: cmpv2-issuer-secret |
| 73 | certRef: certServiceServer-cert.pem |
| 74 | keyRef: certServiceServer-key.pem |
| 75 | cacertRef: truststore.pem |
| 76 | |
| 77 | |
| 78 | |
| 79 | |