@@ -239,6 +239,14 @@ master:
239239 # # ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer
240240 # #
241241 # loadBalancerIP:
242+ # # Provide functionality to use RBAC
243+ # #
244+ serviceAccount :
245+ # # Specifies whether a ServiceAccount should be created for the master node
246+ create : false
247+ # # The name of the ServiceAccount to use.
248+ # # If not set and create is true, a name is generated using the fullname template
249+ name :
242250
243251# # Elasticsearch coordinating-only node parameters
244252# #
@@ -321,6 +329,16 @@ coordinating:
321329 # # ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer
322330 # #
323331 # loadBalancerIP:
332+ # # Provide functionality to use RBAC
333+ # #
334+ serviceAccount :
335+ # # Specifies whether a ServiceAccount should be created for the coordinating node
336+ # #
337+ create : false
338+ # # The name of the ServiceAccount to use.
339+ # # If not set and create is true, a name is generated using the fullname template
340+ # #
341+ name :
324342
325343# # Elasticsearch data node parameters
326344# #
@@ -413,6 +431,16 @@ data:
413431 # # Persistent Volume size
414432 # #
415433 size : 8Gi
434+ # # Provide functionality to use RBAC
435+ # #
436+ serviceAccount :
437+ # # Specifies whether a ServiceAccount should be created for the data node
438+ # #
439+ create : false
440+ # # The name of the ServiceAccount to use.
441+ # # If not set and create is true, a name is generated using the fullname template
442+ # #
443+ name :
416444
417445# # Elasticsearch ingest node parameters
418446# #
0 commit comments