Vid Template alignment.
[oom.git] / kubernetes / aai / charts / aai-hbase / values.yaml
1 # Default values for hbase.
2 # This is a YAML-formatted file.
3 # Declare variables to be passed into your templates.
4 global: # global defaults
5   nodePortPrefix: 302
6
7
8 # application image
9 dockerhubRepository: registry.hub.docker.com
10 image: aaionap/hbase:1.2.0
11 pullPolicy: Always
12
13 # application configuration
14 config: {}
15
16
17 # default number of instances
18 replicaCount: 1
19
20 nodeSelector: {}
21
22 affinity: {}
23
24 # probe configuration parameters
25 liveness:
26   initialDelaySeconds: 10
27   periodSeconds: 10
28   # necessary to disable liveness probe when setting breakpoints
29   # in debugger so K8s doesn't restart unresponsive container
30   enabled: true
31
32 readiness:
33   initialDelaySeconds: 10
34   periodSeconds: 10
35
36 service:
37   type: ClusterIP
38   name: aai-hbase
39   internalPort: 2181
40   internalPort2: 8080
41   internalPort3: 8085
42   internalPort4: 9090
43   internalPort5: 16000
44   internalPort6: 16010
45   internalPort7: 16201
46
47
48 ingress:
49   enabled: false
50
51 persistence:
52   enabled: true
53
54   ## A manually managed Persistent Volume and Claim
55   ## Requires persistence.enabled: true
56   ## If defined, PVC must be created manually before volume will be bound
57   # existingClaim:
58   volumeReclaimPolicy: Retain
59
60   ## database data Persistent Volume Storage Class
61   ## If defined, storageClassName: <storageClass>
62   ## If set to "-", storageClassName: "", which disables dynamic provisioning
63   ## If undefined (the default) or set to null, no storageClassName spec is
64   ##   set, choosing the default provisioner.  (gp2 on AWS, standard on
65   ##   GKE, AWS & OpenStack)
66   ##
67   ## storageClass: "-"
68   accessMode: ReadWriteMany
69   size: 2Gi
70   mountPath: /dockerdata-nfs
71   mountSubPath: aai/hbase
72
73   
74 resources: {}
75   # We usually recommend not to specify default resources and to leave this as a conscious
76   # choice for the user. This also increases chances charts run on environments with little
77   # resources, such as Minikube. If you do want to specify resources, uncomment the following
78   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
79   #
80   # Example:
81   # Configure resource requests and limits
82   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
83   # Minimum memory for development is 2 CPU cores and 4GB memory
84   # Minimum memory for production is 4 CPU cores and 8GB memory
85 #resources:
86 #  limits:
87 #    cpu: 2
88 #    memory: 4Gi
89 #  requests:
90 #    cpu: 2
91 #    memory: 4Gi