diff options
Diffstat (limited to 'helm/netconf/values.yaml')
-rw-r--r-- | helm/netconf/values.yaml | 68 |
1 files changed, 65 insertions, 3 deletions
diff --git a/helm/netconf/values.yaml b/helm/netconf/values.yaml index 3feebe1..9bd8862 100644 --- a/helm/netconf/values.yaml +++ b/helm/netconf/values.yaml @@ -1,6 +1,16 @@ -# Default values for ves-client. -# This is a YAML-formatted file. -# Declare variables to be passed into your templates. +# Copyright © 2022 Nokia. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. replicaCount: 1 @@ -47,9 +57,61 @@ kafka: config: kafka_hostname: "nf-simulator-kafka" + tls: + enabled: true + certService: + enabled: true nodeSelector: {} tolerations: [] affinity: {} + +certsDir: "/tmp/certs" + +serverCertificates: + name: netconfserver + dnsNames: + - netconfserver + renewBefore: 720h #30 days + duration: 8760h #365 days + commonName: netconfserver + subject: + organization: "Linux-Foundation" + country: "US" + locality: "San-Francisco" + province: "California" + organizationalUnit: "ONAP" + # issuer: + # group: certmanager.onap.org + # kind: CMPv2Issuer + # name: cmpv2-issuer-onap + issuerRef: + group: certmanager.onap.org + kind: CMPv2Issuer + name: cmpv2-issuer-onap + # ipAddresses: "127.0.0.1" + +clientCertificates: + name: netconfclient + dnsNames: + - netconfclient + renewBefore: 720h #30 days + duration: 8760h #365 days + commonName: netconfclient + subject: + organization: "Linux-Foundation" + country: "US" + locality: "San-Francisco" + province: "California" + organizationalUnit: "ONAP" + # issuer: + # group: certmanager.onap.org + # kind: CMPv2Issuer + # name: cmpv2-issuer-onap + issuerRef: + group: certmanager.onap.org + kind: CMPv2Issuer + name: cmpv2-issuer-onap + # ipAddresses: "127.0.0.1" |