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 | |
Jan Malkiewicz | c681111 | 2020-12-10 10:34:00 +0100 | [diff] [blame] | 28 | |
Jan Malkiewicz | 741fb0b | 2020-11-18 11:31:06 +0100 | [diff] [blame] | 29 | # Service configuration |
| 30 | service: |
| 31 | name: oom-certservice-cmpv2issuer-metrics-service |
| 32 | type: ClusterIP |
| 33 | ports: |
| 34 | name: https |
| 35 | port: 8443 |
| 36 | targetPort: https |
| 37 | |
| 38 | # Deployment configuration |
| 39 | deployment: |
| 40 | name: oom-certservice-cmpv2issuer |
Remigiusz Janeczek | ce152ff | 2020-12-29 08:53:17 +0100 | [diff] [blame] | 41 | image: onap/org.onap.oom.platform.cert-service.oom-certservice-k8s-external-provider:2.3.2 |
Jan Malkiewicz | 741fb0b | 2020-11-18 11:31:06 +0100 | [diff] [blame] | 42 | proxyImage: gcr.io/kubebuilder/kube-rbac-proxy:v0.4.0 |
| 43 | # fol local development use IfNotPresent |
| 44 | pullPolicy: Always |
| 45 | logLevel: debug |
| 46 | resources: |
| 47 | limits: |
| 48 | cpu: 250m |
| 49 | memory: 128Mi |
| 50 | requests: |
| 51 | cpu: 100m |
| 52 | memory: 64Mi |
| 53 | deploymentProxy: |
| 54 | name: kube-rbac-proxy |
| 55 | image: gcr.io/kubebuilder/kube-rbac-proxy:v0.4.0 |
| 56 | pullPolicy: IfNotPresent |
| 57 | resources: |
| 58 | limits: |
| 59 | cpu: 250m |
| 60 | memory: 128Mi |
| 61 | requests: |
| 62 | cpu: 50m |
| 63 | memory: 32Mi |
Jan Malkiewicz | c681111 | 2020-12-10 10:34:00 +0100 | [diff] [blame] | 64 | readinessCheck: |
| 65 | wait_for: |
| 66 | - oom-cert-service |
Jan Malkiewicz | 741fb0b | 2020-11-18 11:31:06 +0100 | [diff] [blame] | 67 | |
| 68 | # CMPv2Issuer |
| 69 | cmpv2issuer: |
| 70 | name: cmpv2-issuer-onap |
| 71 | url: https://oom-cert-service:8443 |
| 72 | healthcheckEndpoint: actuator/health |
| 73 | certEndpoint: v1/certificate |
| 74 | caName: RA |
| 75 | certSecretRef: |
Piotr Marcinkiewicz | 2ca8a47 | 2021-04-29 13:29:02 +0200 | [diff] [blame] | 76 | name: oom-cert-service-client-tls-secret |
Piotr Marcinkiewicz | 3267293 | 2021-03-26 13:06:35 +0100 | [diff] [blame] | 77 | certRef: tls.crt |
| 78 | keyRef: tls.key |
| 79 | cacertRef: ca.crt |
Jan Malkiewicz | 741fb0b | 2020-11-18 11:31:06 +0100 | [diff] [blame] | 80 | |
| 81 | |
| 82 | |
| 83 | |