Files
deprecated-helm-charts/stable/graylog/values.yaml
T
Sam WestonandKubernetes Prow Robot c27ce4c5c7 [stable/graylog] Add provisioner Job option (#14756)
* [stable/graylog] Add provisioner Job option

Signed-off-by: Sam Weston <weston.sam@gmail.com>

* [stable/graylog] Add documentation to values file for provisioner job

Signed-off-by: Sam Weston <weston.sam@gmail.com>
2019-06-13 03:52:14 -07:00

295 lines
9.6 KiB
YAML

# Default values for Graylog.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
rbac:
# Specifies whether RBAC resources should be created
##
create: true
serviceAccount:
# Specifies whether a ServiceAccount should be created
##
create: true
# The name of the ServiceAccount to use.
# If not set and create is true, a name is generated using the fullname template
##
name:
tags:
# If true, this chart will install Elasticsearch from requirement dependencies
install-elasticsearch: true
# If true, this chart will install MongoDB replicaset from requirement dependencies
install-mongodb: true
graylog:
## Graylog image version
## Ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
##
## Important note: Official Graylog Docker image may replace the existing Docker image tags and cause some corrupt when starting the pod.
## Make sure you strict with the `x` version of Graylog where `x` is ${version}-${x}
##
image:
# repository: "graylog/graylog:2.5.1-3"
repository: "graylog/graylog:3.0.2-2"
pullPolicy: "IfNotPresent"
## Number of Graylog instance
##
replicas: 2
## Additional environment variables to be added to Graylog pods
##
env: {}
## Pod affinity
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
##
affinity: {}
## Node tolerations for node-exporter scheduling to nodes with taints
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
##
tolerations: []
# - key: "key"
# operator: "Equal|Exists"
# value: "value"
# effect: "NoSchedule|PreferNoSchedule|NoExecute(1.6 only)"
## Node labels for node-exporter pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## Annotations to be added to Graylog pods
##
podAnnotations: {}
persistence:
## If true, Graylog will create/use a Persistent Volume Claim
## If false, use emptyDir
##
enabled: true
## Graylog data Persistent Volume access modes
## Must match those of existing PV or dynamic provisioner
## Ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
##
accessMode: ReadWriteOnce
## Graylog data Persistent Volume size
##
size: "20Gi"
## Graylog data Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
# storageClass: "ssd"
## Additional plugins you need to install on Graylog.
##
plugins: []
# - name: graylog-plugin-slack-2.7.1.jar
# url: https://github.com/omise/graylog-plugin-slack/releases/download/2.7.1/graylog-plugin-slack-2.7.1.jar
# - name: graylog-plugin-function-check-diff-1.0.0.jar
# url: https://github.com/omise/graylog-plugin-function-check-diff/releases/download/1.0.0/graylog-plugin-function-check-diff-1.0.0.jar
# - name: graylog-plugin-custom-alert-condition-1.0.0.jar
# url: https://github.com/omise/graylog-plugin-custom-alert-condition/releases/download/v1.0.0/graylog-plugin-custom-alert-condition-1.0.0.jar
# - name: graylog-plugin-auth-sso-3.0.0.jar
# url: https://github.com/Graylog2/graylog-plugin-auth-sso/releases/download/3.0.0/graylog-plugin-auth-sso-3.0.0.jar
## A service for Graylog web interface
##
service:
type: ClusterIP
port: 9000
master:
## Graylog master service Ingress annotations
##
annotations: {}
## Graylog master service port.
##
port: 9000
## Additional input ports for receiving logs from servers
## Note: Name must be in IANA_SVC_NAME (at most 15 characters, matching regex [a-z0-9]([a-z0-9-]*[a-z0-9])* and it must contains at least one letter [a-z], hyphens cannot be adjacent to other hyphens)
## Note: Array must be sorted by port order
##
input: {}
# tcp:
# service:
# type: LoadBalancer
# loadBalancerIP:
# ports:
# - name: gelf
# port: 12222
# udp:
# service:
# type: ClusterIP
# ports:
# - name: syslog
# port: 12222
ingress:
## If true, Graylog server Ingress will be created
##
enabled: false
## Graylog server Ingress annotations
##
annotations: {}
## Graylog server Ingress hostnames with optional path
## Must be provided if Ingress is enabled
## Note: Graylog does not support two URL. You can specify only single URL
##
hosts: []
# - graylog.yourdomain.com
## Graylog server Ingress TLS configuration
## Secrets must be manually created in the namespace
##
tls: []
# - secretName: graylog-server-tls
# hosts:
# - graylog.yourdomain.com
## Configure resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
##
resources:
limits:
cpu: "1"
requests:
cpu: "500m"
memory: "1024Mi"
## Set Graylog Java heapsize. If this value empty, chart will allocate heapsize using `-XX:+UseCGroupMemoryLimitForHeap`
## ref: https://blogs.oracle.com/java-platform-group/java-se-support-for-docker-cpu-and-memory-limits
##
# heapSize: "1024g"
## RollingUpdate update strategy
## ref: https://kubernetes.io/docs/tutorials/stateful-application/basic-stateful-set/#updating-statefulsets
##
updateStrategy: OnDelete
## Graylog server pod termination grace period
##
terminationGracePeriodSeconds: 120
metrics:
## If true, prometheus annotations will be attached
##
enabled: false
geoip:
## If true, Maxmind GeoLite2 will be installed to ${GRAYLOG_HOME}/geoip location
##
enabled: false
## Graylog root user name
##
rootUsername: "admin"
## Graylog root password
## Defaults to a random 10-character alphanumeric string if not set
##
# rootPassword: ""
## Graylog root email
##
rootEmail: ""
## Graylog root timezone
##
rootTimezone: "UTC"
elasticsearch:
## List of Elasticsearch hosts Graylog should connect to.
## Need to be specified as a comma-separated list of valid URIs for the http ports of your elasticsearch nodes.
## If one or more of your elasticsearch hosts require authentication, include the credentials in each node URI that
## requires authentication.
##
# hosts: http://elasticsearch-client.graylog.svc.cluster.local:9200
hosts: ""
mongodb:
## MongoDB connection string
## See https://docs.mongodb.com/manual/reference/connection-string/ for details
# uri: mongodb://user:pass@host1:27017,host2:27017,host3:27017/graylog?replicaSet=rs01
uri: ""
## Increase this value according to the maximum connections your MongoDB server can handle from a single client
## if you encounter MongoDB connection problems.
##
maxConnections: 1000
transportEmail:
## If true, enable Email transport.
## See http://docs.graylog.org/en/3.0/pages/configuration/server.conf.html#email for detail
##
enabled: false
hostname: ""
port: 2587
useAuth: true
useTls: true
useSsl: false
authUsername: ""
authPassword: ""
subjectPrefix: "[graylog]"
fromEmail: ""
## Additional graylog config which is defined on `graylog.conf`.
## You can find a complete list of graylog config from http://docs.graylog.org/en/3.0/pages/configuration/server.conf.html
## Graylog config is written in Java properites format. Make sure you write it correctly.
##
# config: |
# elasticsearch_connect_timeout = 10s
# elasticsearch_socket_timeout = 60s
# elasticsearch_idle_timeout = -1s
journal:
## Sometime Graylog journal continually grow up or corrupt and cause Graylog unable to start.
## You need to clean up all journal files in order to run the Graylog.
## Change `graylog.journal.deleteBeforeStart` to `true` to delete all journal files before start
## Note: All uncommitted logs will be permanently DELETED when this value is true
##
deleteBeforeStart: false
## Additional server files will be deployed to /etc/graylog/server
## For example, you can put server certificates or authorized clients certificates here
##
serverFiles: {}
# graylog-server.key: |
# graylog-server.cert: |
## Specify a Bash script to run as Kubernetes Job (running on Alpine with curl and bash packages already installed).
## Useful for calling the API to pre-configure some aspect of Graylog, as in the example.
##
provisioner:
enabled: false
# script: |
# json='{
# "username_header": "X-Auth-Request-User",
# "fullname_header": "X-Auth-Request-User",
# "email_header": "X-Auth-Request-Email",
# "default_group": "Admin",
# "auto_create_user": true,
# "require_trusted_proxies": true,
# "trusted_proxies": "0.0.0.0/0",
# "default_email_domain": "mydomain.com",
# "sync_roles": false,
# "roles_header": "Roles"
# }'
# curl -v -u "admin:$GRAYLOG_PASSWORD_SECRET" -X PUT --header 'Content-Type: application/json' --header 'X-Requested-By: localhost' --data-binary "${json}" http://graylog-master:9000/api/plugins/org.graylog.plugins.auth.sso/config
## Specify Elasticsearch version from requirement dependencies. Ignore this seection if you install Elasticsearch manually.
## Note: Graylog 2.4 requires Elasticsearch version <= 5.6
elasticsearch:
image:
repository: "docker.elastic.co/elasticsearch/elasticsearch-oss"
tag: "6.5.4"
cluster:
xpackEnable: false