[bitnami/elasticsearch] Add serviceaccount parameters in values-production.yaml (#1760)

This commit is contained in:
Carlos Rodriguez Hernandez
2019-12-23 11:17:09 +00:00
parent a27438c43d
commit 80dbe7ae12
2 changed files with 29 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v1
name: elasticsearch
version: 10.2.0
version: 10.2.1
appVersion: 7.5.1
description: A highly scalable open-source full-text search and analytics engine
keywords:
@@ -239,6 +239,14 @@ master:
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer
##
# loadBalancerIP:
## Provide functionality to use RBAC
##
serviceAccount:
## Specifies whether a ServiceAccount should be created for the master node
create: false
## The name of the ServiceAccount to use.
## If not set and create is true, a name is generated using the fullname template
name:
## Elasticsearch coordinating-only node parameters
##
@@ -321,6 +329,16 @@ coordinating:
## ref: https://kubernetes.io/docs/concepts/services-networking/service/#internal-load-balancer
##
# loadBalancerIP:
## Provide functionality to use RBAC
##
serviceAccount:
## Specifies whether a ServiceAccount should be created for the coordinating node
##
create: false
## The name of the ServiceAccount to use.
## If not set and create is true, a name is generated using the fullname template
##
name:
## Elasticsearch data node parameters
##
@@ -413,6 +431,16 @@ data:
## Persistent Volume size
##
size: 8Gi
## Provide functionality to use RBAC
##
serviceAccount:
## Specifies whether a ServiceAccount should be created for the data node
##
create: false
## The name of the ServiceAccount to use.
## If not set and create is true, a name is generated using the fullname template
##
name:
## Elasticsearch ingest node parameters
##