Revert "basic auth for so-monitoring"
[oom.git] / kubernetes / aaf / charts / aaf-fs / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
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 #################################################################
16 # Global configuration defaults.
17 #################################################################
18 global:
19   nodePortPrefix: 302
20   readinessRepository: oomk8s
21   readinessImage: readiness-check:2.0.0
22 flavor: small
23 #################################################################
24 # Application configuration defaults.
25 #################################################################
26 # application image
27 pullPolicy: Always
28
29
30 nodeSelector: {}
31
32 affinity: {}
33
34 # probe configuration parameters
35 liveness:
36   initialDelaySeconds: 120
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
42 readiness:
43   initialDelaySeconds: 5
44   periodSeconds: 10
45
46 service:
47   name: aaf-fs
48   type: ClusterIP
49   portName: aaf-fs
50   #targetPort
51   internalPort: 8096
52   #port
53   externalPort: 8096
54
55 ingress:
56   enabled: false
57
58 # Configure resource requests and limits
59 resources: {}
60 # Allow END users to do this, if they want.  Detrimental to Test services
61 #  small:
62 #    limits:
63 #      cpu: 200m
64 #      memory: 800Mi
65 #    requests:
66 #      cpu: 10m
67 #      memory: 300Mi
68 #  large:
69 #    limits:
70 #      cpu: 500m
71 #      memory: 700Mi
72 #    requests:
73 #      cpu: 100m
74 #      memory: 400Mi
75 #  unlimited: {}