aboutsummaryrefslogtreecommitdiffstats
path: root/helm/netconf/values.yaml
blob: 9bd8862ec5c506cf2a57b94105d00dfbdbe27d27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# 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

image:
  repository: onap/org.onap.integration.nfsimulator.netconfserver
  pullPolicy: IfNotPresent
  # Overrides the image tag whose default is the chart appVersion.
  tag: ""

imagePullSecrets: []
nameOverride: ""
fullnameOverride: "netconf-server"


podAnnotations: {}

podSecurityContext: {}

securityContext: {}

service:
  type: NodePort
  port: 6555
  nodePort: 30555

resources: {}

zookeeper:
  fullnameOverride: "nf-simulator-zookeeper"
  auth:
    enabled: false
  allowAnonymousLogin: true
  persistence:
    enabled: false

kafka:
  fullnameOverride: "nf-simulator-kafka"
  zookeeper:
    enabled: false
  externalZookeeper:
    servers: "nf-simulator-zookeeper"
  persistence:
    enabled: false

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"