+ "helmValuesDefaults": "image:\n repository: \"docker.elastic.co/kibana/kibana-oss\"\n tag: \"6.5.4\"\n pullPolicy: \"IfNotPresent\"\n\ncommandline:\n args: []\n\nenv: {}\n # All Kibana configuration options are adjustable via env vars.\n # To adjust a config option to an env var uppercase + replace `.` with `_`\n # Ref: https://www.elastic.co/guide/en/kibana/current/settings.html\n #\n # ELASTICSEARCH_URL: http://elasticsearch-client:9200\n # SERVER_PORT: 5601\n # LOGGING_VERBOSE: \"true\"\n # SERVER_DEFAULTROUTE: \"/app/kibana\"\n\nfiles:\n kibana.yml:\n ## Default Kibana configuration from kibana-docker.\n server.name: kibana\n server.host: \"0\"\n elasticsearch.url: http://elasticsearch:9200\n\n ## Custom config properties below\n ## Ref: https://www.elastic.co/guide/en/kibana/current/settings.html\n # server.port: 5601\n # logging.verbose: \"true\"\n # server.defaultRoute: \"/app/kibana\"\n\ndeployment:\n annotations: {}\n\nservice:\n type: ClusterIP\n externalPort: 443\n internalPort: 5601\n # authProxyPort: 5602 To be used with authProxyEnabled and a proxy extraContainer\n ## External IP addresses of service\n ## Default: nil\n ##\n # externalIPs:\n # - 192.168.0.1\n #\n ## LoadBalancer IP if service.type is LoadBalancer\n ## Default: nil\n ##\n # loadBalancerIP: 10.2.2.2\n annotations: {}\n # Annotation example: setup ssl with aws cert when service.type is LoadBalancer\n # service.beta.kubernetes.io/aws-load-balancer-ssl-cert: arn:aws:acm:us-east-1:EXAMPLE_CERT\n labels: {}\n ## Label example: show service URL in `kubectl cluster-info`\n # kubernetes.io/cluster-service: \"true\"\n ## Limit load balancer source ips to list of CIDRs (where available)\n # loadBalancerSourceRanges: []\n\ningress:\n enabled: false\n # hosts:\n # - kibana.localhost.localdomain\n # - localhost.localdomain/kibana\n # annotations:\n # kubernetes.io/ingress.class: nginx\n # kubernetes.io/tls-acme: \"true\"\n # tls:\n # - secretName: chart-example-tls\n # hosts:\n # - chart-example.local\n\nserviceAccount:\n # Specifies whether a service account should be created\n create: false\n # The name of the service account to use.\n # If not set and create is true, a name is generated using the fullname template\n # If set and create is false, the service account must be existing\n name:\n\nlivenessProbe:\n enabled: false\n initialDelaySeconds: 30\n timeoutSeconds: 10\n\nreadinessProbe:\n enabled: false\n initialDelaySeconds: 30\n timeoutSeconds: 10\n periodSeconds: 10\n successThreshold: 5\n\n# Enable an authproxy. Specify container in extraContainers\nauthProxyEnabled: false\n\nextraContainers: |\n# - name: proxy\n# image: quay.io/gambol99/keycloak-proxy:latest\n# args:\n# - --resource=uri=/*\n# - --discovery-url=https://discovery-url\n# - --client-id=client\n# - --client-secret=secret\n# - --listen=0.0.0.0:5602\n# - --upstream-url=http://127.0.0.1:5601\n# ports:\n# - name: web\n# containerPort: 9090\nresources: {}\n # limits:\n # cpu: 100m\n # memory: 300Mi\n # requests:\n # cpu: 100m\n # memory: 300Mi\n\npriorityClassName: \"\"\n\n# Affinity for pod assignment\n# Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity\n# affinity: {}\n\n# Tolerations for pod assignment\n# Ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/\ntolerations: []\n\n# Node labels for pod assignment\n# Ref: https://kubernetes.io/docs/user-guide/node-selection/\nnodeSelector: {}\n\npodAnnotations: {}\nreplicaCount: 1\nrevisionHistoryLimit: 3\n\n# To export a dashboard from a running Kibana 6.3.x use:\n# curl --user \u003cusername\u003e:\u003cpassword\u003e -XGET https://kibana.yourdomain.com:5601/api/kibana/dashboards/export?dashboard=\u003csome-dashboard-uuid\u003e \u003e my-dashboard.json\n# A dashboard is defined by a name and a string with the json payload or the download url\ndashboardImport:\n timeout: 60\n xpackauth:\n enabled: false\n username: myuser\n password: mypass\n dashboards: {}\n # k8s: https://raw.githubusercontent.com/monotek/kibana-dashboards/master/k8s-fluentd-elasticsearch.json\n\n# List of plugins to install using initContainer\n# NOTE : We notice that lower resource constraints given to the chart + plugins are likely not going to work well.\nplugins:\n # set to true to enable plugins installation\n enabled: false\n # set to true to remove all kibana plugins before installation\n reset: false\n # Use \u003cplugin_name,version,url\u003e to add/upgrade plugin\n values:\n # - elastalert-kibana-plugin,1.0.1,https://github.com/bitsensor/elastalert-kibana-plugin/releases/download/1.0.1/elastalert-kibana-plugin-1.0.1-6.4.2.zip\n # - logtrail,0.1.30,https://github.com/sivasamyk/logtrail/releases/download/v0.1.30/logtrail-6.4.2-0.1.30.zip\n # - other_plugin\n\npersistentVolumeClaim:\n # set to true to use pvc\n enabled: false\n # set to true to use you own pvc\n existingClaim: false\n annotations: {}\n\n accessModes:\n - ReadWriteOnce\n size: \"5Gi\"\n ## If defined, storageClassName: \u003cstorageClass\u003e\n ## If set to \"-\", storageClassName: \"\", which disables dynamic provisioning\n ## If undefined (the default) or set to null, no storageClassName spec is\n ## set, choosing the default provisioner. (gp2 on AWS, standard on\n ## GKE, AWS \u0026 OpenStack)\n ##\n # storageClass: \"-\"\n\n# default security context\nsecurityContext:\n enabled: false\n allowPrivilegeEscalation: false\n runAsUser: 1000\n fsGroup: 2000\n\nextraConfigMapMounts: []\n # - name: logtrail-configs\n # configMap: kibana-logtrail\n # mountPath: /usr/share/kibana/plugins/logtrail/logtrail.json\n # subPath: logtrail.json\n",
0 commit comments