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