Fix test failures in K8s CSIT
[policy/docker.git] / helm / policy / components / policy-models-simulator / values.yaml
1 # Default values for policy-models-simulator.
2 # This is a YAML-formatted file.
3 # Declare variables to be passed into your templates.
4
5 replicaCount: 1
6
7 image:
8   repository: nexus3.onap.org:10001/onap/policy-models-simulator
9   tag: latest
10   pullPolicy: IfNotPresent
11
12 imagePullSecrets: []
13 nameOverride: ""
14 fullnameOverride: ""
15
16 serviceAccount:
17   # Specifies whether a service account should be created
18   create: true
19   # The name of the service account to use.
20   # If not set and create is true, a name is generated using the fullname template
21   name:
22
23 podSecurityContext: {}
24   # fsGroup: 2000
25
26 securityContext: {}
27   # capabilities:
28   #   drop:
29   #   - ALL
30   # readOnlyRootFilesystem: true
31   # runAsNonRoot: true
32   # runAsUser: 1000
33
34 # probe configuration parameters
35 liveness:
36   initialDelaySeconds: 20
37   periodSeconds: 10
38   # necessary to disable liveness probe when setting breakpoints
39   # in debugger so K8s doesn't restart unresponsive container
40   enabled: true
41   port: message-router
42
43 readiness:
44   initialDelaySeconds: 20
45   periodSeconds: 10
46   port: message-router
47
48 service:
49   type: ClusterIP
50   name: message-router
51   portName: message-router
52   externalPort2: 6666
53   internalPort2: 6666
54   externalPort3: 6668
55   internalPort3: 6668
56   externalPort4: 6669
57   internalPort4: 6669
58   externalPort5: 6670
59   internalPort5: 6670
60   externalPort6: 6680
61   internalPort6: 6680
62   externalPort7: 3904
63   internalPort7: 3904
64
65 ingress:
66   enabled: false
67   annotations: {}
68     # kubernetes.io/ingress.class: nginx
69     # kubernetes.io/tls-acme: "true"
70   hosts:
71     - host: chart-example.local
72       paths: []
73
74   tls: []
75   #  - secretName: chart-example-tls
76   #    hosts:
77   #      - chart-example.local
78
79 resources: {}
80   # We usually recommend not to specify default resources and to leave this as a conscious
81   # choice for the user. This also increases chances charts run on environments with little
82   # resources, such as Minikube. If you do want to specify resources, uncomment the following
83   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
84   # limits:
85   #   cpu: 100m
86   #   memory: 128Mi
87   # requests:
88   #   cpu: 100m
89   #   memory: 128Mi
90
91 nodeSelector: {}
92
93 tolerations: []
94
95 affinity: {}