blob: bda12708899c9442f8170ebee455bf0d6e038daf [file] [log] [blame]
kj9bf27312018-03-19 15:07:44 +02001# Default values for hbase.
2# This is a YAML-formatted file.
3# Declare variables to be passed into your templates.
4global: # global defaults
5 nodePortPrefix: 302
kj9bf27312018-03-19 15:07:44 +02006
7
8# application image
9dockerhubRepository: registry.hub.docker.com
10image: aaionap/hbase:1.2.0
11pullPolicy: Always
12
13# application configuration
14config: {}
15
16
17# default number of instances
18replicaCount: 1
19
20nodeSelector: {}
21
22affinity: {}
23
24# probe configuration parameters
25liveness:
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
32readiness:
33 initialDelaySeconds: 10
34 periodSeconds: 10
35
36service:
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
48ingress:
49 enabled: false
50
51persistence:
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
74resources: {}
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