From 0176e2489a67601a20fffcc8ac121d0a093f87e4 Mon Sep 17 00:00:00 2001 From: Patrick Mueller Date: Fri, 9 Jul 2021 07:25:27 -0400 Subject: [PATCH 1/2] get the tester running again It's been a few Kibana minor releases since the load tester has been updated. And the load tester was broken. Now fixed. There have been some changes to `ecctl`, and the code now finds the closest match to the platform's choices for RAM usage - it used to just error out. Some other minor changes like updates to the suites. --- README.md | 7 + lib/commands.js | 13 +- lib/deployment.js | 4 +- lib/ec-commands.js | 119 +- lib/types.ts | 47 +- package.json | 2 +- sample-payloads/deployment-template-show.json | 544 + sample-payloads/deployment.create.json | 268 + sample-payloads/stack-list.json | 55491 ++++++++++++++++ suites.js | 17 +- 10 files changed, 56478 insertions(+), 34 deletions(-) create mode 100644 sample-payloads/deployment-template-show.json create mode 100644 sample-payloads/deployment.create.json create mode 100644 sample-payloads/stack-list.json diff --git a/README.md b/README.md index 73da232..34353d5 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,13 @@ TBD; run `kbn-alert-load` with no parameters for help. ## change log +#### 2.1.0 - 2021-07-14 + +- updated to work with the latest ecctl v1.4.0 +- changed RAM size calculation to match closest available values per region +- various other small updates +- pull request: https://github.com/pmuellr/kbn-alert-load/pull/5 + #### 1.x.x - ????-??-?? - add lsd, rmd, and rmdall commands diff --git a/lib/commands.js b/lib/commands.js index 270709d..c999223 100644 --- a/lib/commands.js +++ b/lib/commands.js @@ -64,11 +64,16 @@ async function run({ config, minutes, percentFiring }, [ suiteId ]) { const scenarios = suite.scenarios logger.log(`creating deployments for config ${config}`) - // @ts-ignore - const deploymentPromises = scenarios.map((scenario, index) => - createDeployment(config, runName, suite, scenario) - ) + /** @type { Promise[] } */ + const deploymentPromises = [] + for (const scenario of scenarios) { + deploymentPromises.push(createDeployment(config, runName, suite, scenario)) + + // some kind of race delay creating multiple so close together? + await delay(1000) + } + try { await Promise.all(deploymentPromises) } catch (err) { diff --git a/lib/deployment.js b/lib/deployment.js index a892f61..d5c6c5f 100644 --- a/lib/deployment.js +++ b/lib/deployment.js @@ -99,8 +99,8 @@ async function waitForHealthyDeployment(config, id, name, wait = 1000 * 60 * 5, /** @type { (spec: string, type: 'kibana' | 'elasticsearch') => number } */ function ecctlSize(spec, type) { - const rams = type === 'elasticsearch' ? [1, 2, 4, 8, 15, 29, 58] : [1, 2, 4, 8] - // const rams = type === 'elasticsearch' ? [1, 2, 4, 8, 16, 32, 64] : [1, 2, 4, 8] + // const rams = type === 'elasticsearch' ? [1, 2, 4, 8, 15, 29, 58] : [1, 2, 4, 8] + const rams = type === 'elasticsearch' ? [1, 2, 4, 8, 16, 32, 64] : [1, 2, 4, 8] const ramMax = rams[rams.length - 1] let [instances, ram] = splitX(spec) diff --git a/lib/ec-commands.js b/lib/ec-commands.js index 1bb1fba..c41f113 100644 --- a/lib/ec-commands.js +++ b/lib/ec-commands.js @@ -5,7 +5,10 @@ /** @typedef { import('./types').CreateDeploymentResult } CreateDeploymentResult */ /** @typedef { import('./types').GetDeploymentOptions } GetDeploymentOptions */ /** @typedef { import('./types').GetDeploymentResult } GetDeploymentResult */ +/** @typedef { import('./types').GetDeploymentTemplateOptions } GetDeploymentTemplateOptions */ +/** @typedef { import('./types').GetDeploymentTemplateResult } GetDeploymentTemplateResult */ /** @typedef { import('./types').DeleteDeploymentOptions } DeleteDeploymentOptions */ +/** @typedef { import('./types').DeploymentCreatePayload } DeploymentCreatePayload */ const { writeFileSync, unlinkSync } = require('fs') const { execFile } = require('child_process') @@ -18,6 +21,7 @@ module.exports = { createDeployment, deleteDeployment, getDeployment, + getDeploymentTemplate, listDeployments, listStacks, listTemplates, @@ -31,24 +35,20 @@ async function createDeployment({ config, stack, name, deploymentName, esSize, k args.push('--message', `${pkg.name}: creating deployment ${name}`) args.push('--output', 'json') args.push('--name', deploymentName) - args.push('--es-size', `${esSize}g`) - args.push('--kibana-size', `${kbSize}g`) args.push('--generate-payload') // generate the payload to create the deployment const payload = await ecctlRun(args) - /** @type { Record } */ - const configOverridesJSON = {} - if (tmMaxWorkers !== 10) configOverridesJSON['xpack.task_manager.max_workers'] = tmMaxWorkers - if (tmPollInterval !== 3000) configOverridesJSON['xpack.task_manager.poll_interval'] = tmPollInterval - - if (Object.keys(configOverridesJSON).length !== 0) { - payload.resources.kibana[0].plan.kibana.user_settings_override_json = configOverridesJSON - } + // console.log(JSON.stringify(payload, null, 4)) + await fixDeploymentCreatePayload(payload, config, { + esSize, + kbSize, + tmMaxWorkers, + tmPollInterval + }) + // console.log(JSON.stringify(payload, null, 4)) - payload.resources.elasticsearch = payload.resources.elasticsearch.map(removeUnsupportedESConfig); - // write the create deployment payload to a file and deploy it const tmpFile = tempy.file({ extension: 'json' }) writeFileSync(tmpFile, JSON.stringify(payload, null, 4)) @@ -56,6 +56,7 @@ async function createDeployment({ config, stack, name, deploymentName, esSize, k args = ['deployment', 'create'] args.push('--config', config) args.push('--file', tmpFile) + args.push('--name', deploymentName) const result = asCreateDeploymentResult(await ecctlRun(args)) unlinkSync(tmpFile) @@ -72,6 +73,16 @@ async function getDeployment({ config, name, id }) { return asGetDeploymentResult(await ecctlRun(args)) } +/** @type { (options: GetDeploymentTemplateOptions) => Promise } */ +async function getDeploymentTemplate({ config, id }) { + const args = ['deployment', 'template', 'show', '--template-id', id] + args.push('--config', config) + args.push('--message', `${pkg.name}: getting deployment template ${id}`) + args.push('--output', 'json') + + return await ecctlRun(args) +} + /** @type { (options: DeleteDeploymentOptions) => Promise } */ async function deleteDeployment({ config, id, name }) { const args = ['deployment', 'shutdown', id] @@ -213,11 +224,83 @@ function getResourceInfo(key, showDeployment) { return { endpoint, port, healthy, status, version, zone } } -/** @type { (elasticsearch: { plan: { cluster_topology: { elasticsearch: { node_attributes? : { data: string; } } }[] } } ) => any } */ -function removeUnsupportedESConfig(elasticsearch){ - elasticsearch.plan.cluster_topology = elasticsearch.plan.cluster_topology.filter((es) => { - return !(es.elasticsearch.node_attributes && (es.elasticsearch.node_attributes.data == 'cold' || es.elasticsearch.node_attributes.data == 'warm')); - }) +/** @type { (payload: DeploymentCreatePayload, config: string, opts: {esSize: number, kbSize: number, tmMaxWorkers: number, tmPollInterval: number }) => Promise } */ +async function fixDeploymentCreatePayload(payload, config, { esSize, kbSize, tmMaxWorkers, tmPollInterval }){ + // just use the first element of the elasticsearch and kibana arrays + const elasticsearch = payload.resources.elasticsearch[0] + const kibana = payload.resources.kibana[0] + + payload.resources.elasticsearch = [ elasticsearch ] + payload.resources.kibana = [ kibana ] - return elasticsearch + const deploymentTemplateId = elasticsearch.plan?.deployment_template?.id + if (deploymentTemplateId == null) throw new Error('unable to find deployment template id') + + const deploymentTemplate = await getDeploymentTemplate({ config, id: deploymentTemplateId }) + + // elasticsearch: set memory for "hot_content" + for (const elasticsearch of payload.resources.elasticsearch) { + elasticsearch.plan.cluster_topology = elasticsearch.plan.cluster_topology.map((node) => { + if (node.size?.value) { + node.size.value = getClosestSizeFromTemplate(node.instance_configuration_id, esSize * 1024, deploymentTemplate) + } + return node + }) + } + + // Kibana fix ups + for (const kibana of payload.resources.kibana) { + // set Kibana config overrides + /** @type { Record } */ + const configOverridesJSON = {} + if (tmMaxWorkers !== 10) configOverridesJSON['xpack.task_manager.max_workers'] = tmMaxWorkers + if (tmPollInterval !== 3000) configOverridesJSON['xpack.task_manager.poll_interval'] = tmPollInterval + + if (Object.keys(configOverridesJSON).length !== 0) { + payload.resources.kibana.forEach(kibana => { + kibana.plan.kibana.user_settings_override_json = configOverridesJSON + }) + } + + // set Kibana memory + kibana.plan.cluster_topology = kibana.plan.cluster_topology.map((node) => { + if (node.size?.value) { + node.size.value = getClosestSizeFromTemplate(node.instance_configuration_id, kbSize * 1024, deploymentTemplate) + } + return node + }) + } } + +/** @type { (instanceConfigId: string, requestedSize: number, template: GetDeploymentTemplateResult) => number } */ +function getClosestSizeFromTemplate(instanceConfigId, requestedSize, template) { + for (const instanceConfig of template.instance_configurations) { + if (instanceConfig.id != instanceConfigId) continue + + const sizes = instanceConfig.discrete_sizes?.sizes ?? [] + if (sizes.length === 0) continue + + // extend the sizes to account for multiple nodes, all using max memory + const last = sizes[sizes.length - 1] + for (let i = 2; i <= 100; i++) { + sizes.push(last * i) + } + + // find the value in sizes closest to requestedSize + let closest = sizes[0] + let closestDiff = Number.MAX_SAFE_INTEGER + + for (const size of sizes) { + const diff = Math.abs(size - requestedSize) + if (diff < closestDiff) { + closest = size + closestDiff = diff + } + } + + if (closestDiff !== 0) { + logger.debug(`changing memory of ${requestedSize} to ${closest} for ${instanceConfigId}`) + } + return closest + } +} \ No newline at end of file diff --git a/lib/types.ts b/lib/types.ts index 42f9d65..948698a 100644 --- a/lib/types.ts +++ b/lib/types.ts @@ -1,5 +1,3 @@ -import { SpawnSyncOptionsWithStringEncoding } from "child_process" - export interface Scenario { name: string sortName?: string @@ -90,12 +88,57 @@ export interface GetDeploymentResult { kbPort: number } +export interface GetDeploymentTemplateOptions { + config: string + id: string +} + +export interface GetDeploymentTemplateResult { + instance_configurations: { + id: string + discrete_sizes: { + sizes: number[] + } + }[] +} + export interface DeleteDeploymentOptions { config: string name: string id: string } +interface DeploymentCreatePlan { + cluster_topology: { + id: string + instance_configuration_id: string + size: { + resource: string + value: number + } + }[] + deployment_template?: { + id: string + } + kibana?: { + user_settings_override_json?: Record + } +} + +export interface DeploymentCreatePayload { + resources: { + apm: never + appsearch: never + enterprise_search: never + elasticsearch: { + plan: DeploymentCreatePlan, + }[] + kibana: { + plan: DeploymentCreatePlan, + }[] + } +} + export interface CommandOptions { config: string minutes: number diff --git a/package.json b/package.json index e112445..a9c518b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kbn-alert-load", - "version": "2.0.0", + "version": "2.1.0", "description": "command-line utility for doing kibana alerting load tests", "main": "kbn-alert-load.js", "author": "pmuellr", diff --git a/sample-payloads/deployment-template-show.json b/sample-payloads/deployment-template-show.json new file mode 100644 index 0000000..d4e4c67 --- /dev/null +++ b/sample-payloads/deployment-template-show.json @@ -0,0 +1,544 @@ +{ + "deployment_template": { + "resources": { + "apm": [ + { + "elasticsearch_cluster_ref_id": "es-ref-id", + "plan": { + "apm": {}, + "cluster_topology": [ + { + "instance_configuration_id": "aws.apm.r5d", + "size": { + "resource": "memory", + "value": 512 + }, + "zone_count": 1 + } + ] + }, + "ref_id": "apm-ref-id", + "region": "us-east-1" + } + ], + "appsearch": null, + "elasticsearch": [ + { + "plan": { + "autoscaling_enabled": false, + "cluster_topology": [ + { + "id": "coordinating", + "instance_configuration_id": "aws.coordinating.m5d", + "node_roles": [ + "ingest", + "remote_cluster_client" + ], + "node_type": { + "data": false, + "ingest": true, + "master": false + }, + "size": { + "resource": "memory", + "value": 0 + }, + "topology_element_control": { + "min": { + "resource": "memory", + "value": 0 + } + }, + "zone_count": 2 + }, + { + "autoscaling_max": { + "resource": "memory", + "value": 118784 + }, + "elasticsearch": { + "node_attributes": { + "data": "hot" + } + }, + "id": "hot_content", + "instance_configuration_id": "aws.data.highio.i3", + "node_roles": [ + "master", + "ingest", + "transform", + "data_hot", + "remote_cluster_client", + "data_content" + ], + "node_type": { + "data": true, + "ingest": true, + "master": true + }, + "size": { + "resource": "memory", + "value": 8192 + }, + "topology_element_control": { + "min": { + "resource": "memory", + "value": 1024 + } + }, + "zone_count": 2 + }, + { + "autoscaling_max": { + "resource": "memory", + "value": 118784 + }, + "elasticsearch": { + "node_attributes": { + "data": "warm" + } + }, + "id": "warm", + "instance_configuration_id": "aws.data.highstorage.d3", + "node_roles": [ + "data_warm", + "remote_cluster_client" + ], + "node_type": { + "data": true, + "ingest": false, + "master": false + }, + "size": { + "resource": "memory", + "value": 0 + }, + "topology_element_control": { + "min": { + "resource": "memory", + "value": 0 + } + }, + "zone_count": 2 + }, + { + "autoscaling_max": { + "resource": "memory", + "value": 59392 + }, + "elasticsearch": { + "node_attributes": { + "data": "cold" + } + }, + "id": "cold", + "instance_configuration_id": "aws.data.highstorage.d3", + "node_roles": [ + "data_cold", + "remote_cluster_client" + ], + "node_type": { + "data": true, + "ingest": false, + "master": false + }, + "size": { + "resource": "memory", + "value": 0 + }, + "topology_element_control": { + "min": { + "resource": "memory", + "value": 0 + } + }, + "zone_count": 1 + }, + { + "autoscaling_max": { + "resource": "memory", + "value": 122880 + }, + "elasticsearch": { + "node_attributes": { + "data": "frozen" + } + }, + "id": "frozen", + "instance_configuration_id": "aws.es.datafrozen.i3en", + "node_roles": [ + "data_frozen" + ], + "node_type": { + "data": true, + "ingest": false, + "master": false + }, + "size": { + "resource": "memory", + "value": 0 + }, + "topology_element_control": { + "min": { + "resource": "memory", + "value": 0 + } + }, + "zone_count": 1 + }, + { + "id": "master", + "instance_configuration_id": "aws.master.r5d", + "node_roles": [ + "master", + "remote_cluster_client" + ], + "node_type": { + "data": false, + "ingest": false, + "master": true + }, + "size": { + "resource": "memory", + "value": 0 + }, + "topology_element_control": { + "min": { + "resource": "memory", + "value": 0 + } + }, + "zone_count": 3 + }, + { + "autoscaling_max": { + "resource": "memory", + "value": 61440 + }, + "autoscaling_min": { + "resource": "memory", + "value": 0 + }, + "id": "ml", + "instance_configuration_id": "aws.ml.m5d", + "node_roles": [ + "ml", + "remote_cluster_client" + ], + "node_type": { + "data": false, + "ingest": false, + "master": false, + "ml": true + }, + "size": { + "resource": "memory", + "value": 0 + }, + "topology_element_control": { + "min": { + "resource": "memory", + "value": 0 + } + }, + "zone_count": 1 + } + ], + "elasticsearch": {} + }, + "ref_id": "es-ref-id", + "region": "us-east-1", + "settings": { + "dedicated_masters_threshold": 6 + } + } + ], + "enterprise_search": [ + { + "elasticsearch_cluster_ref_id": "es-ref-id", + "plan": { + "cluster_topology": [ + { + "instance_configuration_id": "aws.enterprisesearch.m5d", + "node_type": { + "appserver": true, + "connector": true, + "worker": true + }, + "size": { + "resource": "memory", + "value": 0 + }, + "zone_count": 2 + } + ], + "enterprise_search": {} + }, + "ref_id": "enterprise_search-ref-id", + "region": "us-east-1" + } + ], + "kibana": [ + { + "elasticsearch_cluster_ref_id": "es-ref-id", + "plan": { + "cluster_topology": [ + { + "instance_configuration_id": "aws.kibana.r5d", + "size": { + "resource": "memory", + "value": 1024 + }, + "zone_count": 1 + } + ], + "kibana": {} + }, + "ref_id": "kibana-ref-id", + "region": "us-east-1" + } + ] + } + }, + "description": "Use for for all-purpose workloads, including time-series data like logs and metrics.", + "id": "aws-io-optimized-v2", + "instance_configurations": [ + { + "cpu_multiplier": 0.264, + "description": "An Elasticsearch coordinating instance running on an AWS m5d.", + "discrete_sizes": { + "default_size": 1024, + "resource": "memory", + "sizes": [ + 1024, + 2048, + 4096, + 8192 + ] + }, + "id": "aws.coordinating.m5d", + "instance_type": "elasticsearch", + "name": "aws.coordinating.m5d", + "node_types": [ + "ingest" + ], + "storage_multiplier": 2 + }, + { + "cpu_multiplier": 0.137, + "description": "An I/O optimized Elasticsearch instance running on an AWS i3.", + "discrete_sizes": { + "default_size": 4096, + "resource": "memory", + "sizes": [ + 1024, + 2048, + 4096, + 8192, + 15360, + 29696, + 59392 + ] + }, + "id": "aws.data.highio.i3", + "instance_type": "elasticsearch", + "name": "aws.data.highio.i3", + "node_types": [ + "master", + "data", + "ingest" + ], + "storage_multiplier": 30 + }, + { + "cpu_multiplier": 0.133, + "description": "A storage optimized Elasticsearch instance running on an AWS d3.", + "discrete_sizes": { + "default_size": 4096, + "resource": "memory", + "sizes": [ + 2048, + 4096, + 8192, + 15360, + 29696, + 59392 + ] + }, + "id": "aws.data.highstorage.d3", + "instance_type": "elasticsearch", + "name": "aws.data.highstorage.d3", + "node_types": [ + "master", + "data", + "ingest" + ], + "storage_multiplier": 190 + }, + { + "cpu_multiplier": 0.133, + "description": "Data nodes running on AWS i3en that acts as a cache for the frozen tier.", + "discrete_sizes": { + "default_size": 4096, + "resource": "memory", + "sizes": [ + 4096, + 8192, + 15360, + 30720, + 61440 + ] + }, + "id": "aws.es.datafrozen.i3en", + "instance_type": "elasticsearch", + "name": "aws.es.datafrozen.i3en", + "node_types": [ + "data" + ], + "storage_multiplier": 80 + }, + { + "cpu_multiplier": 0.13, + "description": "An Elasticsearch master eligible instance running on an AWS r5d.", + "discrete_sizes": { + "default_size": 1024, + "resource": "memory", + "sizes": [ + 1024, + 2048, + 4096, + 8192, + 15360 + ] + }, + "id": "aws.master.r5d", + "instance_type": "elasticsearch", + "name": "aws.master.r5d", + "node_types": [ + "master" + ], + "storage_multiplier": 2 + }, + { + "cpu_multiplier": 0.264, + "description": "An Elasticsearch machine learning instance running on an AWS m5d.", + "discrete_sizes": { + "default_size": 1024, + "resource": "memory", + "sizes": [ + 1024, + 2048, + 4096, + 8192, + 15360, + 30720, + 61440 + ] + }, + "id": "aws.ml.m5d", + "instance_type": "elasticsearch", + "name": "aws.ml.m5d", + "node_types": [ + "ml" + ], + "storage_multiplier": 2 + }, + { + "cpu_multiplier": 0.13, + "description": "A Kibana instance running on an AWS r5d.", + "discrete_sizes": { + "default_size": 1024, + "resource": "memory", + "sizes": [ + 1024, + 2048, + 4096, + 8192 + ] + }, + "id": "aws.kibana.r5d", + "instance_type": "kibana", + "name": "aws.kibana.r5d", + "node_types": null, + "storage_multiplier": 2 + }, + { + "cpu_multiplier": 0.13, + "description": "An APM instance running on an AWS r5d.", + "discrete_sizes": { + "default_size": 512, + "resource": "memory", + "sizes": [ + 512, + 1024, + 2048, + 4096, + 8192 + ] + }, + "id": "aws.apm.r5d", + "instance_type": "apm", + "name": "aws.apm.r5d", + "node_types": null, + "storage_multiplier": 2 + }, + { + "cpu_multiplier": 0.267, + "description": "A CPU optimized Elastic Enterprise Search instance.", + "discrete_sizes": { + "default_size": 2048, + "resource": "memory", + "sizes": [ + 2048, + 4096, + 8192 + ] + }, + "id": "aws.enterprisesearch.m5d", + "instance_type": "enterprise_search", + "name": "aws.enterprisesearch.m5d", + "node_types": [ + "appserver", + "connector", + "worker" + ], + "storage_multiplier": 2 + } + ], + "kibana_deeplink": [ + { + "semver": "\u003e=7.9.0", + "uri": "/app/home" + }, + { + "semver": "\u003c7.9.0", + "uri": "/app/kibana#/home" + } + ], + "metadata": [ + { + "key": "hidden", + "value": "true" + }, + { + "key": "hot_warm_template", + "value": "aws-hot-warm-v2" + }, + { + "key": "trial-eligible", + "value": "true" + }, + { + "key": "parent_solution", + "value": "stack" + }, + { + "key": "recommended", + "value": "true" + } + ], + "name": "I/O Optimized", + "order": 0, + "system_owned": true, + "template_category_id": "io-optimized" +} diff --git a/sample-payloads/deployment.create.json b/sample-payloads/deployment.create.json new file mode 100644 index 0000000..5b64e89 --- /dev/null +++ b/sample-payloads/deployment.create.json @@ -0,0 +1,268 @@ +{ + "resources": { + "apm": [ + { + "elasticsearch_cluster_ref_id": "main-elasticsearch", + "plan": { + "apm": {}, + "cluster_topology": [ + { + "instance_configuration_id": "aws.apm.r5d", + "size": { + "resource": "memory", + "value": 512 + }, + "zone_count": 1 + } + ] + }, + "ref_id": "main-apm", + "region": "us-east-1" + } + ], + "appsearch": null, + "elasticsearch": [ + { + "plan": { + "autoscaling_enabled": false, + "cluster_topology": [ + { + "id": "coordinating", + "instance_configuration_id": "aws.coordinating.m5d", + "node_roles": [ + "ingest", + "remote_cluster_client" + ], + "size": { + "resource": "memory", + "value": 0 + }, + "topology_element_control": { + "min": { + "resource": "memory", + "value": 0 + } + }, + "zone_count": 2 + }, + { + "autoscaling_max": { + "resource": "memory", + "value": 118784 + }, + "elasticsearch": { + "node_attributes": { + "data": "hot" + } + }, + "id": "hot_content", + "instance_configuration_id": "aws.data.highio.i3", + "node_roles": [ + "master", + "ingest", + "transform", + "data_hot", + "remote_cluster_client", + "data_content" + ], + "size": { + "resource": "memory", + "value": 8192 + }, + "topology_element_control": { + "min": { + "resource": "memory", + "value": 1024 + } + }, + "zone_count": 2 + }, + { + "autoscaling_max": { + "resource": "memory", + "value": 118784 + }, + "elasticsearch": { + "node_attributes": { + "data": "warm" + } + }, + "id": "warm", + "instance_configuration_id": "aws.data.highstorage.d3", + "node_roles": [ + "data_warm", + "remote_cluster_client" + ], + "size": { + "resource": "memory", + "value": 0 + }, + "topology_element_control": { + "min": { + "resource": "memory", + "value": 0 + } + }, + "zone_count": 2 + }, + { + "autoscaling_max": { + "resource": "memory", + "value": 59392 + }, + "elasticsearch": { + "node_attributes": { + "data": "cold" + } + }, + "id": "cold", + "instance_configuration_id": "aws.data.highstorage.d3", + "node_roles": [ + "data_cold", + "remote_cluster_client" + ], + "size": { + "resource": "memory", + "value": 0 + }, + "topology_element_control": { + "min": { + "resource": "memory", + "value": 0 + } + }, + "zone_count": 1 + }, + { + "autoscaling_max": { + "resource": "memory", + "value": 122880 + }, + "elasticsearch": { + "node_attributes": { + "data": "frozen" + } + }, + "id": "frozen", + "instance_configuration_id": "aws.es.datafrozen.i3en", + "node_roles": [ + "data_frozen" + ], + "size": { + "resource": "memory", + "value": 0 + }, + "topology_element_control": { + "min": { + "resource": "memory", + "value": 0 + } + }, + "zone_count": 1 + }, + { + "id": "master", + "instance_configuration_id": "aws.master.r5d", + "node_roles": [ + "master", + "remote_cluster_client" + ], + "size": { + "resource": "memory", + "value": 0 + }, + "topology_element_control": { + "min": { + "resource": "memory", + "value": 0 + } + }, + "zone_count": 3 + }, + { + "autoscaling_max": { + "resource": "memory", + "value": 61440 + }, + "autoscaling_min": { + "resource": "memory", + "value": 0 + }, + "id": "ml", + "instance_configuration_id": "aws.ml.m5d", + "node_roles": [ + "ml", + "remote_cluster_client" + ], + "size": { + "resource": "memory", + "value": 0 + }, + "topology_element_control": { + "min": { + "resource": "memory", + "value": 0 + } + }, + "zone_count": 1 + } + ], + "deployment_template": { + "id": "aws-io-optimized-v2" + }, + "elasticsearch": {} + }, + "ref_id": "main-elasticsearch", + "region": "us-east-1", + "settings": { + "dedicated_masters_threshold": 6 + } + } + ], + "enterprise_search": [ + { + "elasticsearch_cluster_ref_id": "main-elasticsearch", + "plan": { + "cluster_topology": [ + { + "instance_configuration_id": "aws.enterprisesearch.m5d", + "node_type": { + "appserver": true, + "connector": true, + "worker": true + }, + "size": { + "resource": "memory", + "value": 0 + }, + "zone_count": 2 + } + ], + "enterprise_search": {} + }, + "ref_id": "main-enterprise_search", + "region": "us-east-1" + } + ], + "kibana": [ + { + "elasticsearch_cluster_ref_id": "main-elasticsearch", + "plan": { + "cluster_topology": [ + { + "instance_configuration_id": "aws.kibana.r5d", + "size": { + "resource": "memory", + "value": 1024 + }, + "zone_count": 1 + } + ], + "kibana": {} + }, + "ref_id": "main-kibana", + "region": "us-east-1" + } + ] + } +} diff --git a/sample-payloads/stack-list.json b/sample-payloads/stack-list.json new file mode 100644 index 0000000..553a734 --- /dev/null +++ b/sample-payloads/stack-list.json @@ -0,0 +1,55491 @@ +{ + "stacks": [ + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:8.0.0-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "node.ingest", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:8.0.0-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/enterprise-search:8.0.0-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:8.0.0-SNAPSHOT" + }, + "metadata": { + "min_wire_compatibility_version": "7.14.0-SNAPSHOT" + }, + "min_upgradable_from": "7.12.0-SNAPSHOT", + "template": { + "hashes": [ + { + "hash": "e01068dd429c5497f4a261fb76c964d28b78f05eb312254eb98c7e98786b2df7", + "path": "apm/apm.sh" + }, + { + "hash": "a3062ef5df342a4224d7bef1ce92c653015a2dc698559267fb37651061a9a44b", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "b7804c2e4db6a0a4ae35ebae0b57e320ef5e721f623d68ecf0ea540f846332d5", + "path": "apm/config/capabilities.yml" + }, + { + "hash": "f64750d0ec70d3fdc83d4a11bb1486db4fc2cba1d09323f398ba8b7c4748d273", + "path": "apm/config/credentials.yml" + }, + { + "hash": "7ce2470cc281dcfaaf10c7447372929bbff0f53da1152b0c8059ba5f3b5a1e0e", + "path": "apm/config/elastic-agent.yml" + }, + { + "hash": "2e350723dc9b3ac7ba6a10fd64cb55e73cf87be4dfcbb2a091a9d3c459c72acd", + "path": "apm/config/fleet-setup.yml" + }, + { + "hash": "3fd691001847ad12a275f3f1f23f028ebc52aaa11034a8172611b8675540c021", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "b6c9b75c068d34e2aba522e598811cd71a36ad9ac3adb105dc181a6e1c88a416", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "bef984f5ee1dff93fb9e496e5a71a7d52afc4e63667d8784be2d5d83dfd33492", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "f8ab57e9993ce716190c066344253f8d947b1133f0690f6e0538e327eb3af5d2", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "b8f1dfea18318889f4a0c14a1e87dc1f7306ce3c09554532fe75bbcb32a3d43b", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "4706ab40b98ad97d24197f0e7403b787a6dc4aa13ceeac2ed6eb26e08e72282e", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "850a9b440271c31ad7f3a01c6aa166aeba9d81fbca2089ef70433bef908a1a21", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "d210454a5daf506fa82cd7dd1826ace9e8283a6ac13eed9c4b2546edb175e8ac", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "5ed5f308489f1a40c08ce88af3466bc75859a81294ec485fc04f0805476f4a31", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b04e5bd568733fe007de987a881477c89894c45dd3b8752412dac1f298d4dc85", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "e55b55c78127d8e621e2c239f94a876ea1e7b3447f58970dc8bb318090f0e0d2", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "f203dc19ec536d45905dba4937b922c2abb297f54a41dd20a805a0c82508cd4e", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "267fab5a133c7f2c2824eaad7944b85669373b2dea1f6af7cfbe2dba9765c107", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "bdfe64fa11bc680bb7f5ccdacbd0f6fed7a2cabe4888ffc5bffda42179546848", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "91693fec36aba0490fb388fe7a0e8bd972c0e31f5dc5ce02aaf35ea9b53f40f6", + "path": "kibana/kibana.sh" + }, + { + "hash": "0fa0a6b902f59fba24d2c245540279fc801375c22ca0badfc44e9340d57a9568", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + }, + { + "hash": "253647be671bafc7e1ed458da6b1d5ffa7bba90c5e97b46fcd61bd3a55f330d5", + "path": "metricbeat/metricbeat.sh" + }, + { + "hash": "7c98903873df40230c9b43da0b27e65bfbf78bc5889a962ccb60ecc21ab697ba", + "path": "metricbeat/metricbeat.yml" + }, + { + "hash": "c63d4ca844f99b90813452a55de140aebab9383ba5cd54d9fe0e23ba456f7341", + "path": "metricbeat/modules.d/apm.yml" + }, + { + "hash": "61ae278bf23204d858cec75514a1339abc2af6e60e2d1378a991f2087a3c2111", + "path": "metricbeat/modules.d/elasticsearch.yml" + }, + { + "hash": "304f7cf4b969ac2b9a8804a1e2d6832d3d867bc8dd1693c200c49e9a0d49b69f", + "path": "metricbeat/modules.d/enterprise_search.yml" + }, + { + "hash": "73f84e4471088032d2add72bf71a4c1d97792513be183aa3270e206522ad6e5c", + "path": "metricbeat/modules.d/kibana.yml" + } + ], + "template_version": "8.0.0-SNAPSHOT-0000006138" + }, + "upgradable_to": [], + "version": "8.0.0-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.14.0-ce834ac2" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.14.0-ce834ac2", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/enterprise-search:7.14.0-ce834ac2", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.14.0-ce834ac2" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "d342654e2b063e3e29d06fd555d55f4156b448a7239977ec1d051cb65a5d0e04", + "path": "apm/apm.sh" + }, + { + "hash": "a3062ef5df342a4224d7bef1ce92c653015a2dc698559267fb37651061a9a44b", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "b7804c2e4db6a0a4ae35ebae0b57e320ef5e721f623d68ecf0ea540f846332d5", + "path": "apm/config/capabilities.yml" + }, + { + "hash": "f64750d0ec70d3fdc83d4a11bb1486db4fc2cba1d09323f398ba8b7c4748d273", + "path": "apm/config/credentials.yml" + }, + { + "hash": "7ce2470cc281dcfaaf10c7447372929bbff0f53da1152b0c8059ba5f3b5a1e0e", + "path": "apm/config/elastic-agent.yml" + }, + { + "hash": "2e350723dc9b3ac7ba6a10fd64cb55e73cf87be4dfcbb2a091a9d3c459c72acd", + "path": "apm/config/fleet-setup.yml" + }, + { + "hash": "f8e1b2da0454464f3045598f989ae9bd7b92825d43af6dff255cdec785de0c26", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "b6c9b75c068d34e2aba522e598811cd71a36ad9ac3adb105dc181a6e1c88a416", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "bef984f5ee1dff93fb9e496e5a71a7d52afc4e63667d8784be2d5d83dfd33492", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "db2e3957a4f254591a8b1ac3aacda88ff3c23b6955e6f73e3d0b4ebe20a94e02", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "20ed1dbb8adec27eb5b2b3f6d9ae24a27696a1f1e16018c23364d1f99fd2bf8a", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "4706ab40b98ad97d24197f0e7403b787a6dc4aa13ceeac2ed6eb26e08e72282e", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "850a9b440271c31ad7f3a01c6aa166aeba9d81fbca2089ef70433bef908a1a21", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "d210454a5daf506fa82cd7dd1826ace9e8283a6ac13eed9c4b2546edb175e8ac", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "3bb430f6157356c014f568bb3ea2787567c19a5f72a6a9f79b59a337d169df83", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b04e5bd568733fe007de987a881477c89894c45dd3b8752412dac1f298d4dc85", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "e55b55c78127d8e621e2c239f94a876ea1e7b3447f58970dc8bb318090f0e0d2", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "f203dc19ec536d45905dba4937b922c2abb297f54a41dd20a805a0c82508cd4e", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "b89481581d79d0c36ee7f419ab3a9f9ce23d4148e959c749abacc67336478904", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "be3c8bb4943637001417dda1ce597ac1f2f9f6951441254a18acd4168025e206", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + }, + { + "hash": "0fa0a6b902f59fba24d2c245540279fc801375c22ca0badfc44e9340d57a9568", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + }, + { + "hash": "a6e73fc071534c3a7c1f2bc84a2b663b4f17c83bc2106646b0f7038b984e651d", + "path": "metricbeat/metricbeat.sh" + }, + { + "hash": "7c98903873df40230c9b43da0b27e65bfbf78bc5889a962ccb60ecc21ab697ba", + "path": "metricbeat/metricbeat.yml" + }, + { + "hash": "f9266e4644be3c212c3a0c7e82e7309be3cbdd8fab473b82d4460de5117811c9", + "path": "metricbeat/modules.d/apm.yml" + }, + { + "hash": "8c2965bd6693253c8fff9f65ed2eea4b31f55d817713da8681a67dd335a4856f", + "path": "metricbeat/modules.d/elastic-agent.yml" + }, + { + "hash": "61ae278bf23204d858cec75514a1339abc2af6e60e2d1378a991f2087a3c2111", + "path": "metricbeat/modules.d/elasticsearch.yml" + }, + { + "hash": "304f7cf4b969ac2b9a8804a1e2d6832d3d867bc8dd1693c200c49e9a0d49b69f", + "path": "metricbeat/modules.d/enterprise_search.yml" + }, + { + "hash": "73f84e4471088032d2add72bf71a4c1d97792513be183aa3270e206522ad6e5c", + "path": "metricbeat/modules.d/kibana.yml" + } + ], + "template_version": "7.14.0-0000006145" + }, + "upgradable_to": [ + "8.0.0-SNAPSHOT" + ], + "version": "7.14.0", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.14.0-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.14.0-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/enterprise-search:7.14.0-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.14.0-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "d342654e2b063e3e29d06fd555d55f4156b448a7239977ec1d051cb65a5d0e04", + "path": "apm/apm.sh" + }, + { + "hash": "a3062ef5df342a4224d7bef1ce92c653015a2dc698559267fb37651061a9a44b", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "b7804c2e4db6a0a4ae35ebae0b57e320ef5e721f623d68ecf0ea540f846332d5", + "path": "apm/config/capabilities.yml" + }, + { + "hash": "f64750d0ec70d3fdc83d4a11bb1486db4fc2cba1d09323f398ba8b7c4748d273", + "path": "apm/config/credentials.yml" + }, + { + "hash": "7ce2470cc281dcfaaf10c7447372929bbff0f53da1152b0c8059ba5f3b5a1e0e", + "path": "apm/config/elastic-agent.yml" + }, + { + "hash": "2e350723dc9b3ac7ba6a10fd64cb55e73cf87be4dfcbb2a091a9d3c459c72acd", + "path": "apm/config/fleet-setup.yml" + }, + { + "hash": "f8e1b2da0454464f3045598f989ae9bd7b92825d43af6dff255cdec785de0c26", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "b6c9b75c068d34e2aba522e598811cd71a36ad9ac3adb105dc181a6e1c88a416", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "bef984f5ee1dff93fb9e496e5a71a7d52afc4e63667d8784be2d5d83dfd33492", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "db2e3957a4f254591a8b1ac3aacda88ff3c23b6955e6f73e3d0b4ebe20a94e02", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "20ed1dbb8adec27eb5b2b3f6d9ae24a27696a1f1e16018c23364d1f99fd2bf8a", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "4706ab40b98ad97d24197f0e7403b787a6dc4aa13ceeac2ed6eb26e08e72282e", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "850a9b440271c31ad7f3a01c6aa166aeba9d81fbca2089ef70433bef908a1a21", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "d210454a5daf506fa82cd7dd1826ace9e8283a6ac13eed9c4b2546edb175e8ac", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "3bb430f6157356c014f568bb3ea2787567c19a5f72a6a9f79b59a337d169df83", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b04e5bd568733fe007de987a881477c89894c45dd3b8752412dac1f298d4dc85", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "e55b55c78127d8e621e2c239f94a876ea1e7b3447f58970dc8bb318090f0e0d2", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "f203dc19ec536d45905dba4937b922c2abb297f54a41dd20a805a0c82508cd4e", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "b89481581d79d0c36ee7f419ab3a9f9ce23d4148e959c749abacc67336478904", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "be3c8bb4943637001417dda1ce597ac1f2f9f6951441254a18acd4168025e206", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + }, + { + "hash": "0fa0a6b902f59fba24d2c245540279fc801375c22ca0badfc44e9340d57a9568", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + }, + { + "hash": "a6e73fc071534c3a7c1f2bc84a2b663b4f17c83bc2106646b0f7038b984e651d", + "path": "metricbeat/metricbeat.sh" + }, + { + "hash": "7c98903873df40230c9b43da0b27e65bfbf78bc5889a962ccb60ecc21ab697ba", + "path": "metricbeat/metricbeat.yml" + }, + { + "hash": "f9266e4644be3c212c3a0c7e82e7309be3cbdd8fab473b82d4460de5117811c9", + "path": "metricbeat/modules.d/apm.yml" + }, + { + "hash": "8c2965bd6693253c8fff9f65ed2eea4b31f55d817713da8681a67dd335a4856f", + "path": "metricbeat/modules.d/elastic-agent.yml" + }, + { + "hash": "61ae278bf23204d858cec75514a1339abc2af6e60e2d1378a991f2087a3c2111", + "path": "metricbeat/modules.d/elasticsearch.yml" + }, + { + "hash": "304f7cf4b969ac2b9a8804a1e2d6832d3d867bc8dd1693c200c49e9a0d49b69f", + "path": "metricbeat/modules.d/enterprise_search.yml" + }, + { + "hash": "73f84e4471088032d2add72bf71a4c1d97792513be183aa3270e206522ad6e5c", + "path": "metricbeat/modules.d/kibana.yml" + } + ], + "template_version": "7.14.0-SNAPSHOT-0000006144" + }, + "upgradable_to": [ + "7.14.0", + "8.0.0-SNAPSHOT" + ], + "version": "7.14.0-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.13.4-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.13.4-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/enterprise-search:7.13.4-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.13.4-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "b8331338d79813a1a7078e873be7c3cbc4dd4be3f0a1a444a19da8e56ef6f27d", + "path": "apm/apm.sh" + }, + { + "hash": "b22c5877eae73818858bc6b4a47bcd07804978f4e4a7432ecb000b36d465dd2e", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "02fe3dde6fec28fba213e669f8e250214e46c804a8ac27867f7ae2c5085bb7ab", + "path": "apm/config/capabilities.yml" + }, + { + "hash": "f64750d0ec70d3fdc83d4a11bb1486db4fc2cba1d09323f398ba8b7c4748d273", + "path": "apm/config/credentials.yml" + }, + { + "hash": "7ce2470cc281dcfaaf10c7447372929bbff0f53da1152b0c8059ba5f3b5a1e0e", + "path": "apm/config/elastic-agent.yml" + }, + { + "hash": "d4574e519b79b9b93b7c1d213ecbead15ef849168fd092f7a2d76a2f43dae68b", + "path": "apm/config/fleet-setup.yml" + }, + { + "hash": "f8e1b2da0454464f3045598f989ae9bd7b92825d43af6dff255cdec785de0c26", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "4075aed316a22f757dc671d0f145fcfbe07f79046d1d5e9e4b8d874a3cdcfb42", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "9f1279c3ba6224a7c6899735d76b6323e03865657d72dc5ea89c717cf48167b2", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "3713a3ab696081e8eefc251e2ed82149937127682f44e215a693722f2865cfc7", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "4706ab40b98ad97d24197f0e7403b787a6dc4aa13ceeac2ed6eb26e08e72282e", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "850a9b440271c31ad7f3a01c6aa166aeba9d81fbca2089ef70433bef908a1a21", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "d210454a5daf506fa82cd7dd1826ace9e8283a6ac13eed9c4b2546edb175e8ac", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "3bb430f6157356c014f568bb3ea2787567c19a5f72a6a9f79b59a337d169df83", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b04e5bd568733fe007de987a881477c89894c45dd3b8752412dac1f298d4dc85", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "e55b55c78127d8e621e2c239f94a876ea1e7b3447f58970dc8bb318090f0e0d2", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "48edc628b0d356221aefa7258ca49d77051527a49e18fe2c64c2a45280d9b379", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "abcd7eddefbc1bddce3b5120847d2fe0bf2a92b413b0bed2c9a6b95f2c1d922c", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + }, + { + "hash": "0fa0a6b902f59fba24d2c245540279fc801375c22ca0badfc44e9340d57a9568", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + }, + { + "hash": "a6e73fc071534c3a7c1f2bc84a2b663b4f17c83bc2106646b0f7038b984e651d", + "path": "metricbeat/metricbeat.sh" + }, + { + "hash": "7c98903873df40230c9b43da0b27e65bfbf78bc5889a962ccb60ecc21ab697ba", + "path": "metricbeat/metricbeat.yml" + }, + { + "hash": "c63d4ca844f99b90813452a55de140aebab9383ba5cd54d9fe0e23ba456f7341", + "path": "metricbeat/modules.d/apm.yml" + }, + { + "hash": "09c2652560a90ac35703db8ccdeac9eeea66739a71d1d90956b7d08822a929d2", + "path": "metricbeat/modules.d/elastic-agent.yml" + }, + { + "hash": "61ae278bf23204d858cec75514a1339abc2af6e60e2d1378a991f2087a3c2111", + "path": "metricbeat/modules.d/elasticsearch.yml" + }, + { + "hash": "304f7cf4b969ac2b9a8804a1e2d6832d3d867bc8dd1693c200c49e9a0d49b69f", + "path": "metricbeat/modules.d/enterprise_search.yml" + }, + { + "hash": "73f84e4471088032d2add72bf71a4c1d97792513be183aa3270e206522ad6e5c", + "path": "metricbeat/modules.d/kibana.yml" + } + ], + "template_version": "7.13.4-SNAPSHOT-0000006146" + }, + "upgradable_to": [ + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.13.4-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.13.3-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.13.3-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/enterprise-search:7.13.3-0", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.13.3-0" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "b8331338d79813a1a7078e873be7c3cbc4dd4be3f0a1a444a19da8e56ef6f27d", + "path": "apm/apm.sh" + }, + { + "hash": "b22c5877eae73818858bc6b4a47bcd07804978f4e4a7432ecb000b36d465dd2e", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "02fe3dde6fec28fba213e669f8e250214e46c804a8ac27867f7ae2c5085bb7ab", + "path": "apm/config/capabilities.yml" + }, + { + "hash": "f64750d0ec70d3fdc83d4a11bb1486db4fc2cba1d09323f398ba8b7c4748d273", + "path": "apm/config/credentials.yml" + }, + { + "hash": "7ce2470cc281dcfaaf10c7447372929bbff0f53da1152b0c8059ba5f3b5a1e0e", + "path": "apm/config/elastic-agent.yml" + }, + { + "hash": "d4574e519b79b9b93b7c1d213ecbead15ef849168fd092f7a2d76a2f43dae68b", + "path": "apm/config/fleet-setup.yml" + }, + { + "hash": "f8e1b2da0454464f3045598f989ae9bd7b92825d43af6dff255cdec785de0c26", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "4075aed316a22f757dc671d0f145fcfbe07f79046d1d5e9e4b8d874a3cdcfb42", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "9f1279c3ba6224a7c6899735d76b6323e03865657d72dc5ea89c717cf48167b2", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "3713a3ab696081e8eefc251e2ed82149937127682f44e215a693722f2865cfc7", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "4706ab40b98ad97d24197f0e7403b787a6dc4aa13ceeac2ed6eb26e08e72282e", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "850a9b440271c31ad7f3a01c6aa166aeba9d81fbca2089ef70433bef908a1a21", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "d210454a5daf506fa82cd7dd1826ace9e8283a6ac13eed9c4b2546edb175e8ac", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "3bb430f6157356c014f568bb3ea2787567c19a5f72a6a9f79b59a337d169df83", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b04e5bd568733fe007de987a881477c89894c45dd3b8752412dac1f298d4dc85", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "e55b55c78127d8e621e2c239f94a876ea1e7b3447f58970dc8bb318090f0e0d2", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "48edc628b0d356221aefa7258ca49d77051527a49e18fe2c64c2a45280d9b379", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "abcd7eddefbc1bddce3b5120847d2fe0bf2a92b413b0bed2c9a6b95f2c1d922c", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + }, + { + "hash": "0fa0a6b902f59fba24d2c245540279fc801375c22ca0badfc44e9340d57a9568", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + }, + { + "hash": "a6e73fc071534c3a7c1f2bc84a2b663b4f17c83bc2106646b0f7038b984e651d", + "path": "metricbeat/metricbeat.sh" + }, + { + "hash": "7c98903873df40230c9b43da0b27e65bfbf78bc5889a962ccb60ecc21ab697ba", + "path": "metricbeat/metricbeat.yml" + }, + { + "hash": "c63d4ca844f99b90813452a55de140aebab9383ba5cd54d9fe0e23ba456f7341", + "path": "metricbeat/modules.d/apm.yml" + }, + { + "hash": "09c2652560a90ac35703db8ccdeac9eeea66739a71d1d90956b7d08822a929d2", + "path": "metricbeat/modules.d/elastic-agent.yml" + }, + { + "hash": "61ae278bf23204d858cec75514a1339abc2af6e60e2d1378a991f2087a3c2111", + "path": "metricbeat/modules.d/elasticsearch.yml" + }, + { + "hash": "304f7cf4b969ac2b9a8804a1e2d6832d3d867bc8dd1693c200c49e9a0d49b69f", + "path": "metricbeat/modules.d/enterprise_search.yml" + }, + { + "hash": "73f84e4471088032d2add72bf71a4c1d97792513be183aa3270e206522ad6e5c", + "path": "metricbeat/modules.d/kibana.yml" + } + ], + "template_version": "7.13.3-0000006143" + }, + "upgradable_to": [ + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.13.3", + "whitelisted": true + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.13.3-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.13.3-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/enterprise-search:7.13.3-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.13.3-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "b8331338d79813a1a7078e873be7c3cbc4dd4be3f0a1a444a19da8e56ef6f27d", + "path": "apm/apm.sh" + }, + { + "hash": "b22c5877eae73818858bc6b4a47bcd07804978f4e4a7432ecb000b36d465dd2e", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "02fe3dde6fec28fba213e669f8e250214e46c804a8ac27867f7ae2c5085bb7ab", + "path": "apm/config/capabilities.yml" + }, + { + "hash": "f64750d0ec70d3fdc83d4a11bb1486db4fc2cba1d09323f398ba8b7c4748d273", + "path": "apm/config/credentials.yml" + }, + { + "hash": "7ce2470cc281dcfaaf10c7447372929bbff0f53da1152b0c8059ba5f3b5a1e0e", + "path": "apm/config/elastic-agent.yml" + }, + { + "hash": "d4574e519b79b9b93b7c1d213ecbead15ef849168fd092f7a2d76a2f43dae68b", + "path": "apm/config/fleet-setup.yml" + }, + { + "hash": "f8e1b2da0454464f3045598f989ae9bd7b92825d43af6dff255cdec785de0c26", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "4075aed316a22f757dc671d0f145fcfbe07f79046d1d5e9e4b8d874a3cdcfb42", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "9f1279c3ba6224a7c6899735d76b6323e03865657d72dc5ea89c717cf48167b2", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "3713a3ab696081e8eefc251e2ed82149937127682f44e215a693722f2865cfc7", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "4706ab40b98ad97d24197f0e7403b787a6dc4aa13ceeac2ed6eb26e08e72282e", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "850a9b440271c31ad7f3a01c6aa166aeba9d81fbca2089ef70433bef908a1a21", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "d210454a5daf506fa82cd7dd1826ace9e8283a6ac13eed9c4b2546edb175e8ac", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "3bb430f6157356c014f568bb3ea2787567c19a5f72a6a9f79b59a337d169df83", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b04e5bd568733fe007de987a881477c89894c45dd3b8752412dac1f298d4dc85", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "e55b55c78127d8e621e2c239f94a876ea1e7b3447f58970dc8bb318090f0e0d2", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "48edc628b0d356221aefa7258ca49d77051527a49e18fe2c64c2a45280d9b379", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "abcd7eddefbc1bddce3b5120847d2fe0bf2a92b413b0bed2c9a6b95f2c1d922c", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + }, + { + "hash": "0fa0a6b902f59fba24d2c245540279fc801375c22ca0badfc44e9340d57a9568", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + }, + { + "hash": "a6e73fc071534c3a7c1f2bc84a2b663b4f17c83bc2106646b0f7038b984e651d", + "path": "metricbeat/metricbeat.sh" + }, + { + "hash": "7c98903873df40230c9b43da0b27e65bfbf78bc5889a962ccb60ecc21ab697ba", + "path": "metricbeat/metricbeat.yml" + }, + { + "hash": "c63d4ca844f99b90813452a55de140aebab9383ba5cd54d9fe0e23ba456f7341", + "path": "metricbeat/modules.d/apm.yml" + }, + { + "hash": "09c2652560a90ac35703db8ccdeac9eeea66739a71d1d90956b7d08822a929d2", + "path": "metricbeat/modules.d/elastic-agent.yml" + }, + { + "hash": "61ae278bf23204d858cec75514a1339abc2af6e60e2d1378a991f2087a3c2111", + "path": "metricbeat/modules.d/elasticsearch.yml" + }, + { + "hash": "304f7cf4b969ac2b9a8804a1e2d6832d3d867bc8dd1693c200c49e9a0d49b69f", + "path": "metricbeat/modules.d/enterprise_search.yml" + }, + { + "hash": "73f84e4471088032d2add72bf71a4c1d97792513be183aa3270e206522ad6e5c", + "path": "metricbeat/modules.d/kibana.yml" + } + ], + "template_version": "7.13.3-SNAPSHOT-0000006139" + }, + "upgradable_to": [ + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.13.3-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.13.2-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.13.2-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/enterprise-search:7.13.2-0", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.13.2-0" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "b8331338d79813a1a7078e873be7c3cbc4dd4be3f0a1a444a19da8e56ef6f27d", + "path": "apm/apm.sh" + }, + { + "hash": "b22c5877eae73818858bc6b4a47bcd07804978f4e4a7432ecb000b36d465dd2e", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "02fe3dde6fec28fba213e669f8e250214e46c804a8ac27867f7ae2c5085bb7ab", + "path": "apm/config/capabilities.yml" + }, + { + "hash": "f64750d0ec70d3fdc83d4a11bb1486db4fc2cba1d09323f398ba8b7c4748d273", + "path": "apm/config/credentials.yml" + }, + { + "hash": "7ce2470cc281dcfaaf10c7447372929bbff0f53da1152b0c8059ba5f3b5a1e0e", + "path": "apm/config/elastic-agent.yml" + }, + { + "hash": "d4574e519b79b9b93b7c1d213ecbead15ef849168fd092f7a2d76a2f43dae68b", + "path": "apm/config/fleet-setup.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "bd4d67a66e75dad09876293bc84e6710a62bf040e19aea0f4221e10858c5c0dd", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "9f1279c3ba6224a7c6899735d76b6323e03865657d72dc5ea89c717cf48167b2", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "3713a3ab696081e8eefc251e2ed82149937127682f44e215a693722f2865cfc7", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "4706ab40b98ad97d24197f0e7403b787a6dc4aa13ceeac2ed6eb26e08e72282e", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "850a9b440271c31ad7f3a01c6aa166aeba9d81fbca2089ef70433bef908a1a21", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "d210454a5daf506fa82cd7dd1826ace9e8283a6ac13eed9c4b2546edb175e8ac", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "3bb430f6157356c014f568bb3ea2787567c19a5f72a6a9f79b59a337d169df83", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b04e5bd568733fe007de987a881477c89894c45dd3b8752412dac1f298d4dc85", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "e55b55c78127d8e621e2c239f94a876ea1e7b3447f58970dc8bb318090f0e0d2", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "48edc628b0d356221aefa7258ca49d77051527a49e18fe2c64c2a45280d9b379", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "abcd7eddefbc1bddce3b5120847d2fe0bf2a92b413b0bed2c9a6b95f2c1d922c", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + }, + { + "hash": "0fa0a6b902f59fba24d2c245540279fc801375c22ca0badfc44e9340d57a9568", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + }, + { + "hash": "a6e73fc071534c3a7c1f2bc84a2b663b4f17c83bc2106646b0f7038b984e651d", + "path": "metricbeat/metricbeat.sh" + }, + { + "hash": "7c98903873df40230c9b43da0b27e65bfbf78bc5889a962ccb60ecc21ab697ba", + "path": "metricbeat/metricbeat.yml" + }, + { + "hash": "c63d4ca844f99b90813452a55de140aebab9383ba5cd54d9fe0e23ba456f7341", + "path": "metricbeat/modules.d/apm.yml" + }, + { + "hash": "09c2652560a90ac35703db8ccdeac9eeea66739a71d1d90956b7d08822a929d2", + "path": "metricbeat/modules.d/elastic-agent.yml" + }, + { + "hash": "61ae278bf23204d858cec75514a1339abc2af6e60e2d1378a991f2087a3c2111", + "path": "metricbeat/modules.d/elasticsearch.yml" + }, + { + "hash": "304f7cf4b969ac2b9a8804a1e2d6832d3d867bc8dd1693c200c49e9a0d49b69f", + "path": "metricbeat/modules.d/enterprise_search.yml" + }, + { + "hash": "73f84e4471088032d2add72bf71a4c1d97792513be183aa3270e206522ad6e5c", + "path": "metricbeat/modules.d/kibana.yml" + } + ], + "template_version": "7.13.2-0000006028" + }, + "upgradable_to": [ + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.13.2", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.13.2-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.13.2-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/enterprise-search:7.13.2-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.13.2-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "b8331338d79813a1a7078e873be7c3cbc4dd4be3f0a1a444a19da8e56ef6f27d", + "path": "apm/apm.sh" + }, + { + "hash": "b22c5877eae73818858bc6b4a47bcd07804978f4e4a7432ecb000b36d465dd2e", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "02fe3dde6fec28fba213e669f8e250214e46c804a8ac27867f7ae2c5085bb7ab", + "path": "apm/config/capabilities.yml" + }, + { + "hash": "f64750d0ec70d3fdc83d4a11bb1486db4fc2cba1d09323f398ba8b7c4748d273", + "path": "apm/config/credentials.yml" + }, + { + "hash": "7ce2470cc281dcfaaf10c7447372929bbff0f53da1152b0c8059ba5f3b5a1e0e", + "path": "apm/config/elastic-agent.yml" + }, + { + "hash": "d4574e519b79b9b93b7c1d213ecbead15ef849168fd092f7a2d76a2f43dae68b", + "path": "apm/config/fleet-setup.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "bd4d67a66e75dad09876293bc84e6710a62bf040e19aea0f4221e10858c5c0dd", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "9f1279c3ba6224a7c6899735d76b6323e03865657d72dc5ea89c717cf48167b2", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "3713a3ab696081e8eefc251e2ed82149937127682f44e215a693722f2865cfc7", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "4706ab40b98ad97d24197f0e7403b787a6dc4aa13ceeac2ed6eb26e08e72282e", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "850a9b440271c31ad7f3a01c6aa166aeba9d81fbca2089ef70433bef908a1a21", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "d210454a5daf506fa82cd7dd1826ace9e8283a6ac13eed9c4b2546edb175e8ac", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "3bb430f6157356c014f568bb3ea2787567c19a5f72a6a9f79b59a337d169df83", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b04e5bd568733fe007de987a881477c89894c45dd3b8752412dac1f298d4dc85", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "e55b55c78127d8e621e2c239f94a876ea1e7b3447f58970dc8bb318090f0e0d2", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "48edc628b0d356221aefa7258ca49d77051527a49e18fe2c64c2a45280d9b379", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "abcd7eddefbc1bddce3b5120847d2fe0bf2a92b413b0bed2c9a6b95f2c1d922c", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + }, + { + "hash": "0fa0a6b902f59fba24d2c245540279fc801375c22ca0badfc44e9340d57a9568", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + }, + { + "hash": "a6e73fc071534c3a7c1f2bc84a2b663b4f17c83bc2106646b0f7038b984e651d", + "path": "metricbeat/metricbeat.sh" + }, + { + "hash": "7c98903873df40230c9b43da0b27e65bfbf78bc5889a962ccb60ecc21ab697ba", + "path": "metricbeat/metricbeat.yml" + }, + { + "hash": "c63d4ca844f99b90813452a55de140aebab9383ba5cd54d9fe0e23ba456f7341", + "path": "metricbeat/modules.d/apm.yml" + }, + { + "hash": "09c2652560a90ac35703db8ccdeac9eeea66739a71d1d90956b7d08822a929d2", + "path": "metricbeat/modules.d/elastic-agent.yml" + }, + { + "hash": "61ae278bf23204d858cec75514a1339abc2af6e60e2d1378a991f2087a3c2111", + "path": "metricbeat/modules.d/elasticsearch.yml" + }, + { + "hash": "304f7cf4b969ac2b9a8804a1e2d6832d3d867bc8dd1693c200c49e9a0d49b69f", + "path": "metricbeat/modules.d/enterprise_search.yml" + }, + { + "hash": "73f84e4471088032d2add72bf71a4c1d97792513be183aa3270e206522ad6e5c", + "path": "metricbeat/modules.d/kibana.yml" + } + ], + "template_version": "7.13.2-SNAPSHOT-0000006033" + }, + "upgradable_to": [ + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.13.2-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.13.1-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.13.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/enterprise-search:7.13.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.13.1-0" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "b8331338d79813a1a7078e873be7c3cbc4dd4be3f0a1a444a19da8e56ef6f27d", + "path": "apm/apm.sh" + }, + { + "hash": "b22c5877eae73818858bc6b4a47bcd07804978f4e4a7432ecb000b36d465dd2e", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "02fe3dde6fec28fba213e669f8e250214e46c804a8ac27867f7ae2c5085bb7ab", + "path": "apm/config/capabilities.yml" + }, + { + "hash": "f64750d0ec70d3fdc83d4a11bb1486db4fc2cba1d09323f398ba8b7c4748d273", + "path": "apm/config/credentials.yml" + }, + { + "hash": "7ce2470cc281dcfaaf10c7447372929bbff0f53da1152b0c8059ba5f3b5a1e0e", + "path": "apm/config/elastic-agent.yml" + }, + { + "hash": "d4574e519b79b9b93b7c1d213ecbead15ef849168fd092f7a2d76a2f43dae68b", + "path": "apm/config/fleet-setup.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "bd4d67a66e75dad09876293bc84e6710a62bf040e19aea0f4221e10858c5c0dd", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "9f1279c3ba6224a7c6899735d76b6323e03865657d72dc5ea89c717cf48167b2", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "3713a3ab696081e8eefc251e2ed82149937127682f44e215a693722f2865cfc7", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "4706ab40b98ad97d24197f0e7403b787a6dc4aa13ceeac2ed6eb26e08e72282e", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "850a9b440271c31ad7f3a01c6aa166aeba9d81fbca2089ef70433bef908a1a21", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "d210454a5daf506fa82cd7dd1826ace9e8283a6ac13eed9c4b2546edb175e8ac", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "3bb430f6157356c014f568bb3ea2787567c19a5f72a6a9f79b59a337d169df83", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b04e5bd568733fe007de987a881477c89894c45dd3b8752412dac1f298d4dc85", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "e55b55c78127d8e621e2c239f94a876ea1e7b3447f58970dc8bb318090f0e0d2", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "48edc628b0d356221aefa7258ca49d77051527a49e18fe2c64c2a45280d9b379", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "abcd7eddefbc1bddce3b5120847d2fe0bf2a92b413b0bed2c9a6b95f2c1d922c", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + }, + { + "hash": "0fa0a6b902f59fba24d2c245540279fc801375c22ca0badfc44e9340d57a9568", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + }, + { + "hash": "a6e73fc071534c3a7c1f2bc84a2b663b4f17c83bc2106646b0f7038b984e651d", + "path": "metricbeat/metricbeat.sh" + }, + { + "hash": "7c98903873df40230c9b43da0b27e65bfbf78bc5889a962ccb60ecc21ab697ba", + "path": "metricbeat/metricbeat.yml" + }, + { + "hash": "c63d4ca844f99b90813452a55de140aebab9383ba5cd54d9fe0e23ba456f7341", + "path": "metricbeat/modules.d/apm.yml" + }, + { + "hash": "09c2652560a90ac35703db8ccdeac9eeea66739a71d1d90956b7d08822a929d2", + "path": "metricbeat/modules.d/elastic-agent.yml" + }, + { + "hash": "61ae278bf23204d858cec75514a1339abc2af6e60e2d1378a991f2087a3c2111", + "path": "metricbeat/modules.d/elasticsearch.yml" + }, + { + "hash": "304f7cf4b969ac2b9a8804a1e2d6832d3d867bc8dd1693c200c49e9a0d49b69f", + "path": "metricbeat/modules.d/enterprise_search.yml" + }, + { + "hash": "73f84e4471088032d2add72bf71a4c1d97792513be183aa3270e206522ad6e5c", + "path": "metricbeat/modules.d/kibana.yml" + } + ], + "template_version": "7.13.1-0000006001" + }, + "upgradable_to": [ + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.13.1", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.13.1-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.13.1-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/enterprise-search:7.13.1-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.13.1-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "b8331338d79813a1a7078e873be7c3cbc4dd4be3f0a1a444a19da8e56ef6f27d", + "path": "apm/apm.sh" + }, + { + "hash": "b22c5877eae73818858bc6b4a47bcd07804978f4e4a7432ecb000b36d465dd2e", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "02fe3dde6fec28fba213e669f8e250214e46c804a8ac27867f7ae2c5085bb7ab", + "path": "apm/config/capabilities.yml" + }, + { + "hash": "f64750d0ec70d3fdc83d4a11bb1486db4fc2cba1d09323f398ba8b7c4748d273", + "path": "apm/config/credentials.yml" + }, + { + "hash": "7ce2470cc281dcfaaf10c7447372929bbff0f53da1152b0c8059ba5f3b5a1e0e", + "path": "apm/config/elastic-agent.yml" + }, + { + "hash": "d4574e519b79b9b93b7c1d213ecbead15ef849168fd092f7a2d76a2f43dae68b", + "path": "apm/config/fleet-setup.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "bd4d67a66e75dad09876293bc84e6710a62bf040e19aea0f4221e10858c5c0dd", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "9f1279c3ba6224a7c6899735d76b6323e03865657d72dc5ea89c717cf48167b2", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "3713a3ab696081e8eefc251e2ed82149937127682f44e215a693722f2865cfc7", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "4706ab40b98ad97d24197f0e7403b787a6dc4aa13ceeac2ed6eb26e08e72282e", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "850a9b440271c31ad7f3a01c6aa166aeba9d81fbca2089ef70433bef908a1a21", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "d210454a5daf506fa82cd7dd1826ace9e8283a6ac13eed9c4b2546edb175e8ac", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "3bb430f6157356c014f568bb3ea2787567c19a5f72a6a9f79b59a337d169df83", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b04e5bd568733fe007de987a881477c89894c45dd3b8752412dac1f298d4dc85", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "e55b55c78127d8e621e2c239f94a876ea1e7b3447f58970dc8bb318090f0e0d2", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "48edc628b0d356221aefa7258ca49d77051527a49e18fe2c64c2a45280d9b379", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "abcd7eddefbc1bddce3b5120847d2fe0bf2a92b413b0bed2c9a6b95f2c1d922c", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + }, + { + "hash": "0fa0a6b902f59fba24d2c245540279fc801375c22ca0badfc44e9340d57a9568", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + }, + { + "hash": "a6e73fc071534c3a7c1f2bc84a2b663b4f17c83bc2106646b0f7038b984e651d", + "path": "metricbeat/metricbeat.sh" + }, + { + "hash": "7c98903873df40230c9b43da0b27e65bfbf78bc5889a962ccb60ecc21ab697ba", + "path": "metricbeat/metricbeat.yml" + }, + { + "hash": "c63d4ca844f99b90813452a55de140aebab9383ba5cd54d9fe0e23ba456f7341", + "path": "metricbeat/modules.d/apm.yml" + }, + { + "hash": "09c2652560a90ac35703db8ccdeac9eeea66739a71d1d90956b7d08822a929d2", + "path": "metricbeat/modules.d/elastic-agent.yml" + }, + { + "hash": "61ae278bf23204d858cec75514a1339abc2af6e60e2d1378a991f2087a3c2111", + "path": "metricbeat/modules.d/elasticsearch.yml" + }, + { + "hash": "304f7cf4b969ac2b9a8804a1e2d6832d3d867bc8dd1693c200c49e9a0d49b69f", + "path": "metricbeat/modules.d/enterprise_search.yml" + }, + { + "hash": "73f84e4471088032d2add72bf71a4c1d97792513be183aa3270e206522ad6e5c", + "path": "metricbeat/modules.d/kibana.yml" + } + ], + "template_version": "7.13.1-SNAPSHOT-0000005997" + }, + "upgradable_to": [ + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.13.1-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.13.0-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.13.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/enterprise-search:7.13.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.13.0-0" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "b8331338d79813a1a7078e873be7c3cbc4dd4be3f0a1a444a19da8e56ef6f27d", + "path": "apm/apm.sh" + }, + { + "hash": "b22c5877eae73818858bc6b4a47bcd07804978f4e4a7432ecb000b36d465dd2e", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "02fe3dde6fec28fba213e669f8e250214e46c804a8ac27867f7ae2c5085bb7ab", + "path": "apm/config/capabilities.yml" + }, + { + "hash": "f64750d0ec70d3fdc83d4a11bb1486db4fc2cba1d09323f398ba8b7c4748d273", + "path": "apm/config/credentials.yml" + }, + { + "hash": "7ce2470cc281dcfaaf10c7447372929bbff0f53da1152b0c8059ba5f3b5a1e0e", + "path": "apm/config/elastic-agent.yml" + }, + { + "hash": "d4574e519b79b9b93b7c1d213ecbead15ef849168fd092f7a2d76a2f43dae68b", + "path": "apm/config/fleet-setup.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "bd4d67a66e75dad09876293bc84e6710a62bf040e19aea0f4221e10858c5c0dd", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "9f1279c3ba6224a7c6899735d76b6323e03865657d72dc5ea89c717cf48167b2", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "3713a3ab696081e8eefc251e2ed82149937127682f44e215a693722f2865cfc7", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "4706ab40b98ad97d24197f0e7403b787a6dc4aa13ceeac2ed6eb26e08e72282e", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "850a9b440271c31ad7f3a01c6aa166aeba9d81fbca2089ef70433bef908a1a21", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "d210454a5daf506fa82cd7dd1826ace9e8283a6ac13eed9c4b2546edb175e8ac", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "3bb430f6157356c014f568bb3ea2787567c19a5f72a6a9f79b59a337d169df83", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b04e5bd568733fe007de987a881477c89894c45dd3b8752412dac1f298d4dc85", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "e55b55c78127d8e621e2c239f94a876ea1e7b3447f58970dc8bb318090f0e0d2", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "48edc628b0d356221aefa7258ca49d77051527a49e18fe2c64c2a45280d9b379", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "abcd7eddefbc1bddce3b5120847d2fe0bf2a92b413b0bed2c9a6b95f2c1d922c", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + }, + { + "hash": "0fa0a6b902f59fba24d2c245540279fc801375c22ca0badfc44e9340d57a9568", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + }, + { + "hash": "a6e73fc071534c3a7c1f2bc84a2b663b4f17c83bc2106646b0f7038b984e651d", + "path": "metricbeat/metricbeat.sh" + }, + { + "hash": "7c98903873df40230c9b43da0b27e65bfbf78bc5889a962ccb60ecc21ab697ba", + "path": "metricbeat/metricbeat.yml" + }, + { + "hash": "c63d4ca844f99b90813452a55de140aebab9383ba5cd54d9fe0e23ba456f7341", + "path": "metricbeat/modules.d/apm.yml" + }, + { + "hash": "09c2652560a90ac35703db8ccdeac9eeea66739a71d1d90956b7d08822a929d2", + "path": "metricbeat/modules.d/elastic-agent.yml" + }, + { + "hash": "61ae278bf23204d858cec75514a1339abc2af6e60e2d1378a991f2087a3c2111", + "path": "metricbeat/modules.d/elasticsearch.yml" + }, + { + "hash": "304f7cf4b969ac2b9a8804a1e2d6832d3d867bc8dd1693c200c49e9a0d49b69f", + "path": "metricbeat/modules.d/enterprise_search.yml" + }, + { + "hash": "73f84e4471088032d2add72bf71a4c1d97792513be183aa3270e206522ad6e5c", + "path": "metricbeat/modules.d/kibana.yml" + } + ], + "template_version": "7.13.0-0000005968" + }, + "upgradable_to": [ + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.13.0", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.13.0-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.13.0-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/enterprise-search:7.13.0-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.13.0-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "b8331338d79813a1a7078e873be7c3cbc4dd4be3f0a1a444a19da8e56ef6f27d", + "path": "apm/apm.sh" + }, + { + "hash": "b22c5877eae73818858bc6b4a47bcd07804978f4e4a7432ecb000b36d465dd2e", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "02fe3dde6fec28fba213e669f8e250214e46c804a8ac27867f7ae2c5085bb7ab", + "path": "apm/config/capabilities.yml" + }, + { + "hash": "f64750d0ec70d3fdc83d4a11bb1486db4fc2cba1d09323f398ba8b7c4748d273", + "path": "apm/config/credentials.yml" + }, + { + "hash": "7ce2470cc281dcfaaf10c7447372929bbff0f53da1152b0c8059ba5f3b5a1e0e", + "path": "apm/config/elastic-agent.yml" + }, + { + "hash": "d4574e519b79b9b93b7c1d213ecbead15ef849168fd092f7a2d76a2f43dae68b", + "path": "apm/config/fleet-setup.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "bd4d67a66e75dad09876293bc84e6710a62bf040e19aea0f4221e10858c5c0dd", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "9f1279c3ba6224a7c6899735d76b6323e03865657d72dc5ea89c717cf48167b2", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "3713a3ab696081e8eefc251e2ed82149937127682f44e215a693722f2865cfc7", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "4706ab40b98ad97d24197f0e7403b787a6dc4aa13ceeac2ed6eb26e08e72282e", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "850a9b440271c31ad7f3a01c6aa166aeba9d81fbca2089ef70433bef908a1a21", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "d210454a5daf506fa82cd7dd1826ace9e8283a6ac13eed9c4b2546edb175e8ac", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "3bb430f6157356c014f568bb3ea2787567c19a5f72a6a9f79b59a337d169df83", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b04e5bd568733fe007de987a881477c89894c45dd3b8752412dac1f298d4dc85", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "e55b55c78127d8e621e2c239f94a876ea1e7b3447f58970dc8bb318090f0e0d2", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "48edc628b0d356221aefa7258ca49d77051527a49e18fe2c64c2a45280d9b379", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "abcd7eddefbc1bddce3b5120847d2fe0bf2a92b413b0bed2c9a6b95f2c1d922c", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + }, + { + "hash": "0fa0a6b902f59fba24d2c245540279fc801375c22ca0badfc44e9340d57a9568", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + }, + { + "hash": "a6e73fc071534c3a7c1f2bc84a2b663b4f17c83bc2106646b0f7038b984e651d", + "path": "metricbeat/metricbeat.sh" + }, + { + "hash": "7c98903873df40230c9b43da0b27e65bfbf78bc5889a962ccb60ecc21ab697ba", + "path": "metricbeat/metricbeat.yml" + }, + { + "hash": "c63d4ca844f99b90813452a55de140aebab9383ba5cd54d9fe0e23ba456f7341", + "path": "metricbeat/modules.d/apm.yml" + }, + { + "hash": "09c2652560a90ac35703db8ccdeac9eeea66739a71d1d90956b7d08822a929d2", + "path": "metricbeat/modules.d/elastic-agent.yml" + }, + { + "hash": "61ae278bf23204d858cec75514a1339abc2af6e60e2d1378a991f2087a3c2111", + "path": "metricbeat/modules.d/elasticsearch.yml" + }, + { + "hash": "304f7cf4b969ac2b9a8804a1e2d6832d3d867bc8dd1693c200c49e9a0d49b69f", + "path": "metricbeat/modules.d/enterprise_search.yml" + }, + { + "hash": "73f84e4471088032d2add72bf71a4c1d97792513be183aa3270e206522ad6e5c", + "path": "metricbeat/modules.d/kibana.yml" + } + ], + "template_version": "7.13.0-SNAPSHOT-0000005964" + }, + "upgradable_to": [ + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.13.0-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.12.2-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.12.2-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/enterprise-search:7.12.2-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.12.2-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "bd4d67a66e75dad09876293bc84e6710a62bf040e19aea0f4221e10858c5c0dd", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "901d1c5f82c51787653ad39eab510abe0b4a15842507604d05bce2609868457b", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "4706ab40b98ad97d24197f0e7403b787a6dc4aa13ceeac2ed6eb26e08e72282e", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "5ed5f308489f1a40c08ce88af3466bc75859a81294ec485fc04f0805476f4a31", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b04e5bd568733fe007de987a881477c89894c45dd3b8752412dac1f298d4dc85", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "e55b55c78127d8e621e2c239f94a876ea1e7b3447f58970dc8bb318090f0e0d2", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "897ac47c2616459eb6d1a2fab4347a70bed08cc4d1963702c7722e2202cbbdbf", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + }, + { + "hash": "0fa0a6b902f59fba24d2c245540279fc801375c22ca0badfc44e9340d57a9568", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + }, + { + "hash": "253647be671bafc7e1ed458da6b1d5ffa7bba90c5e97b46fcd61bd3a55f330d5", + "path": "metricbeat/metricbeat.sh" + }, + { + "hash": "7c98903873df40230c9b43da0b27e65bfbf78bc5889a962ccb60ecc21ab697ba", + "path": "metricbeat/metricbeat.yml" + }, + { + "hash": "c63d4ca844f99b90813452a55de140aebab9383ba5cd54d9fe0e23ba456f7341", + "path": "metricbeat/modules.d/apm.yml" + }, + { + "hash": "61ae278bf23204d858cec75514a1339abc2af6e60e2d1378a991f2087a3c2111", + "path": "metricbeat/modules.d/elasticsearch.yml" + }, + { + "hash": "304f7cf4b969ac2b9a8804a1e2d6832d3d867bc8dd1693c200c49e9a0d49b69f", + "path": "metricbeat/modules.d/enterprise_search.yml" + }, + { + "hash": "73f84e4471088032d2add72bf71a4c1d97792513be183aa3270e206522ad6e5c", + "path": "metricbeat/modules.d/kibana.yml" + } + ], + "template_version": "7.12.2-SNAPSHOT-0000005966" + }, + "upgradable_to": [ + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0", + "8.0.0-SNAPSHOT" + ], + "version": "7.12.2-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.12.1-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.12.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/enterprise-search:7.12.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.12.1-0" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "bd4d67a66e75dad09876293bc84e6710a62bf040e19aea0f4221e10858c5c0dd", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "901d1c5f82c51787653ad39eab510abe0b4a15842507604d05bce2609868457b", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "4706ab40b98ad97d24197f0e7403b787a6dc4aa13ceeac2ed6eb26e08e72282e", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "5ed5f308489f1a40c08ce88af3466bc75859a81294ec485fc04f0805476f4a31", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b04e5bd568733fe007de987a881477c89894c45dd3b8752412dac1f298d4dc85", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "e55b55c78127d8e621e2c239f94a876ea1e7b3447f58970dc8bb318090f0e0d2", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "897ac47c2616459eb6d1a2fab4347a70bed08cc4d1963702c7722e2202cbbdbf", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + }, + { + "hash": "0fa0a6b902f59fba24d2c245540279fc801375c22ca0badfc44e9340d57a9568", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + }, + { + "hash": "253647be671bafc7e1ed458da6b1d5ffa7bba90c5e97b46fcd61bd3a55f330d5", + "path": "metricbeat/metricbeat.sh" + }, + { + "hash": "7c98903873df40230c9b43da0b27e65bfbf78bc5889a962ccb60ecc21ab697ba", + "path": "metricbeat/metricbeat.yml" + }, + { + "hash": "c63d4ca844f99b90813452a55de140aebab9383ba5cd54d9fe0e23ba456f7341", + "path": "metricbeat/modules.d/apm.yml" + }, + { + "hash": "61ae278bf23204d858cec75514a1339abc2af6e60e2d1378a991f2087a3c2111", + "path": "metricbeat/modules.d/elasticsearch.yml" + }, + { + "hash": "304f7cf4b969ac2b9a8804a1e2d6832d3d867bc8dd1693c200c49e9a0d49b69f", + "path": "metricbeat/modules.d/enterprise_search.yml" + }, + { + "hash": "73f84e4471088032d2add72bf71a4c1d97792513be183aa3270e206522ad6e5c", + "path": "metricbeat/modules.d/kibana.yml" + } + ], + "template_version": "7.12.1-0000005883" + }, + "upgradable_to": [ + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0", + "8.0.0-SNAPSHOT" + ], + "version": "7.12.1", + "whitelisted": true + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.12.1-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.12.1-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/enterprise-search:7.12.1-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.12.1-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "bd4d67a66e75dad09876293bc84e6710a62bf040e19aea0f4221e10858c5c0dd", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "901d1c5f82c51787653ad39eab510abe0b4a15842507604d05bce2609868457b", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "4706ab40b98ad97d24197f0e7403b787a6dc4aa13ceeac2ed6eb26e08e72282e", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "5ed5f308489f1a40c08ce88af3466bc75859a81294ec485fc04f0805476f4a31", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b04e5bd568733fe007de987a881477c89894c45dd3b8752412dac1f298d4dc85", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "897ac47c2616459eb6d1a2fab4347a70bed08cc4d1963702c7722e2202cbbdbf", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + }, + { + "hash": "0fa0a6b902f59fba24d2c245540279fc801375c22ca0badfc44e9340d57a9568", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + }, + { + "hash": "253647be671bafc7e1ed458da6b1d5ffa7bba90c5e97b46fcd61bd3a55f330d5", + "path": "metricbeat/metricbeat.sh" + }, + { + "hash": "7c98903873df40230c9b43da0b27e65bfbf78bc5889a962ccb60ecc21ab697ba", + "path": "metricbeat/metricbeat.yml" + }, + { + "hash": "c63d4ca844f99b90813452a55de140aebab9383ba5cd54d9fe0e23ba456f7341", + "path": "metricbeat/modules.d/apm.yml" + }, + { + "hash": "61ae278bf23204d858cec75514a1339abc2af6e60e2d1378a991f2087a3c2111", + "path": "metricbeat/modules.d/elasticsearch.yml" + }, + { + "hash": "304f7cf4b969ac2b9a8804a1e2d6832d3d867bc8dd1693c200c49e9a0d49b69f", + "path": "metricbeat/modules.d/enterprise_search.yml" + }, + { + "hash": "73f84e4471088032d2add72bf71a4c1d97792513be183aa3270e206522ad6e5c", + "path": "metricbeat/modules.d/kibana.yml" + } + ], + "template_version": "7.12.1-SNAPSHOT-0000005803" + }, + "upgradable_to": [ + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0", + "8.0.0-SNAPSHOT" + ], + "version": "7.12.1-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.12.0-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.12.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/enterprise-search:7.12.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.12.0-0" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "bd4d67a66e75dad09876293bc84e6710a62bf040e19aea0f4221e10858c5c0dd", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "901d1c5f82c51787653ad39eab510abe0b4a15842507604d05bce2609868457b", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "4706ab40b98ad97d24197f0e7403b787a6dc4aa13ceeac2ed6eb26e08e72282e", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "5ed5f308489f1a40c08ce88af3466bc75859a81294ec485fc04f0805476f4a31", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b04e5bd568733fe007de987a881477c89894c45dd3b8752412dac1f298d4dc85", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "e55b55c78127d8e621e2c239f94a876ea1e7b3447f58970dc8bb318090f0e0d2", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "897ac47c2616459eb6d1a2fab4347a70bed08cc4d1963702c7722e2202cbbdbf", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + }, + { + "hash": "0fa0a6b902f59fba24d2c245540279fc801375c22ca0badfc44e9340d57a9568", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + }, + { + "hash": "253647be671bafc7e1ed458da6b1d5ffa7bba90c5e97b46fcd61bd3a55f330d5", + "path": "metricbeat/metricbeat.sh" + }, + { + "hash": "7c98903873df40230c9b43da0b27e65bfbf78bc5889a962ccb60ecc21ab697ba", + "path": "metricbeat/metricbeat.yml" + }, + { + "hash": "c63d4ca844f99b90813452a55de140aebab9383ba5cd54d9fe0e23ba456f7341", + "path": "metricbeat/modules.d/apm.yml" + }, + { + "hash": "61ae278bf23204d858cec75514a1339abc2af6e60e2d1378a991f2087a3c2111", + "path": "metricbeat/modules.d/elasticsearch.yml" + }, + { + "hash": "304f7cf4b969ac2b9a8804a1e2d6832d3d867bc8dd1693c200c49e9a0d49b69f", + "path": "metricbeat/modules.d/enterprise_search.yml" + }, + { + "hash": "73f84e4471088032d2add72bf71a4c1d97792513be183aa3270e206522ad6e5c", + "path": "metricbeat/modules.d/kibana.yml" + } + ], + "template_version": "7.12.0-0000005882" + }, + "upgradable_to": [ + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0", + "8.0.0-SNAPSHOT" + ], + "version": "7.12.0", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.12.0-SNAPSHOT-custom-metricbeat-snelson-2" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/enterprise-search:7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.12.0-SNAPSHOT-custom-metricbeat-snelson-2" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "bd4d67a66e75dad09876293bc84e6710a62bf040e19aea0f4221e10858c5c0dd", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "901d1c5f82c51787653ad39eab510abe0b4a15842507604d05bce2609868457b", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "4706ab40b98ad97d24197f0e7403b787a6dc4aa13ceeac2ed6eb26e08e72282e", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "5ed5f308489f1a40c08ce88af3466bc75859a81294ec485fc04f0805476f4a31", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b04e5bd568733fe007de987a881477c89894c45dd3b8752412dac1f298d4dc85", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "e16bc47dd04816a458022462cc2d2b58f7f58dcb42f276d2264d14d3d7f5fc78", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + }, + { + "hash": "0fa0a6b902f59fba24d2c245540279fc801375c22ca0badfc44e9340d57a9568", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + }, + { + "hash": "253647be671bafc7e1ed458da6b1d5ffa7bba90c5e97b46fcd61bd3a55f330d5", + "path": "metricbeat/metricbeat.sh" + }, + { + "hash": "7c98903873df40230c9b43da0b27e65bfbf78bc5889a962ccb60ecc21ab697ba", + "path": "metricbeat/metricbeat.yml" + }, + { + "hash": "c63d4ca844f99b90813452a55de140aebab9383ba5cd54d9fe0e23ba456f7341", + "path": "metricbeat/modules.d/apm.yml" + }, + { + "hash": "0f6a9ce4f85b2cdec89414aa3bbc4fc72e363863c17d4c16f5d5472f5f8573f3", + "path": "metricbeat/modules.d/elasticsearch.yml" + }, + { + "hash": "304f7cf4b969ac2b9a8804a1e2d6832d3d867bc8dd1693c200c49e9a0d49b69f", + "path": "metricbeat/modules.d/enterprise_search.yml" + }, + { + "hash": "73f84e4471088032d2add72bf71a4c1d97792513be183aa3270e206522ad6e5c", + "path": "metricbeat/modules.d/kibana.yml" + } + ], + "template_version": "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2-0000005726" + }, + "upgradable_to": [ + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0", + "8.0.0-SNAPSHOT" + ], + "version": "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.12.0-SNAPSHOT-custom-metricbeat-snelson" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/enterprise-search:7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.12.0-SNAPSHOT-custom-metricbeat-snelson" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "bd4d67a66e75dad09876293bc84e6710a62bf040e19aea0f4221e10858c5c0dd", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "901d1c5f82c51787653ad39eab510abe0b4a15842507604d05bce2609868457b", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "4706ab40b98ad97d24197f0e7403b787a6dc4aa13ceeac2ed6eb26e08e72282e", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "5ed5f308489f1a40c08ce88af3466bc75859a81294ec485fc04f0805476f4a31", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b04e5bd568733fe007de987a881477c89894c45dd3b8752412dac1f298d4dc85", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "e16bc47dd04816a458022462cc2d2b58f7f58dcb42f276d2264d14d3d7f5fc78", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + }, + { + "hash": "0fa0a6b902f59fba24d2c245540279fc801375c22ca0badfc44e9340d57a9568", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + }, + { + "hash": "253647be671bafc7e1ed458da6b1d5ffa7bba90c5e97b46fcd61bd3a55f330d5", + "path": "metricbeat/metricbeat.sh" + }, + { + "hash": "7c98903873df40230c9b43da0b27e65bfbf78bc5889a962ccb60ecc21ab697ba", + "path": "metricbeat/metricbeat.yml" + }, + { + "hash": "c63d4ca844f99b90813452a55de140aebab9383ba5cd54d9fe0e23ba456f7341", + "path": "metricbeat/modules.d/apm.yml" + }, + { + "hash": "0f6a9ce4f85b2cdec89414aa3bbc4fc72e363863c17d4c16f5d5472f5f8573f3", + "path": "metricbeat/modules.d/elasticsearch.yml" + }, + { + "hash": "304f7cf4b969ac2b9a8804a1e2d6832d3d867bc8dd1693c200c49e9a0d49b69f", + "path": "metricbeat/modules.d/enterprise_search.yml" + }, + { + "hash": "73f84e4471088032d2add72bf71a4c1d97792513be183aa3270e206522ad6e5c", + "path": "metricbeat/modules.d/kibana.yml" + } + ], + "template_version": "7.12.0-SNAPSHOT-custom-metricbeat-snelson-0000005681" + }, + "upgradable_to": [ + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0", + "8.0.0-SNAPSHOT" + ], + "version": "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.12.0-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.12.0-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/enterprise-search:7.12.0-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.12.0-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "bd4d67a66e75dad09876293bc84e6710a62bf040e19aea0f4221e10858c5c0dd", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "901d1c5f82c51787653ad39eab510abe0b4a15842507604d05bce2609868457b", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "4706ab40b98ad97d24197f0e7403b787a6dc4aa13ceeac2ed6eb26e08e72282e", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "5ed5f308489f1a40c08ce88af3466bc75859a81294ec485fc04f0805476f4a31", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b04e5bd568733fe007de987a881477c89894c45dd3b8752412dac1f298d4dc85", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "e16bc47dd04816a458022462cc2d2b58f7f58dcb42f276d2264d14d3d7f5fc78", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + }, + { + "hash": "0fa0a6b902f59fba24d2c245540279fc801375c22ca0badfc44e9340d57a9568", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + }, + { + "hash": "253647be671bafc7e1ed458da6b1d5ffa7bba90c5e97b46fcd61bd3a55f330d5", + "path": "metricbeat/metricbeat.sh" + }, + { + "hash": "7c98903873df40230c9b43da0b27e65bfbf78bc5889a962ccb60ecc21ab697ba", + "path": "metricbeat/metricbeat.yml" + }, + { + "hash": "c63d4ca844f99b90813452a55de140aebab9383ba5cd54d9fe0e23ba456f7341", + "path": "metricbeat/modules.d/apm.yml" + }, + { + "hash": "61ae278bf23204d858cec75514a1339abc2af6e60e2d1378a991f2087a3c2111", + "path": "metricbeat/modules.d/elasticsearch.yml" + }, + { + "hash": "304f7cf4b969ac2b9a8804a1e2d6832d3d867bc8dd1693c200c49e9a0d49b69f", + "path": "metricbeat/modules.d/enterprise_search.yml" + }, + { + "hash": "73f84e4471088032d2add72bf71a4c1d97792513be183aa3270e206522ad6e5c", + "path": "metricbeat/modules.d/kibana.yml" + } + ], + "template_version": "7.12.0-SNAPSHOT-0000005651" + }, + "upgradable_to": [ + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0", + "8.0.0-SNAPSHOT" + ], + "version": "7.12.0-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.11.3-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.11.3-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/enterprise-search/enterprise-search:7.11.3-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.11.3-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d403d7283a960ac0d7f8f2508ad367ca5f69ebf98ed3f4b351f56a531972394", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "901d1c5f82c51787653ad39eab510abe0b4a15842507604d05bce2609868457b", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "e16bc47dd04816a458022462cc2d2b58f7f58dcb42f276d2264d14d3d7f5fc78", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.11.3-SNAPSHOT-0000005650" + }, + "upgradable_to": [ + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.11.3-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.11.2-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.11.2-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/enterprise-search/enterprise-search:7.11.2", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.11.2-0" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d403d7283a960ac0d7f8f2508ad367ca5f69ebf98ed3f4b351f56a531972394", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "901d1c5f82c51787653ad39eab510abe0b4a15842507604d05bce2609868457b", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "e16bc47dd04816a458022462cc2d2b58f7f58dcb42f276d2264d14d3d7f5fc78", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.11.2-0000005495" + }, + "upgradable_to": [ + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.11.2", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.11.2-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.11.2-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/enterprise-search/enterprise-search:7.11.2-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.11.2-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d403d7283a960ac0d7f8f2508ad367ca5f69ebf98ed3f4b351f56a531972394", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "901d1c5f82c51787653ad39eab510abe0b4a15842507604d05bce2609868457b", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "e16bc47dd04816a458022462cc2d2b58f7f58dcb42f276d2264d14d3d7f5fc78", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.11.2-SNAPSHOT-0000005489" + }, + "upgradable_to": [ + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.11.2-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.11.1-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.11.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/enterprise-search/enterprise-search:7.11.1", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.11.1-0" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d403d7283a960ac0d7f8f2508ad367ca5f69ebf98ed3f4b351f56a531972394", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "901d1c5f82c51787653ad39eab510abe0b4a15842507604d05bce2609868457b", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "e16bc47dd04816a458022462cc2d2b58f7f58dcb42f276d2264d14d3d7f5fc78", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.11.1-0000005557" + }, + "upgradable_to": [ + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.11.1", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.11.1-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.11.1-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/enterprise-search/enterprise-search:7.11.1-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.11.1-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d403d7283a960ac0d7f8f2508ad367ca5f69ebf98ed3f4b351f56a531972394", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "d07e35100cd07c918d95e9e9c767820b250ce3c3f66ec4bf1ec235c269121d62", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "e16bc47dd04816a458022462cc2d2b58f7f58dcb42f276d2264d14d3d7f5fc78", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.11.1-SNAPSHOT-0000005321" + }, + "upgradable_to": [ + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.11.1-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.11.0-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.11.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/enterprise-search/enterprise-search:7.11.0", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.11.0-0" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d403d7283a960ac0d7f8f2508ad367ca5f69ebf98ed3f4b351f56a531972394", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "901d1c5f82c51787653ad39eab510abe0b4a15842507604d05bce2609868457b", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "e16bc47dd04816a458022462cc2d2b58f7f58dcb42f276d2264d14d3d7f5fc78", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.11.0-0000005556" + }, + "upgradable_to": [ + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.11.0", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.11.0-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "quota-aware-fs", + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.11.0-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/swiftype/enterprise-search:7.11.0-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.11.0-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d403d7283a960ac0d7f8f2508ad367ca5f69ebf98ed3f4b351f56a531972394", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "d07e35100cd07c918d95e9e9c767820b250ce3c3f66ec4bf1ec235c269121d62", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "e16bc47dd04816a458022462cc2d2b58f7f58dcb42f276d2264d14d3d7f5fc78", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.11.0-SNAPSHOT-0000005276" + }, + "upgradable_to": [ + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.11.0-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.10.3-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.10.3-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/enterprise-search/enterprise-search:7.10.3-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.10.3-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "ecd94de595b0343eec70cd549f19d85521bd68c0e349fb8f28a67cdd5cd644f3", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "3b487d4e51930c11750cf10ce5b922b53f281f590beb4f3ff769fff897c318d6", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "e16bc47dd04816a458022462cc2d2b58f7f58dcb42f276d2264d14d3d7f5fc78", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.10.3-SNAPSHOT-0000005310" + }, + "upgradable_to": [ + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.10.3-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.10.2-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.10.2-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/enterprise-search/enterprise-search:7.10.2", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.10.2-0" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "ecd94de595b0343eec70cd549f19d85521bd68c0e349fb8f28a67cdd5cd644f3", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "3b487d4e51930c11750cf10ce5b922b53f281f590beb4f3ff769fff897c318d6", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "e16bc47dd04816a458022462cc2d2b58f7f58dcb42f276d2264d14d3d7f5fc78", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.10.2-0000005554" + }, + "upgradable_to": [ + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.10.2", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.10.2-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.10.2-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/swiftype/enterprise-search:7.10.2-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.10.2-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "ecd94de595b0343eec70cd549f19d85521bd68c0e349fb8f28a67cdd5cd644f3", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "b3039843b4c7661e87734499818cbaa5e29ee7c582fe71b369165ec831b962f0", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "e16bc47dd04816a458022462cc2d2b58f7f58dcb42f276d2264d14d3d7f5fc78", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.10.2-SNAPSHOT-0000005112" + }, + "upgradable_to": [ + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.10.2-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.10.1-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.10.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/enterprise-search/enterprise-search:7.10.1", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.10.1-0" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "ecd94de595b0343eec70cd549f19d85521bd68c0e349fb8f28a67cdd5cd644f3", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "3b487d4e51930c11750cf10ce5b922b53f281f590beb4f3ff769fff897c318d6", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "e16bc47dd04816a458022462cc2d2b58f7f58dcb42f276d2264d14d3d7f5fc78", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.10.1-0000005553" + }, + "upgradable_to": [ + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.10.1", + "whitelisted": true + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.10.1-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.10.1-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/swiftype/enterprise-search:7.10.1-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.10.1-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "ecd94de595b0343eec70cd549f19d85521bd68c0e349fb8f28a67cdd5cd644f3", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "b3039843b4c7661e87734499818cbaa5e29ee7c582fe71b369165ec831b962f0", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "e16bc47dd04816a458022462cc2d2b58f7f58dcb42f276d2264d14d3d7f5fc78", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.10.1-SNAPSHOT-0000004990" + }, + "upgradable_to": [ + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.10.1-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.10.0-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.10.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/enterprise-search/enterprise-search:7.10.0", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.10.0-0" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "ecd94de595b0343eec70cd549f19d85521bd68c0e349fb8f28a67cdd5cd644f3", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "3b487d4e51930c11750cf10ce5b922b53f281f590beb4f3ff769fff897c318d6", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "7c138e1794ec33164c25ab40b05f68da5ed3c424be5048644785885465356527", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "e16bc47dd04816a458022462cc2d2b58f7f58dcb42f276d2264d14d3d7f5fc78", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.10.0-0000005552" + }, + "upgradable_to": [ + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.10.0", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.10.0-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.10.0-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/swiftype/enterprise-search:7.10.0-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.10.0-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "1660a2b650c11967683c78597ae95f81454eccf085dd7e1703eb46101f3ef03c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "ecd94de595b0343eec70cd549f19d85521bd68c0e349fb8f28a67cdd5cd644f3", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "04116814f94f2dfbea30790a7e8c0de644df24e020654f31c2fe7f77de7bf7c8", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "48e4507c8299849501700e9b3af23beffabbe5d4b1b5a105a2c89025db02b77a", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.10.0-SNAPSHOT-0000004924" + }, + "upgradable_to": [ + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.10.0-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.9.4-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.9.4-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/swiftype/enterprise-search:7.9.4-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.9.4-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "a5cef0e7155e9419528c1eccbc9e90316d73c62715dd5a1a97ab7d5c3f4e709c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "ecd94de595b0343eec70cd549f19d85521bd68c0e349fb8f28a67cdd5cd644f3", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "04116814f94f2dfbea30790a7e8c0de644df24e020654f31c2fe7f77de7bf7c8", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "48e4507c8299849501700e9b3af23beffabbe5d4b1b5a105a2c89025db02b77a", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.9.4-SNAPSHOT-0000004925" + }, + "upgradable_to": [ + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.9.4-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.9.3-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.9.3-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/enterprise-search/enterprise-search:7.9.3", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.9.3-0" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "a5cef0e7155e9419528c1eccbc9e90316d73c62715dd5a1a97ab7d5c3f4e709c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "ecd94de595b0343eec70cd549f19d85521bd68c0e349fb8f28a67cdd5cd644f3", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "3b487d4e51930c11750cf10ce5b922b53f281f590beb4f3ff769fff897c318d6", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "48e4507c8299849501700e9b3af23beffabbe5d4b1b5a105a2c89025db02b77a", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.9.3-0000005579" + }, + "upgradable_to": [ + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.9.3", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.9.3-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.9.3-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/swiftype/enterprise-search:7.9.3-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.9.3-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "a5cef0e7155e9419528c1eccbc9e90316d73c62715dd5a1a97ab7d5c3f4e709c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "ecd94de595b0343eec70cd549f19d85521bd68c0e349fb8f28a67cdd5cd644f3", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "04116814f94f2dfbea30790a7e8c0de644df24e020654f31c2fe7f77de7bf7c8", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "48e4507c8299849501700e9b3af23beffabbe5d4b1b5a105a2c89025db02b77a", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.9.3-SNAPSHOT-0000004867" + }, + "upgradable_to": [ + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.9.3-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.9.2-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.9.2-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/enterprise-search/enterprise-search:7.9.2", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.9.2-0" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "a5cef0e7155e9419528c1eccbc9e90316d73c62715dd5a1a97ab7d5c3f4e709c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "ecd94de595b0343eec70cd549f19d85521bd68c0e349fb8f28a67cdd5cd644f3", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "04116814f94f2dfbea30790a7e8c0de644df24e020654f31c2fe7f77de7bf7c8", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "48e4507c8299849501700e9b3af23beffabbe5d4b1b5a105a2c89025db02b77a", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.9.2-0000006141" + }, + "upgradable_to": [ + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.9.2", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.9.2-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.9.2-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/swiftype/enterprise-search:7.9.2-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.9.2-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "a5cef0e7155e9419528c1eccbc9e90316d73c62715dd5a1a97ab7d5c3f4e709c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "ecd94de595b0343eec70cd549f19d85521bd68c0e349fb8f28a67cdd5cd644f3", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "04116814f94f2dfbea30790a7e8c0de644df24e020654f31c2fe7f77de7bf7c8", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "48e4507c8299849501700e9b3af23beffabbe5d4b1b5a105a2c89025db02b77a", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.9.2-SNAPSHOT-0000004749" + }, + "upgradable_to": [ + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.9.2-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.9.1-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.9.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/enterprise-search/enterprise-search:7.9.1", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.9.1-0" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "9c4d9fa7e0403cac7a5812accf1b2621c27469a20ece1baff71ccfbd65e735d1", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "44a664c2df3dbe310dd12bec3da35df238040c75aaa0e75c1e90f247912294b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "e93818974a453439cb956228709d25b0689899a2a96f00b01e69ca99e74f096a", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "2e9f29eaef161aa122042450d935a6dd3bdfdcfb8e0a4b8cd0ecf9fcfc5ca90a", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "30bf83c398eb62ee797da047c62627aee31a8f1a4b7c65984ab4deb2127402d2", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "48e4507c8299849501700e9b3af23beffabbe5d4b1b5a105a2c89025db02b77a", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.9.1-0000006140" + }, + "upgradable_to": [ + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.9.1", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.9.1-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.9.1-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/swiftype/enterprise-search:7.9.1-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.9.1-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "9c4d9fa7e0403cac7a5812accf1b2621c27469a20ece1baff71ccfbd65e735d1", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "44a664c2df3dbe310dd12bec3da35df238040c75aaa0e75c1e90f247912294b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "e93818974a453439cb956228709d25b0689899a2a96f00b01e69ca99e74f096a", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "2e9f29eaef161aa122042450d935a6dd3bdfdcfb8e0a4b8cd0ecf9fcfc5ca90a", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "30bf83c398eb62ee797da047c62627aee31a8f1a4b7c65984ab4deb2127402d2", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "48e4507c8299849501700e9b3af23beffabbe5d4b1b5a105a2c89025db02b77a", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.9.1-SNAPSHOT-0000004689" + }, + "upgradable_to": [ + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.9.1-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.9.0-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.9.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/enterprise-search/enterprise-search:7.9.0", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.9.0-0" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "6c8ff50dff14a5a1368a8be71de13bfc43eddd3ddbb951a054caa0b8247c2946", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "a5cef0e7155e9419528c1eccbc9e90316d73c62715dd5a1a97ab7d5c3f4e709c", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "ecd94de595b0343eec70cd549f19d85521bd68c0e349fb8f28a67cdd5cd644f3", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "3b487d4e51930c11750cf10ce5b922b53f281f590beb4f3ff769fff897c318d6", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "bd1a48a576e64f417308e138af52764e86f13cdbd0e85b2f6536543cbe83bee8", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "48e4507c8299849501700e9b3af23beffabbe5d4b1b5a105a2c89025db02b77a", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.9.0-0000005576" + }, + "upgradable_to": [ + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.9.0", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:7.9.0-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:7.9.0-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/swiftype/enterprise-search:7.9.0-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:7.9.0-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "9c4d9fa7e0403cac7a5812accf1b2621c27469a20ece1baff71ccfbd65e735d1", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "44a664c2df3dbe310dd12bec3da35df238040c75aaa0e75c1e90f247912294b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "e93818974a453439cb956228709d25b0689899a2a96f00b01e69ca99e74f096a", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "ae17a783922532dfb3f5287f4079e3382037bf61753d1769671e179f48549b08", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "30bf83c398eb62ee797da047c62627aee31a8f1a4b7c65984ab4deb2127402d2", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "48e4507c8299849501700e9b3af23beffabbe5d4b1b5a105a2c89025db02b77a", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "368f04181427fdaeb4cfd36ee11b874a14011f236a3545ef1dbe273449eac13e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.9.0-SNAPSHOT-0000004583" + }, + "upgradable_to": [ + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.9.0-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.8.1-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.8.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/enterprise-search/enterprise-search:7.8.1", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.8.1-0" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "9c4d9fa7e0403cac7a5812accf1b2621c27469a20ece1baff71ccfbd65e735d1", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "44a664c2df3dbe310dd12bec3da35df238040c75aaa0e75c1e90f247912294b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "57587e89b876956e70aacd96220e123ed4c7959ffe61adf2c97eb2835ed610e4", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "f765f26a22942b38f113833d6e087b50b8cf97bd85deda66e920b2e98dd24f5f", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "30bf83c398eb62ee797da047c62627aee31a8f1a4b7c65984ab4deb2127402d2", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "0fcf488d84ae6e530a88aa23c622d7f6a2f8a3e9872dc10684f3447a5e769b46", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "835a7fd27605cebda8e077964b4daf76e54a457cf6a660a09aa686030f48f367", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.8.1-0000005575" + }, + "upgradable_to": [ + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.8.1", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.8.0-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.8.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/enterprise-search/enterprise-search:7.8.0", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.8.0-0" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "9c4d9fa7e0403cac7a5812accf1b2621c27469a20ece1baff71ccfbd65e735d1", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "44a664c2df3dbe310dd12bec3da35df238040c75aaa0e75c1e90f247912294b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "57587e89b876956e70aacd96220e123ed4c7959ffe61adf2c97eb2835ed610e4", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "f765f26a22942b38f113833d6e087b50b8cf97bd85deda66e920b2e98dd24f5f", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "30bf83c398eb62ee797da047c62627aee31a8f1a4b7c65984ab4deb2127402d2", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "0fcf488d84ae6e530a88aa23c622d7f6a2f8a3e9872dc10684f3447a5e769b46", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "835a7fd27605cebda8e077964b4daf76e54a457cf6a660a09aa686030f48f367", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.8.0-0000005574" + }, + "upgradable_to": [ + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.8.0", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.7.1-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.7.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/enterprise-search/enterprise-search:7.7.1", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.7.1-0" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "9c4d9fa7e0403cac7a5812accf1b2621c27469a20ece1baff71ccfbd65e735d1", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "44a664c2df3dbe310dd12bec3da35df238040c75aaa0e75c1e90f247912294b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "57587e89b876956e70aacd96220e123ed4c7959ffe61adf2c97eb2835ed610e4", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "f765f26a22942b38f113833d6e087b50b8cf97bd85deda66e920b2e98dd24f5f", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "30bf83c398eb62ee797da047c62627aee31a8f1a4b7c65984ab4deb2127402d2", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "0fcf488d84ae6e530a88aa23c622d7f6a2f8a3e9872dc10684f3447a5e769b46", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "835a7fd27605cebda8e077964b4daf76e54a457cf6a660a09aa686030f48f367", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.7.1-0000005573" + }, + "upgradable_to": [ + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.7.1", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.7.0-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.7.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "enterprise_search": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/enterprise-search/enterprise-search:7.7.0", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "connector" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker", + "connector" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver", + "worker" + ], + "description": "Connector node", + "mandatory": true, + "name": "Connector", + "node_type": "connector", + "settings": { + "instance_data": {} + } + } + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.7.0-0" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "9c4d9fa7e0403cac7a5812accf1b2621c27469a20ece1baff71ccfbd65e735d1", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "44a664c2df3dbe310dd12bec3da35df238040c75aaa0e75c1e90f247912294b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "57587e89b876956e70aacd96220e123ed4c7959ffe61adf2c97eb2835ed610e4", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "f765f26a22942b38f113833d6e087b50b8cf97bd85deda66e920b2e98dd24f5f", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "7ebd84e94d25ec4a751c62f6baed4449b549281639c3ac046c8ef0168e7f3e9d", + "path": "enterprise_search/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "enterprise_search/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "enterprise_search/bin/setuser" + }, + { + "hash": "30bf83c398eb62ee797da047c62627aee31a8f1a4b7c65984ab4deb2127402d2", + "path": "enterprise_search/config/enterprise_search.yml" + }, + { + "hash": "70794632be77639afdc8c0535871c52bd9cc7b72004bb4c7e34c096b4c13aee2", + "path": "enterprise_search/enterprise_search.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "0fcf488d84ae6e530a88aa23c622d7f6a2f8a3e9872dc10684f3447a5e769b46", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "835a7fd27605cebda8e077964b4daf76e54a457cf6a660a09aa686030f48f367", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76d97b1370a5035a58b6d8f481a092da4b95c8c7c9896bde24ebeba1103802f8", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.7.0-0000005572" + }, + "upgradable_to": [ + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.7.0", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.6.2-0" + }, + "appsearch": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/app-search/app-search:7.6.2", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + } + ] + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.6.2-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.6.2-1" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "9c4d9fa7e0403cac7a5812accf1b2621c27469a20ece1baff71ccfbd65e735d1", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "5b97b986015c734eb572ac1c532749148f474d35f3c6b73b32d67198c1a84490", + "path": "appsearch/appsearch.sh" + }, + { + "hash": "3be3b5837ede57ef4cf342e15203060e4e4e14abdb5eef06a566a3b0c3c31996", + "path": "appsearch/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "appsearch/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "appsearch/bin/setuser" + }, + { + "hash": "8b974bc18282285dca58cd00592041f75047e2b5f7cb3d2ab3a8d3f02aa20151", + "path": "appsearch/config/appsearch.yml" + }, + { + "hash": "b16dcde75a1738bdeadf9ee72c6de9b140ef9531f63bb4b236934355d215daa2", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "e0fe08bc638de951994907e50e2d613b4305b65e0b8f5b2d164352fee6c84a2e", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "3a5c40a69792a630d454f75da94aa7c3601fd0edc4f6871377e1c61a511eb778", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "e417fbbf3ee59a0086c9d18dec6f0374eac060bd5a8c66829766ef608081d093", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "4701f32f99a5129d680fffb023cbf045ae617b5c51ba93325749625a292b1965", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76c04b5135feee1d3dbcf3b1fb44a31e71c9656fac7f0e6934449df5ced1e738", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.6.2-0000005571" + }, + "upgradable_to": [ + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.6.2", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.6.1-0" + }, + "appsearch": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/app-search/app-search:7.6.1", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + } + ] + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.6.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.6.2-1" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "9c4d9fa7e0403cac7a5812accf1b2621c27469a20ece1baff71ccfbd65e735d1", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "5b97b986015c734eb572ac1c532749148f474d35f3c6b73b32d67198c1a84490", + "path": "appsearch/appsearch.sh" + }, + { + "hash": "3be3b5837ede57ef4cf342e15203060e4e4e14abdb5eef06a566a3b0c3c31996", + "path": "appsearch/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "appsearch/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "appsearch/bin/setuser" + }, + { + "hash": "8b974bc18282285dca58cd00592041f75047e2b5f7cb3d2ab3a8d3f02aa20151", + "path": "appsearch/config/appsearch.yml" + }, + { + "hash": "b16dcde75a1738bdeadf9ee72c6de9b140ef9531f63bb4b236934355d215daa2", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "e0fe08bc638de951994907e50e2d613b4305b65e0b8f5b2d164352fee6c84a2e", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "3a5c40a69792a630d454f75da94aa7c3601fd0edc4f6871377e1c61a511eb778", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "e417fbbf3ee59a0086c9d18dec6f0374eac060bd5a8c66829766ef608081d093", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "4701f32f99a5129d680fffb023cbf045ae617b5c51ba93325749625a292b1965", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76c04b5135feee1d3dbcf3b1fb44a31e71c9656fac7f0e6934449df5ced1e738", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.6.1-0000005570" + }, + "upgradable_to": [ + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.6.1", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.6.0-0" + }, + "appsearch": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/app-search/app-search:7.6.0", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + } + ] + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.6.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.6.2-1" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "9c4d9fa7e0403cac7a5812accf1b2621c27469a20ece1baff71ccfbd65e735d1", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "5b97b986015c734eb572ac1c532749148f474d35f3c6b73b32d67198c1a84490", + "path": "appsearch/appsearch.sh" + }, + { + "hash": "3be3b5837ede57ef4cf342e15203060e4e4e14abdb5eef06a566a3b0c3c31996", + "path": "appsearch/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "appsearch/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "appsearch/bin/setuser" + }, + { + "hash": "8b974bc18282285dca58cd00592041f75047e2b5f7cb3d2ab3a8d3f02aa20151", + "path": "appsearch/config/appsearch.yml" + }, + { + "hash": "b16dcde75a1738bdeadf9ee72c6de9b140ef9531f63bb4b236934355d215daa2", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "e0fe08bc638de951994907e50e2d613b4305b65e0b8f5b2d164352fee6c84a2e", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "3a5c40a69792a630d454f75da94aa7c3601fd0edc4f6871377e1c61a511eb778", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "e417fbbf3ee59a0086c9d18dec6f0374eac060bd5a8c66829766ef608081d093", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "4701f32f99a5129d680fffb023cbf045ae617b5c51ba93325749625a292b1965", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76c04b5135feee1d3dbcf3b1fb44a31e71c9656fac7f0e6934449df5ced1e738", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.6.0-0000005569" + }, + "upgradable_to": [ + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.6.0", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.5.2-0" + }, + "appsearch": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/app-search:7.5.2-0", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + } + ] + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.5.2-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.5.2-1" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "9c4d9fa7e0403cac7a5812accf1b2621c27469a20ece1baff71ccfbd65e735d1", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "53e8a3950a295cc3363814c6a48cfea19ad36abea9b0da9e96790e6e499dd930", + "path": "appsearch/appsearch.sh" + }, + { + "hash": "3be3b5837ede57ef4cf342e15203060e4e4e14abdb5eef06a566a3b0c3c31996", + "path": "appsearch/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "appsearch/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "appsearch/bin/setuser" + }, + { + "hash": "c5a54c5c8268c1dd11f430d7d216738767a8d58f347d731a9189ca9aac685c9c", + "path": "appsearch/config/appsearch.yml" + }, + { + "hash": "0bfbbd8483a6eade96fcd20b17df6812d90ef871e060ebb057deb18949313cb5", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "e0fe08bc638de951994907e50e2d613b4305b65e0b8f5b2d164352fee6c84a2e", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6f95083b50e0d3e6ae5de84a287bb7897918f4d2e7f2343bf80681a3f12c3196", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "8f7102de4f4b6a02e7a98d5e58093a2c0082b0838fe224c4e06ee15c7e08be07", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "a79373ddb5f7ca75d6b0599c929644903abaea4c414810def23307439ec42c71", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76c04b5135feee1d3dbcf3b1fb44a31e71c9656fac7f0e6934449df5ced1e738", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.5.2-0000005568" + }, + "upgradable_to": [ + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.5.2", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.5.1-0" + }, + "appsearch": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/app-search:7.5.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + } + ] + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.5.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.5.2-1" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "9c4d9fa7e0403cac7a5812accf1b2621c27469a20ece1baff71ccfbd65e735d1", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "53e8a3950a295cc3363814c6a48cfea19ad36abea9b0da9e96790e6e499dd930", + "path": "appsearch/appsearch.sh" + }, + { + "hash": "3be3b5837ede57ef4cf342e15203060e4e4e14abdb5eef06a566a3b0c3c31996", + "path": "appsearch/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "appsearch/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "appsearch/bin/setuser" + }, + { + "hash": "c5a54c5c8268c1dd11f430d7d216738767a8d58f347d731a9189ca9aac685c9c", + "path": "appsearch/config/appsearch.yml" + }, + { + "hash": "0bfbbd8483a6eade96fcd20b17df6812d90ef871e060ebb057deb18949313cb5", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "e0fe08bc638de951994907e50e2d613b4305b65e0b8f5b2d164352fee6c84a2e", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6f95083b50e0d3e6ae5de84a287bb7897918f4d2e7f2343bf80681a3f12c3196", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "8f7102de4f4b6a02e7a98d5e58093a2c0082b0838fe224c4e06ee15c7e08be07", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "a79373ddb5f7ca75d6b0599c929644903abaea4c414810def23307439ec42c71", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76c04b5135feee1d3dbcf3b1fb44a31e71c9656fac7f0e6934449df5ced1e738", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.5.1-0000005567" + }, + "upgradable_to": [ + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.5.1", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.5.0-0" + }, + "appsearch": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/app-search:7.5.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + } + ] + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.5.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.5.2-1" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "9c4d9fa7e0403cac7a5812accf1b2621c27469a20ece1baff71ccfbd65e735d1", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "53e8a3950a295cc3363814c6a48cfea19ad36abea9b0da9e96790e6e499dd930", + "path": "appsearch/appsearch.sh" + }, + { + "hash": "3be3b5837ede57ef4cf342e15203060e4e4e14abdb5eef06a566a3b0c3c31996", + "path": "appsearch/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "appsearch/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "appsearch/bin/setuser" + }, + { + "hash": "c5a54c5c8268c1dd11f430d7d216738767a8d58f347d731a9189ca9aac685c9c", + "path": "appsearch/config/appsearch.yml" + }, + { + "hash": "0bfbbd8483a6eade96fcd20b17df6812d90ef871e060ebb057deb18949313cb5", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "e0fe08bc638de951994907e50e2d613b4305b65e0b8f5b2d164352fee6c84a2e", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6f95083b50e0d3e6ae5de84a287bb7897918f4d2e7f2343bf80681a3f12c3196", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "8f7102de4f4b6a02e7a98d5e58093a2c0082b0838fe224c4e06ee15c7e08be07", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "a79373ddb5f7ca75d6b0599c929644903abaea4c414810def23307439ec42c71", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76c04b5135feee1d3dbcf3b1fb44a31e71c9656fac7f0e6934449df5ced1e738", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.5.0-0000005566" + }, + "upgradable_to": [ + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.5.0", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.4.2-0" + }, + "appsearch": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "null", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + } + ] + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.4.2-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.4.2-1" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "9c4d9fa7e0403cac7a5812accf1b2621c27469a20ece1baff71ccfbd65e735d1", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "53e8a3950a295cc3363814c6a48cfea19ad36abea9b0da9e96790e6e499dd930", + "path": "appsearch/appsearch.sh" + }, + { + "hash": "3be3b5837ede57ef4cf342e15203060e4e4e14abdb5eef06a566a3b0c3c31996", + "path": "appsearch/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "appsearch/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "appsearch/bin/setuser" + }, + { + "hash": "c5a54c5c8268c1dd11f430d7d216738767a8d58f347d731a9189ca9aac685c9c", + "path": "appsearch/config/appsearch.yml" + }, + { + "hash": "0bfbbd8483a6eade96fcd20b17df6812d90ef871e060ebb057deb18949313cb5", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "2b0750c3af91097236bdb810735bd81cd2a944539f215907d5ff832af623f7bd", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6f95083b50e0d3e6ae5de84a287bb7897918f4d2e7f2343bf80681a3f12c3196", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "8f7102de4f4b6a02e7a98d5e58093a2c0082b0838fe224c4e06ee15c7e08be07", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "a79373ddb5f7ca75d6b0599c929644903abaea4c414810def23307439ec42c71", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76c04b5135feee1d3dbcf3b1fb44a31e71c9656fac7f0e6934449df5ced1e738", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.4.2-0000005565" + }, + "upgradable_to": [ + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.4.2", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.4.1-1" + }, + "appsearch": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "null", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + } + ] + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.4.1-1", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.4.2-1" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "9c4d9fa7e0403cac7a5812accf1b2621c27469a20ece1baff71ccfbd65e735d1", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "53e8a3950a295cc3363814c6a48cfea19ad36abea9b0da9e96790e6e499dd930", + "path": "appsearch/appsearch.sh" + }, + { + "hash": "3be3b5837ede57ef4cf342e15203060e4e4e14abdb5eef06a566a3b0c3c31996", + "path": "appsearch/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "appsearch/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "appsearch/bin/setuser" + }, + { + "hash": "c5a54c5c8268c1dd11f430d7d216738767a8d58f347d731a9189ca9aac685c9c", + "path": "appsearch/config/appsearch.yml" + }, + { + "hash": "0bfbbd8483a6eade96fcd20b17df6812d90ef871e060ebb057deb18949313cb5", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "2b0750c3af91097236bdb810735bd81cd2a944539f215907d5ff832af623f7bd", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6f95083b50e0d3e6ae5de84a287bb7897918f4d2e7f2343bf80681a3f12c3196", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "8f7102de4f4b6a02e7a98d5e58093a2c0082b0838fe224c4e06ee15c7e08be07", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "a79373ddb5f7ca75d6b0599c929644903abaea4c414810def23307439ec42c71", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76c04b5135feee1d3dbcf3b1fb44a31e71c9656fac7f0e6934449df5ced1e738", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.4.1-0000005564" + }, + "upgradable_to": [ + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.4.1", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.4.0-0" + }, + "appsearch": { + "blacklist": [], + "compatible_node_types": null, + "docker_image": "null", + "node_types": [ + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "appserver" + ], + "description": "Worker node", + "mandatory": true, + "name": "Worker", + "node_type": "worker", + "settings": { + "instance_data": {} + } + }, + { + "capacity_constraints": { + "max": 8192, + "min": 2048 + }, + "compatible_node_types": [ + "worker" + ], + "description": "App-Server node", + "mandatory": true, + "name": "App-Server", + "node_type": "appserver", + "settings": { + "instance_data": {} + } + } + ] + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.4.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.4.2-1" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "65f7899ed4539a7f71cfd510c277e370090756a4aa52575a624608e7cff69de6", + "path": "apm/apm.sh" + }, + { + "hash": "9c4d9fa7e0403cac7a5812accf1b2621c27469a20ece1baff71ccfbd65e735d1", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "53e8a3950a295cc3363814c6a48cfea19ad36abea9b0da9e96790e6e499dd930", + "path": "appsearch/appsearch.sh" + }, + { + "hash": "3be3b5837ede57ef4cf342e15203060e4e4e14abdb5eef06a566a3b0c3c31996", + "path": "appsearch/bin/entry-point" + }, + { + "hash": "d6572cf18f2e6e3fd3d79e93054c36e370d6272e42d762b4ee3f3cf1ce03e158", + "path": "appsearch/bin/my_init" + }, + { + "hash": "8b992f97d414cd9e72b061c233eddaf0b39dbeeb978ffba4bba90ff9c8bd9fd4", + "path": "appsearch/bin/setuser" + }, + { + "hash": "c5a54c5c8268c1dd11f430d7d216738767a8d58f347d731a9189ca9aac685c9c", + "path": "appsearch/config/appsearch.yml" + }, + { + "hash": "0bfbbd8483a6eade96fcd20b17df6812d90ef871e060ebb057deb18949313cb5", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "2b0750c3af91097236bdb810735bd81cd2a944539f215907d5ff832af623f7bd", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6f95083b50e0d3e6ae5de84a287bb7897918f4d2e7f2343bf80681a3f12c3196", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "8f7102de4f4b6a02e7a98d5e58093a2c0082b0838fe224c4e06ee15c7e08be07", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "a79373ddb5f7ca75d6b0599c929644903abaea4c414810def23307439ec42c71", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "76c04b5135feee1d3dbcf3b1fb44a31e71c9656fac7f0e6934449df5ced1e738", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.4.0-0000005563" + }, + "upgradable_to": [ + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.4.0", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.3.2-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.3.2-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.3.2-1" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "6c61ad1400efc6618e00b9420c0b33abf1ed031e5b75b1c615aca08866c7880b", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "d55c62738908cfcd299c7b3c8bcaa14c09eaa139184654ba0677a98487daf338", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f853443f26f498718b7cb4d8912199358e77f5e475e9fe18c1b87de46c6410ff", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "a63a8bf1aec71a3786daf607c2a69783d3f93db0bbeb49af853aa60f30c3b6ff", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "aa71aae63f54b3a485f57c00db8d172c15a9c58a8b2dd3dca08ffab1aa4a6b7e", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "1eb65e7c641b597dc64228fd9002a8d1e5e4a17b7b48ff21ee8f0c1f4ef0848f", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "1eb65e7c641b597dc64228fd9002a8d1e5e4a17b7b48ff21ee8f0c1f4ef0848f", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.3.2-0000005562" + }, + "upgradable_to": [ + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.3.2", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.3.1-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.3.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.3.2-1" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "6c61ad1400efc6618e00b9420c0b33abf1ed031e5b75b1c615aca08866c7880b", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "d55c62738908cfcd299c7b3c8bcaa14c09eaa139184654ba0677a98487daf338", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f853443f26f498718b7cb4d8912199358e77f5e475e9fe18c1b87de46c6410ff", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "a63a8bf1aec71a3786daf607c2a69783d3f93db0bbeb49af853aa60f30c3b6ff", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "aa71aae63f54b3a485f57c00db8d172c15a9c58a8b2dd3dca08ffab1aa4a6b7e", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "1eb65e7c641b597dc64228fd9002a8d1e5e4a17b7b48ff21ee8f0c1f4ef0848f", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "1eb65e7c641b597dc64228fd9002a8d1e5e4a17b7b48ff21ee8f0c1f4ef0848f", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.3.1-0000005561" + }, + "upgradable_to": [ + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.3.1", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.3.0-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.3.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.3.2-1" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "6c61ad1400efc6618e00b9420c0b33abf1ed031e5b75b1c615aca08866c7880b", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "d55c62738908cfcd299c7b3c8bcaa14c09eaa139184654ba0677a98487daf338", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "1b2692a8a804c4f7b737320760e056d7c5a2663d81bc8798c4a9ab2950ee7828", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f853443f26f498718b7cb4d8912199358e77f5e475e9fe18c1b87de46c6410ff", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "a63a8bf1aec71a3786daf607c2a69783d3f93db0bbeb49af853aa60f30c3b6ff", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "aa71aae63f54b3a485f57c00db8d172c15a9c58a8b2dd3dca08ffab1aa4a6b7e", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "1eb65e7c641b597dc64228fd9002a8d1e5e4a17b7b48ff21ee8f0c1f4ef0848f", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "1eb65e7c641b597dc64228fd9002a8d1e5e4a17b7b48ff21ee8f0c1f4ef0848f", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.3.0-0000005560" + }, + "upgradable_to": [ + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.3.0", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.2.1-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.2.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.2.1-1" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "dfb2721e09528f3290bb3cf2359b537496bf0f9b1f0482c3ead64c8d362c67c9", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "78a35b3016e9d4e8454d45e3f24f9beda561d957800a0076a4af4571fe89b74d", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "04c68e25de48aa77974dcd11018a76f1503729526be9b92fc2e0075e872ab486", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "e0f7ba62edbf64046ae0a14d838f42930943ddf99332631db014d339dc5ff88b", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "aa71aae63f54b3a485f57c00db8d172c15a9c58a8b2dd3dca08ffab1aa4a6b7e", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "1eb65e7c641b597dc64228fd9002a8d1e5e4a17b7b48ff21ee8f0c1f4ef0848f", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "1eb65e7c641b597dc64228fd9002a8d1e5e4a17b7b48ff21ee8f0c1f4ef0848f", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.2.1-0000005559" + }, + "upgradable_to": [ + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.2.1", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.2.0-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.2.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.2.1-1" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "dfb2721e09528f3290bb3cf2359b537496bf0f9b1f0482c3ead64c8d362c67c9", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "78a35b3016e9d4e8454d45e3f24f9beda561d957800a0076a4af4571fe89b74d", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "04c68e25de48aa77974dcd11018a76f1503729526be9b92fc2e0075e872ab486", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "084e6b8988651b0bc49467fc26ed2fd80b50da09eb53abeb1438a8511caef54c", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "e0f7ba62edbf64046ae0a14d838f42930943ddf99332631db014d339dc5ff88b", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "6302e5943b61d2345e0739e8d14df97191973652d2a652b35d40f367f8ad63d1", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "aa71aae63f54b3a485f57c00db8d172c15a9c58a8b2dd3dca08ffab1aa4a6b7e", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "1eb65e7c641b597dc64228fd9002a8d1e5e4a17b7b48ff21ee8f0c1f4ef0848f", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "1eb65e7c641b597dc64228fd9002a8d1e5e4a17b7b48ff21ee8f0c1f4ef0848f", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.2.0-0000005558" + }, + "upgradable_to": [ + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.2.0", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.1.1-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.1.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.1.1-1" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "69e48a8a02d81ba7ce32021b79d11fefd8c37fa5230a99df1196580576be63b6", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "3934fbcf291e6dc713a970dbce45910c3e1f8d68445e8db7f9a0fbb09bf428cd", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "dc0a6ca51124753d873871c006ec6081853af3e3abf688675244823b4deebafa", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "763e0136c517ed5e28a54f5720ee3ce734d908d91b24e798b78a0dc309f99101", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "aa71aae63f54b3a485f57c00db8d172c15a9c58a8b2dd3dca08ffab1aa4a6b7e", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "d821ca163230218a3400a158a0e7d743e6ed90ba4acde38554beee9624f9837e", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "d821ca163230218a3400a158a0e7d743e6ed90ba4acde38554beee9624f9837e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.1.1-0000005555" + }, + "upgradable_to": [ + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.1.1", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.1.0-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.1.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.1.1-1" + }, + "metadata": {}, + "min_upgradable_from": "6.8.0", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "69e48a8a02d81ba7ce32021b79d11fefd8c37fa5230a99df1196580576be63b6", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "3934fbcf291e6dc713a970dbce45910c3e1f8d68445e8db7f9a0fbb09bf428cd", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "dc0a6ca51124753d873871c006ec6081853af3e3abf688675244823b4deebafa", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "763e0136c517ed5e28a54f5720ee3ce734d908d91b24e798b78a0dc309f99101", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "aa71aae63f54b3a485f57c00db8d172c15a9c58a8b2dd3dca08ffab1aa4a6b7e", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "d821ca163230218a3400a158a0e7d743e6ed90ba4acde38554beee9624f9837e", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "d821ca163230218a3400a158a0e7d743e6ed90ba4acde38554beee9624f9837e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.1.0-0000005551" + }, + "upgradable_to": [ + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.1.0", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.0.1-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.0.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.0.1-1" + }, + "metadata": {}, + "min_upgradable_from": "6.7.0", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "70de0c85dc52de0b8562fe8aa9ee14c91c1fa35817720365d7ea3732f52a4f84", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "69e48a8a02d81ba7ce32021b79d11fefd8c37fa5230a99df1196580576be63b6", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "65139ef561087d8d28c7b761499e03a1d95c9de94645aeeb79162d606adf956f", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "dc0a6ca51124753d873871c006ec6081853af3e3abf688675244823b4deebafa", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "763e0136c517ed5e28a54f5720ee3ce734d908d91b24e798b78a0dc309f99101", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "aa71aae63f54b3a485f57c00db8d172c15a9c58a8b2dd3dca08ffab1aa4a6b7e", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "d821ca163230218a3400a158a0e7d743e6ed90ba4acde38554beee9624f9837e", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "d821ca163230218a3400a158a0e7d743e6ed90ba4acde38554beee9624f9837e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.0.1-0000005550" + }, + "upgradable_to": [ + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.0.1", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:7.0.0-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:7.0.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:7.0.1-1" + }, + "metadata": {}, + "min_upgradable_from": "6.7.0", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "70de0c85dc52de0b8562fe8aa9ee14c91c1fa35817720365d7ea3732f52a4f84", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "69e48a8a02d81ba7ce32021b79d11fefd8c37fa5230a99df1196580576be63b6", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "65139ef561087d8d28c7b761499e03a1d95c9de94645aeeb79162d606adf956f", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "dc0a6ca51124753d873871c006ec6081853af3e3abf688675244823b4deebafa", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "763e0136c517ed5e28a54f5720ee3ce734d908d91b24e798b78a0dc309f99101", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "aa71aae63f54b3a485f57c00db8d172c15a9c58a8b2dd3dca08ffab1aa4a6b7e", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "d821ca163230218a3400a158a0e7d743e6ed90ba4acde38554beee9624f9837e", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "d821ca163230218a3400a158a0e7d743e6ed90ba4acde38554beee9624f9837e", + "path": "kibana/config/kibana.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "7.0.0-0000005549" + }, + "upgradable_to": [ + "7.0.1", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "7.0.0", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.8.17-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.8.17-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.8.17-0" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6829f09a540965489d08d889338a0fa15d2b789f263b44e60dc52219a0f0f0a9", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.17-0000006142" + }, + "upgradable_to": [ + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.17", + "whitelisted": true + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:6.8.17-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:6.8.17-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:6.8.17-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6829f09a540965489d08d889338a0fa15d2b789f263b44e60dc52219a0f0f0a9", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.17-SNAPSHOT-0000006137" + }, + "upgradable_to": [ + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.17-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.8.16-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.8.16-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.8.16-0" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6829f09a540965489d08d889338a0fa15d2b789f263b44e60dc52219a0f0f0a9", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.16-0000005969" + }, + "upgradable_to": [ + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.16", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:6.8.16-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:6.8.16-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:6.8.16-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6829f09a540965489d08d889338a0fa15d2b789f263b44e60dc52219a0f0f0a9", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.16-SNAPSHOT-0000005956" + }, + "upgradable_to": [ + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.16-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.8.15-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.8.15-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.8.15-0" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6829f09a540965489d08d889338a0fa15d2b789f263b44e60dc52219a0f0f0a9", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.15-0000005653" + }, + "upgradable_to": [ + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.15", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:6.8.15-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:6.8.15-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:6.8.15-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6829f09a540965489d08d889338a0fa15d2b789f263b44e60dc52219a0f0f0a9", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.15-SNAPSHOT-0000005649" + }, + "upgradable_to": [ + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.15-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.8.14-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.8.14-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.8.14-0" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6829f09a540965489d08d889338a0fa15d2b789f263b44e60dc52219a0f0f0a9", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.14-0000005540" + }, + "upgradable_to": [ + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.14", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:6.8.14-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:6.8.14-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:6.8.14-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "b59117f521fb8c32dd19591a2151a14304ee26124ef4ce50f63286b4cb10f607", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.14-SNAPSHOT-0000005277" + }, + "upgradable_to": [ + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.14-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.8.13-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.8.13-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.8.13-0" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6829f09a540965489d08d889338a0fa15d2b789f263b44e60dc52219a0f0f0a9", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.13-0000005539" + }, + "upgradable_to": [ + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.13", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:6.8.13-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:6.8.13-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:6.8.13-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "321e62f51f8719fad311649f6ace2b3b7ee90490623503dfeb08f03b8a485e30", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.8.13-SNAPSHOT-0000004861" + }, + "upgradable_to": [ + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.13-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.8.12-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.8.12-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.8.12-0" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6829f09a540965489d08d889338a0fa15d2b789f263b44e60dc52219a0f0f0a9", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.12-0000005538" + }, + "upgradable_to": [ + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.12", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/apm:6.8.12-SNAPSHOT" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-ci/elasticsearch:6.8.12-SNAPSHOT", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-ci/kibana:6.8.12-SNAPSHOT" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "5286b4531e4a719a62d77eb275f417cce177e26f12aa70c023242c4887906232", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.8.12-SNAPSHOT-0000004582" + }, + "upgradable_to": [ + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.12-SNAPSHOT", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.8.11-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.8.11-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.8.11-0" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6829f09a540965489d08d889338a0fa15d2b789f263b44e60dc52219a0f0f0a9", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.11-0000005537" + }, + "upgradable_to": [ + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.11", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.8.10-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.8.10-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.8.10-0" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6829f09a540965489d08d889338a0fa15d2b789f263b44e60dc52219a0f0f0a9", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.10-0000005536" + }, + "upgradable_to": [ + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.10", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.8.9-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.8.9-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.8.9-0" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6829f09a540965489d08d889338a0fa15d2b789f263b44e60dc52219a0f0f0a9", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.9-0000005548" + }, + "upgradable_to": [ + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.9", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.8.8-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.8.8-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.8.9-0" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6829f09a540965489d08d889338a0fa15d2b789f263b44e60dc52219a0f0f0a9", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.8-0000005547" + }, + "upgradable_to": [ + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.8", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.8.7-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.8.7-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.8.9-0" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6829f09a540965489d08d889338a0fa15d2b789f263b44e60dc52219a0f0f0a9", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.7-0000005546" + }, + "upgradable_to": [ + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.7", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.8.6-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.8.6-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.8.9-0" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6829f09a540965489d08d889338a0fa15d2b789f263b44e60dc52219a0f0f0a9", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.6-0000005545" + }, + "upgradable_to": [ + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.6", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.8.5-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.8.5-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.8.9-0" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6829f09a540965489d08d889338a0fa15d2b789f263b44e60dc52219a0f0f0a9", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.5-0000005544" + }, + "upgradable_to": [ + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.5", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.8.4-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.8.4-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.8.9-0" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6829f09a540965489d08d889338a0fa15d2b789f263b44e60dc52219a0f0f0a9", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.4-0000005543" + }, + "upgradable_to": [ + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.4", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.8.3-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.8.3-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.8.9-0" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6829f09a540965489d08d889338a0fa15d2b789f263b44e60dc52219a0f0f0a9", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.3-0000005542" + }, + "upgradable_to": [ + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.3", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.8.2-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.8.2-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.8.9-0" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6829f09a540965489d08d889338a0fa15d2b789f263b44e60dc52219a0f0f0a9", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.2-0000005541" + }, + "upgradable_to": [ + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.2", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.8.1-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.8.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.8.9-0" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6829f09a540965489d08d889338a0fa15d2b789f263b44e60dc52219a0f0f0a9", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.1-0000005535" + }, + "upgradable_to": [ + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.1", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.8.0-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.8.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.8.9-0" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "3d8c3f232426cec6cb1d63ec0ae2b2786e514de326e3b636bebb169243338e9a", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "7d421f00a4a4ce7849107bf018a77c0fe57d38dd76b9e731a1b1c6908032cdf8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "6829f09a540965489d08d889338a0fa15d2b789f263b44e60dc52219a0f0f0a9", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "a195b2df3d5bf247edf844bdaad59fd9421a7992f96be8c3acd383f02e1534c6", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "d373a082c6be6a4fecb26e7ef4c6d291b5adbb66ecae6b82228b936d291b11af", + "path": "filebeat/configs/apm.yml" + }, + { + "hash": "7453fa71bb20f0a69b9d3a1fe511a3569c1ca37164d6160f90ba71cec08ea7fe", + "path": "filebeat/configs/enterprise_search.yml" + }, + { + "hash": "8e458406fd9a11fd5098b7a8b7e1e2860c81bd14b5fc64bdf89965ce4cd9e6e8", + "path": "filebeat/etc/my_init.d/filebeat.sh" + }, + { + "hash": "ac604ac89b51b5d6022169ea9babc79cd4b2e71bf32e5740eeedf2e9e6e0d36d", + "path": "filebeat/filebeat-template-6.json" + }, + { + "hash": "11dfe69018d9e797e1d4088ebd665779ceb9f461efb8a41a1cd8351c99a07b19", + "path": "filebeat/filebeat-template-7.json" + }, + { + "hash": "4186ffb39a925e7f3699f3132815f5d11326d736d2a8eaeff20e8c37494f86a0", + "path": "filebeat/filebeat.sh" + }, + { + "hash": "b559911cea84f52d580c43373adc453af843cccbb918e07f911bfab0d621ea66", + "path": "filebeat/filebeat.yml" + }, + { + "hash": "71ab8254a66703de3dd3ceb6d7fded3d7b43296270018f48474c3c4f9ea1fa65", + "path": "filebeat/modules.d/elasticsearch.yml" + }, + { + "hash": "d25673ea34b1b17031429c04935dc1c48c787140846a6cf05e3e27626c71c9bb", + "path": "filebeat/modules.d/kibana.yml" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "847c77abab870998d0e3e92b8e73e6d617251b557364aba4eef0c20141b1d6b4", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f598742a71036cd6e9f81ff762b2ad63e096c339e5ba069bdfe5d36062419645", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + }, + { + "hash": "01302d4e041195fa30bb066b89d3cec949acf24ebf7f5f657bc5451604c1a263", + "path": "metricbeat/etc/my_init.d/metricbeat.sh" + } + ], + "template_version": "6.8.0-0000005534" + }, + "upgradable_to": [ + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.1.0", + "7.1.1", + "7.2.0", + "7.2.1", + "7.3.0", + "7.3.1", + "7.3.2", + "7.4.0", + "7.4.1", + "7.4.2", + "7.5.0", + "7.5.1", + "7.5.2", + "7.6.0", + "7.6.1", + "7.6.2", + "7.7.0", + "7.7.1", + "7.8.0", + "7.8.1", + "7.9.0-SNAPSHOT", + "7.9.0", + "7.9.1-SNAPSHOT", + "7.9.1", + "7.9.2-SNAPSHOT", + "7.9.2", + "7.9.3-SNAPSHOT", + "7.9.3", + "7.9.4-SNAPSHOT", + "7.10.0-SNAPSHOT", + "7.10.0", + "7.10.1-SNAPSHOT", + "7.10.1", + "7.10.2-SNAPSHOT", + "7.10.2", + "7.10.3-SNAPSHOT", + "7.11.0-SNAPSHOT", + "7.11.0", + "7.11.1-SNAPSHOT", + "7.11.1", + "7.11.2-SNAPSHOT", + "7.11.2", + "7.11.3-SNAPSHOT", + "7.12.0-SNAPSHOT", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson", + "7.12.0-SNAPSHOT-custom-metricbeat-snelson-2", + "7.12.0", + "7.12.1-SNAPSHOT", + "7.12.1", + "7.12.2-SNAPSHOT", + "7.13.0-SNAPSHOT", + "7.13.0", + "7.13.1-SNAPSHOT", + "7.13.1", + "7.13.2-SNAPSHOT", + "7.13.2", + "7.13.3-SNAPSHOT", + "7.13.3", + "7.13.4-SNAPSHOT", + "7.14.0-SNAPSHOT", + "7.14.0" + ], + "version": "6.8.0", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.7.2-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.7.2-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.7.2-1" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "70de0c85dc52de0b8562fe8aa9ee14c91c1fa35817720365d7ea3732f52a4f84", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "a34d002af5d6244117ed84a975560358cd65cf36b4d6778460f7e29ad9f705e8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "70fa3f70d7a118d7a61d0a143e9dbe43b0dcf6b17ba65eb33f9e6404f2ee49d3", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "763e0136c517ed5e28a54f5720ee3ce734d908d91b24e798b78a0dc309f99101", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "aa71aae63f54b3a485f57c00db8d172c15a9c58a8b2dd3dca08ffab1aa4a6b7e", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "d821ca163230218a3400a158a0e7d743e6ed90ba4acde38554beee9624f9837e", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.7.2-0000005533" + }, + "upgradable_to": [ + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.0.0", + "7.0.1" + ], + "version": "6.7.2", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.7.1-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.7.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.7.2-1" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "70de0c85dc52de0b8562fe8aa9ee14c91c1fa35817720365d7ea3732f52a4f84", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "a34d002af5d6244117ed84a975560358cd65cf36b4d6778460f7e29ad9f705e8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "70fa3f70d7a118d7a61d0a143e9dbe43b0dcf6b17ba65eb33f9e6404f2ee49d3", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "763e0136c517ed5e28a54f5720ee3ce734d908d91b24e798b78a0dc309f99101", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "aa71aae63f54b3a485f57c00db8d172c15a9c58a8b2dd3dca08ffab1aa4a6b7e", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "d821ca163230218a3400a158a0e7d743e6ed90ba4acde38554beee9624f9837e", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.7.1-0000005532" + }, + "upgradable_to": [ + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.0.0", + "7.0.1" + ], + "version": "6.7.1", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.7.0-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.7.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.7.2-1" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "b4fed89cb3ca2c3d5c62d43363e892e63225fbea3e9a1580de96e76ecedfdf28", + "path": "apm/apm.sh" + }, + { + "hash": "70de0c85dc52de0b8562fe8aa9ee14c91c1fa35817720365d7ea3732f52a4f84", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "aab0755fbde9f77a5bb9a61e0ca44a3b0add8e83096dd394ea9c30bcb506e3da", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "98210db475bd03caf43f970335c0f142643e86b3d76e63e7e5c3dc0eed76fae8", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "a34d002af5d6244117ed84a975560358cd65cf36b4d6778460f7e29ad9f705e8", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "49c72f59098cc1c8d5563e3b7bbc42e904effa7d4e77a963928a294bae15b299", + "path": "elasticsearch/config/wipe-instance-state.yml" + }, + { + "hash": "70fa3f70d7a118d7a61d0a143e9dbe43b0dcf6b17ba65eb33f9e6404f2ee49d3", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "763e0136c517ed5e28a54f5720ee3ce734d908d91b24e798b78a0dc309f99101", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "aa71aae63f54b3a485f57c00db8d172c15a9c58a8b2dd3dca08ffab1aa4a6b7e", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "d821ca163230218a3400a158a0e7d743e6ed90ba4acde38554beee9624f9837e", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.7.0-0000005531" + }, + "upgradable_to": [ + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17", + "7.0.0", + "7.0.1" + ], + "version": "6.7.0", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.6.2-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.6.2-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.6.2-1" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "c8505b1cfef62a2ae6be04b1bb8c43a59da2bf9a45936b4efa493c76d04dcb1a", + "path": "apm/apm.sh" + }, + { + "hash": "97e5e9349475dba6af424ae59edc786533ffeaabffb103070c1df84df7e40a1e", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "d14bd052f20f42e732ea4a7d36440ce5d4fb245b130f4c9f85124ee9b6a4b1c3", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "0fdd6896098a7421926356e0bc8c19f72e4ebb51d7db4d826a14844ac7d1caee", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "03cf89e2460ee363f96fa327a1e7ed55d8b285e7f2760ffd7ce0551bdb3f3f95", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "b35b9046ccc6a86337f90675c4d83e52f081e2bff97b290c760e235a39e994ea", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "231d2adc7d3ca73082ce73a43d447fe456ac48db7db6bac001110f1a4d863ae5", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.6.2-0000005530" + }, + "upgradable_to": [ + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.6.2", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.6.1-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.6.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.6.2-1" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "c8505b1cfef62a2ae6be04b1bb8c43a59da2bf9a45936b4efa493c76d04dcb1a", + "path": "apm/apm.sh" + }, + { + "hash": "97e5e9349475dba6af424ae59edc786533ffeaabffb103070c1df84df7e40a1e", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "d14bd052f20f42e732ea4a7d36440ce5d4fb245b130f4c9f85124ee9b6a4b1c3", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "0fdd6896098a7421926356e0bc8c19f72e4ebb51d7db4d826a14844ac7d1caee", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "03cf89e2460ee363f96fa327a1e7ed55d8b285e7f2760ffd7ce0551bdb3f3f95", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "b35b9046ccc6a86337f90675c4d83e52f081e2bff97b290c760e235a39e994ea", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "231d2adc7d3ca73082ce73a43d447fe456ac48db7db6bac001110f1a4d863ae5", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.6.1-0000005529" + }, + "upgradable_to": [ + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.6.1", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.6.0-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.enabled", + "xpack.ilm.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.6.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.ccr.ui.enabled", + "xpack.ilm.filteredNodeAttributes", + "xpack.ilm.ui.enabled", + "xpack.remote_clusters.ui.enabled", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.6.2-1" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "c8505b1cfef62a2ae6be04b1bb8c43a59da2bf9a45936b4efa493c76d04dcb1a", + "path": "apm/apm.sh" + }, + { + "hash": "97e5e9349475dba6af424ae59edc786533ffeaabffb103070c1df84df7e40a1e", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "d14bd052f20f42e732ea4a7d36440ce5d4fb245b130f4c9f85124ee9b6a4b1c3", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "0fdd6896098a7421926356e0bc8c19f72e4ebb51d7db4d826a14844ac7d1caee", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "03cf89e2460ee363f96fa327a1e7ed55d8b285e7f2760ffd7ce0551bdb3f3f95", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "b35b9046ccc6a86337f90675c4d83e52f081e2bff97b290c760e235a39e994ea", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "231d2adc7d3ca73082ce73a43d447fe456ac48db7db6bac001110f1a4d863ae5", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.6.0-0000005528" + }, + "upgradable_to": [ + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.6.0", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.5.4-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.5.4-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.5.4-2" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "c8505b1cfef62a2ae6be04b1bb8c43a59da2bf9a45936b4efa493c76d04dcb1a", + "path": "apm/apm.sh" + }, + { + "hash": "147f710722f39e65d8730ca16bbe2af1014d52cd74bbb0f9579a9b2455905c05", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "975165adc0ebc47c55b3424ce48bdd99631665a78338a98f70474055f3bb24aa", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "0fdd6896098a7421926356e0bc8c19f72e4ebb51d7db4d826a14844ac7d1caee", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "03cf89e2460ee363f96fa327a1e7ed55d8b285e7f2760ffd7ce0551bdb3f3f95", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "eac269d9a07ed148d90402dbcb20877073521ef3a83a6b55b88a3489d042eff2", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f66a7078b0ae234f91ca2758932797d5216655ce55fec495a740277781a14a21", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.5.4-0000005527" + }, + "upgradable_to": [ + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.5.4", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.5.3-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.5.3-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.5.4-2" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "c8505b1cfef62a2ae6be04b1bb8c43a59da2bf9a45936b4efa493c76d04dcb1a", + "path": "apm/apm.sh" + }, + { + "hash": "147f710722f39e65d8730ca16bbe2af1014d52cd74bbb0f9579a9b2455905c05", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "975165adc0ebc47c55b3424ce48bdd99631665a78338a98f70474055f3bb24aa", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "0fdd6896098a7421926356e0bc8c19f72e4ebb51d7db4d826a14844ac7d1caee", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "03cf89e2460ee363f96fa327a1e7ed55d8b285e7f2760ffd7ce0551bdb3f3f95", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "eac269d9a07ed148d90402dbcb20877073521ef3a83a6b55b88a3489d042eff2", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f66a7078b0ae234f91ca2758932797d5216655ce55fec495a740277781a14a21", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.5.3-0000005526" + }, + "upgradable_to": [ + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.5.3", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.5.2-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.5.2-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.5.4-2" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "c8505b1cfef62a2ae6be04b1bb8c43a59da2bf9a45936b4efa493c76d04dcb1a", + "path": "apm/apm.sh" + }, + { + "hash": "147f710722f39e65d8730ca16bbe2af1014d52cd74bbb0f9579a9b2455905c05", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "975165adc0ebc47c55b3424ce48bdd99631665a78338a98f70474055f3bb24aa", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "0fdd6896098a7421926356e0bc8c19f72e4ebb51d7db4d826a14844ac7d1caee", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "03cf89e2460ee363f96fa327a1e7ed55d8b285e7f2760ffd7ce0551bdb3f3f95", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "eac269d9a07ed148d90402dbcb20877073521ef3a83a6b55b88a3489d042eff2", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f66a7078b0ae234f91ca2758932797d5216655ce55fec495a740277781a14a21", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.5.2-0000005525" + }, + "upgradable_to": [ + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.5.2", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.5.1-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.5.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.5.4-2" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "c8505b1cfef62a2ae6be04b1bb8c43a59da2bf9a45936b4efa493c76d04dcb1a", + "path": "apm/apm.sh" + }, + { + "hash": "147f710722f39e65d8730ca16bbe2af1014d52cd74bbb0f9579a9b2455905c05", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "975165adc0ebc47c55b3424ce48bdd99631665a78338a98f70474055f3bb24aa", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "0fdd6896098a7421926356e0bc8c19f72e4ebb51d7db4d826a14844ac7d1caee", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "03cf89e2460ee363f96fa327a1e7ed55d8b285e7f2760ffd7ce0551bdb3f3f95", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "eac269d9a07ed148d90402dbcb20877073521ef3a83a6b55b88a3489d042eff2", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f66a7078b0ae234f91ca2758932797d5216655ce55fec495a740277781a14a21", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.5.1-0000005524" + }, + "upgradable_to": [ + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.5.1", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.5.0-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.5.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-nori", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-annotated-text", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.5.4-2" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "c8505b1cfef62a2ae6be04b1bb8c43a59da2bf9a45936b4efa493c76d04dcb1a", + "path": "apm/apm.sh" + }, + { + "hash": "147f710722f39e65d8730ca16bbe2af1014d52cd74bbb0f9579a9b2455905c05", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "975165adc0ebc47c55b3424ce48bdd99631665a78338a98f70474055f3bb24aa", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "0fdd6896098a7421926356e0bc8c19f72e4ebb51d7db4d826a14844ac7d1caee", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "03cf89e2460ee363f96fa327a1e7ed55d8b285e7f2760ffd7ce0551bdb3f3f95", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "eac269d9a07ed148d90402dbcb20877073521ef3a83a6b55b88a3489d042eff2", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "f66a7078b0ae234f91ca2758932797d5216655ce55fec495a740277781a14a21", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.5.0-0000005523" + }, + "upgradable_to": [ + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.5.0", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.4.3-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "discovery-file" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.4.3-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-nori", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.4.3-2" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "c8505b1cfef62a2ae6be04b1bb8c43a59da2bf9a45936b4efa493c76d04dcb1a", + "path": "apm/apm.sh" + }, + { + "hash": "147f710722f39e65d8730ca16bbe2af1014d52cd74bbb0f9579a9b2455905c05", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "37cc7cb95ed81c0da15821f164710166c6860bc486e507c91d173f4c775424b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f7484a5e586021a3f24c715d60f2a822081af491f2de207acd2884231e88b34c", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "03cf89e2460ee363f96fa327a1e7ed55d8b285e7f2760ffd7ce0551bdb3f3f95", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "c6760647de9a0218ed39034d4757541d8df6d7376a045edf79490db08735a19a", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "259863e4aa53b2caa3155bd3df9d01654b5c075c997b7dfa54b29aa6724b6191", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.4.3-0000005522" + }, + "upgradable_to": [ + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.4.3", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.4.2-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "discovery-file" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.4.2-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-nori", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.4.3-2" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "c8505b1cfef62a2ae6be04b1bb8c43a59da2bf9a45936b4efa493c76d04dcb1a", + "path": "apm/apm.sh" + }, + { + "hash": "147f710722f39e65d8730ca16bbe2af1014d52cd74bbb0f9579a9b2455905c05", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "37cc7cb95ed81c0da15821f164710166c6860bc486e507c91d173f4c775424b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f7484a5e586021a3f24c715d60f2a822081af491f2de207acd2884231e88b34c", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "03cf89e2460ee363f96fa327a1e7ed55d8b285e7f2760ffd7ce0551bdb3f3f95", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "c6760647de9a0218ed39034d4757541d8df6d7376a045edf79490db08735a19a", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "259863e4aa53b2caa3155bd3df9d01654b5c075c997b7dfa54b29aa6724b6191", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.4.2-0000005521" + }, + "upgradable_to": [ + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.4.2", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.4.1-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "discovery-file" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.4.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-nori", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.4.3-2" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "c8505b1cfef62a2ae6be04b1bb8c43a59da2bf9a45936b4efa493c76d04dcb1a", + "path": "apm/apm.sh" + }, + { + "hash": "147f710722f39e65d8730ca16bbe2af1014d52cd74bbb0f9579a9b2455905c05", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "37cc7cb95ed81c0da15821f164710166c6860bc486e507c91d173f4c775424b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f7484a5e586021a3f24c715d60f2a822081af491f2de207acd2884231e88b34c", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "03cf89e2460ee363f96fa327a1e7ed55d8b285e7f2760ffd7ce0551bdb3f3f95", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "c6760647de9a0218ed39034d4757541d8df6d7376a045edf79490db08735a19a", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "259863e4aa53b2caa3155bd3df9d01654b5c075c997b7dfa54b29aa6724b6191", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.4.1-0000005520" + }, + "upgradable_to": [ + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.4.1", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.4.0-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "discovery-file" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.4.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-nori", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.4.3-2" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "c8505b1cfef62a2ae6be04b1bb8c43a59da2bf9a45936b4efa493c76d04dcb1a", + "path": "apm/apm.sh" + }, + { + "hash": "147f710722f39e65d8730ca16bbe2af1014d52cd74bbb0f9579a9b2455905c05", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "37cc7cb95ed81c0da15821f164710166c6860bc486e507c91d173f4c775424b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f7484a5e586021a3f24c715d60f2a822081af491f2de207acd2884231e88b34c", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "03cf89e2460ee363f96fa327a1e7ed55d8b285e7f2760ffd7ce0551bdb3f3f95", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "c6760647de9a0218ed39034d4757541d8df6d7376a045edf79490db08735a19a", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "259863e4aa53b2caa3155bd3df9d01654b5c075c997b7dfa54b29aa6724b6191", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.4.0-0000005519" + }, + "upgradable_to": [ + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.4.0", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.3.2-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "discovery-file" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.3.2-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.3.2-4" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "c8505b1cfef62a2ae6be04b1bb8c43a59da2bf9a45936b4efa493c76d04dcb1a", + "path": "apm/apm.sh" + }, + { + "hash": "147f710722f39e65d8730ca16bbe2af1014d52cd74bbb0f9579a9b2455905c05", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "37cc7cb95ed81c0da15821f164710166c6860bc486e507c91d173f4c775424b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "764f10ce4a43495a2d6123813ba28371a19fe519e4a74a96be037a6d4df5d2b2", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "7bec1bb5d4122403a6afdfacfcd63e177175d8c769896a11fe1d558a26dd6b13", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "c6760647de9a0218ed39034d4757541d8df6d7376a045edf79490db08735a19a", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "259863e4aa53b2caa3155bd3df9d01654b5c075c997b7dfa54b29aa6724b6191", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.3.2-0000005518" + }, + "upgradable_to": [ + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.3.2", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.3.1-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "discovery-file" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.3.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.3.2-4" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "c8505b1cfef62a2ae6be04b1bb8c43a59da2bf9a45936b4efa493c76d04dcb1a", + "path": "apm/apm.sh" + }, + { + "hash": "147f710722f39e65d8730ca16bbe2af1014d52cd74bbb0f9579a9b2455905c05", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "37cc7cb95ed81c0da15821f164710166c6860bc486e507c91d173f4c775424b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "764f10ce4a43495a2d6123813ba28371a19fe519e4a74a96be037a6d4df5d2b2", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "7bec1bb5d4122403a6afdfacfcd63e177175d8c769896a11fe1d558a26dd6b13", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "c6760647de9a0218ed39034d4757541d8df6d7376a045edf79490db08735a19a", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "259863e4aa53b2caa3155bd3df9d01654b5c075c997b7dfa54b29aa6724b6191", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.3.1-0000005517" + }, + "upgradable_to": [ + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.3.1", + "whitelisted": false + }, + { + "accessible": true, + "apm": { + "blacklist": [], + "capacity_constraints": { + "max": 8192, + "min": 512 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/apm:6.3.0-0" + }, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "discovery-file" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.3.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [], + "description": "Machine Learning", + "name": "Machine Learning", + "node_type": "ml", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ml": true + }, + "xpack": { + "ml": { + "enabled": true + } + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.3.2-4" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "c8505b1cfef62a2ae6be04b1bb8c43a59da2bf9a45936b4efa493c76d04dcb1a", + "path": "apm/apm.sh" + }, + { + "hash": "147f710722f39e65d8730ca16bbe2af1014d52cd74bbb0f9579a9b2455905c05", + "path": "apm/config/apm-server.yml" + }, + { + "hash": "37cc7cb95ed81c0da15821f164710166c6860bc486e507c91d173f4c775424b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "764f10ce4a43495a2d6123813ba28371a19fe519e4a74a96be037a6d4df5d2b2", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "7bec1bb5d4122403a6afdfacfcd63e177175d8c769896a11fe1d558a26dd6b13", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "a45ac3ae9b32e2792d44a721fc82b5c94406ec54084f4a3ae4073e971448a932", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "c6760647de9a0218ed39034d4757541d8df6d7376a045edf79490db08735a19a", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "259863e4aa53b2caa3155bd3df9d01654b5c075c997b7dfa54b29aa6724b6191", + "path": "kibana/config/kibana-7.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.3.0-0000005516" + }, + "upgradable_to": [ + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.3.0", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack", + "discovery-file" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.2.4-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.2.4-4" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "37cc7cb95ed81c0da15821f164710166c6860bc486e507c91d173f4c775424b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "42d9167baee0df7cf4f2b477f6202ad814d322fd32d18c0300026b21487fa1e3", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "2af24eb7f3bd32dc1f779c33172add8249e7d096048ce49eed54e1fad786a004", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "1787cf238b3a3cad11703739d6650a7c7d3f3daeabf4a7b206a89b0847e3b2de", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "0f78098889e9d93eea9ed08d247c258203bc422c0d0a3dc0a9db0366ca3f916f", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.2.4-0000005515" + }, + "upgradable_to": [ + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.2.4", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack", + "discovery-file" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.2.3-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.2.4-4" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "37cc7cb95ed81c0da15821f164710166c6860bc486e507c91d173f4c775424b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "42d9167baee0df7cf4f2b477f6202ad814d322fd32d18c0300026b21487fa1e3", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "2af24eb7f3bd32dc1f779c33172add8249e7d096048ce49eed54e1fad786a004", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "1787cf238b3a3cad11703739d6650a7c7d3f3daeabf4a7b206a89b0847e3b2de", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "0f78098889e9d93eea9ed08d247c258203bc422c0d0a3dc0a9db0366ca3f916f", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.2.3-0000005514" + }, + "upgradable_to": [ + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.2.3", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack", + "discovery-file" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.1.4-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.1.4-4" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "37cc7cb95ed81c0da15821f164710166c6860bc486e507c91d173f4c775424b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "42d9167baee0df7cf4f2b477f6202ad814d322fd32d18c0300026b21487fa1e3", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "a282846b5ed7f2cacaf3703c202728eb24dbe37c58e850c5884d63c7608368a5", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "1787cf238b3a3cad11703739d6650a7c7d3f3daeabf4a7b206a89b0847e3b2de", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "0f78098889e9d93eea9ed08d247c258203bc422c0d0a3dc0a9db0366ca3f916f", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.1.4-0000004131" + }, + "upgradable_to": [ + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.1.4", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack", + "discovery-file" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.1.3-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.1.4-4" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "37cc7cb95ed81c0da15821f164710166c6860bc486e507c91d173f4c775424b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "42d9167baee0df7cf4f2b477f6202ad814d322fd32d18c0300026b21487fa1e3", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "a282846b5ed7f2cacaf3703c202728eb24dbe37c58e850c5884d63c7608368a5", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "1787cf238b3a3cad11703739d6650a7c7d3f3daeabf4a7b206a89b0847e3b2de", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "0f78098889e9d93eea9ed08d247c258203bc422c0d0a3dc0a9db0366ca3f916f", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.1.3-0000004130" + }, + "upgradable_to": [ + "6.1.4", + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.1.3", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack", + "discovery-file" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.1.2-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.1.4-4" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "37cc7cb95ed81c0da15821f164710166c6860bc486e507c91d173f4c775424b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "42d9167baee0df7cf4f2b477f6202ad814d322fd32d18c0300026b21487fa1e3", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "a282846b5ed7f2cacaf3703c202728eb24dbe37c58e850c5884d63c7608368a5", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "1787cf238b3a3cad11703739d6650a7c7d3f3daeabf4a7b206a89b0847e3b2de", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "0f78098889e9d93eea9ed08d247c258203bc422c0d0a3dc0a9db0366ca3f916f", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.1.2-0000004129" + }, + "upgradable_to": [ + "6.1.3", + "6.1.4", + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.1.2", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack", + "discovery-file" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.1.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.1.4-4" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "37cc7cb95ed81c0da15821f164710166c6860bc486e507c91d173f4c775424b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "42d9167baee0df7cf4f2b477f6202ad814d322fd32d18c0300026b21487fa1e3", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "a282846b5ed7f2cacaf3703c202728eb24dbe37c58e850c5884d63c7608368a5", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "1787cf238b3a3cad11703739d6650a7c7d3f3daeabf4a7b206a89b0847e3b2de", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "0f78098889e9d93eea9ed08d247c258203bc422c0d0a3dc0a9db0366ca3f916f", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.1.1-0000004128" + }, + "upgradable_to": [ + "6.1.2", + "6.1.3", + "6.1.4", + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.1.1", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack", + "discovery-file" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.0.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.0.1-4" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "37cc7cb95ed81c0da15821f164710166c6860bc486e507c91d173f4c775424b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "42d9167baee0df7cf4f2b477f6202ad814d322fd32d18c0300026b21487fa1e3", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "a282846b5ed7f2cacaf3703c202728eb24dbe37c58e850c5884d63c7608368a5", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "1787cf238b3a3cad11703739d6650a7c7d3f3daeabf4a7b206a89b0847e3b2de", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "0f78098889e9d93eea9ed08d247c258203bc422c0d0a3dc0a9db0366ca3f916f", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.0.1-0000004127" + }, + "upgradable_to": [ + "6.1.1", + "6.1.2", + "6.1.3", + "6.1.4", + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.0.1", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack", + "discovery-file" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:6.0.0-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:6.0.1-4" + }, + "metadata": {}, + "min_upgradable_from": "5.6.1", + "template": { + "hashes": [ + { + "hash": "37cc7cb95ed81c0da15821f164710166c6860bc486e507c91d173f4c775424b0", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "42d9167baee0df7cf4f2b477f6202ad814d322fd32d18c0300026b21487fa1e3", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "2af24eb7f3bd32dc1f779c33172add8249e7d096048ce49eed54e1fad786a004", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "1787cf238b3a3cad11703739d6650a7c7d3f3daeabf4a7b206a89b0847e3b2de", + "path": "kibana/config/kibana-4.yml" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "0f78098889e9d93eea9ed08d247c258203bc422c0d0a3dc0a9db0366ca3f916f", + "path": "kibana/config/kibana-6.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "6.0.0-0000005513" + }, + "upgradable_to": [ + "6.0.1", + "6.1.1", + "6.1.2", + "6.1.3", + "6.1.4", + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "6.0.0", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:5.6.16-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-attachments", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:5.6.16-1" + }, + "metadata": {}, + "min_upgradable_from": "2.4.6", + "template": { + "hashes": [ + { + "hash": "d31b80fe2762df411c15ea187a9f1f470a4a61e0f35cef7163d44496a9fa6ad7", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f59fe11df2adc9e24020b63c0c13d03bce552532897c20cbaff1659090b598c6", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "2b3184a15daa43eaacb8102f719d2e04c254426e147ee005a1e1c2a8b06ffe9f", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "5.6.16-0000005506" + }, + "upgradable_to": [ + "6.0.0", + "6.0.1", + "6.1.1", + "6.1.2", + "6.1.3", + "6.1.4", + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "5.6.16", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:5.6.15-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-attachments", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:5.6.16-1" + }, + "metadata": {}, + "min_upgradable_from": "2.4.6", + "template": { + "hashes": [ + { + "hash": "d31b80fe2762df411c15ea187a9f1f470a4a61e0f35cef7163d44496a9fa6ad7", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f59fe11df2adc9e24020b63c0c13d03bce552532897c20cbaff1659090b598c6", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "e350fce896688ed3bb3f46b92ccae4492cb311c11ae7e6c9b0aae5b0ea2c9298", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "5.6.15-0000004116" + }, + "upgradable_to": [ + "5.6.16", + "6.0.0", + "6.0.1", + "6.1.1", + "6.1.2", + "6.1.3", + "6.1.4", + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "5.6.15", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:5.6.14-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-attachments", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:5.6.16-1" + }, + "metadata": {}, + "min_upgradable_from": "2.4.6", + "template": { + "hashes": [ + { + "hash": "d31b80fe2762df411c15ea187a9f1f470a4a61e0f35cef7163d44496a9fa6ad7", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f59fe11df2adc9e24020b63c0c13d03bce552532897c20cbaff1659090b598c6", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "2b3184a15daa43eaacb8102f719d2e04c254426e147ee005a1e1c2a8b06ffe9f", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "5.6.14-0000005505" + }, + "upgradable_to": [ + "5.6.15", + "5.6.16", + "6.0.0", + "6.0.1", + "6.1.1", + "6.1.2", + "6.1.3", + "6.1.4", + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "5.6.14", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:5.6.13-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-attachments", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:5.6.16-1" + }, + "metadata": {}, + "min_upgradable_from": "2.4.6", + "template": { + "hashes": [ + { + "hash": "d31b80fe2762df411c15ea187a9f1f470a4a61e0f35cef7163d44496a9fa6ad7", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f59fe11df2adc9e24020b63c0c13d03bce552532897c20cbaff1659090b598c6", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "2b3184a15daa43eaacb8102f719d2e04c254426e147ee005a1e1c2a8b06ffe9f", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "5.6.13-0000005504" + }, + "upgradable_to": [ + "5.6.14", + "5.6.15", + "5.6.16", + "6.0.0", + "6.0.1", + "6.1.1", + "6.1.2", + "6.1.3", + "6.1.4", + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "5.6.13", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:5.6.12-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-attachments", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:5.6.16-1" + }, + "metadata": {}, + "min_upgradable_from": "2.4.6", + "template": { + "hashes": [ + { + "hash": "d31b80fe2762df411c15ea187a9f1f470a4a61e0f35cef7163d44496a9fa6ad7", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f59fe11df2adc9e24020b63c0c13d03bce552532897c20cbaff1659090b598c6", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "2b3184a15daa43eaacb8102f719d2e04c254426e147ee005a1e1c2a8b06ffe9f", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "5.6.12-0000005503" + }, + "upgradable_to": [ + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "6.0.0", + "6.0.1", + "6.1.1", + "6.1.2", + "6.1.3", + "6.1.4", + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "5.6.12", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:5.6.11-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-attachments", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:5.6.16-1" + }, + "metadata": {}, + "min_upgradable_from": "2.4.6", + "template": { + "hashes": [ + { + "hash": "d31b80fe2762df411c15ea187a9f1f470a4a61e0f35cef7163d44496a9fa6ad7", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f59fe11df2adc9e24020b63c0c13d03bce552532897c20cbaff1659090b598c6", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "e350fce896688ed3bb3f46b92ccae4492cb311c11ae7e6c9b0aae5b0ea2c9298", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "5.6.11-0000004112" + }, + "upgradable_to": [ + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "6.0.0", + "6.0.1", + "6.1.1", + "6.1.2", + "6.1.3", + "6.1.4", + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "5.6.11", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:5.6.10-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-attachments", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:5.6.16-1" + }, + "metadata": {}, + "min_upgradable_from": "2.4.6", + "template": { + "hashes": [ + { + "hash": "d31b80fe2762df411c15ea187a9f1f470a4a61e0f35cef7163d44496a9fa6ad7", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f59fe11df2adc9e24020b63c0c13d03bce552532897c20cbaff1659090b598c6", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "2b3184a15daa43eaacb8102f719d2e04c254426e147ee005a1e1c2a8b06ffe9f", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "5.6.10-0000005502" + }, + "upgradable_to": [ + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "6.0.0", + "6.0.1", + "6.1.1", + "6.1.2", + "6.1.3", + "6.1.4", + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "5.6.10", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:5.6.9-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-attachments", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:5.6.16-1" + }, + "metadata": {}, + "min_upgradable_from": "2.4.6", + "template": { + "hashes": [ + { + "hash": "d31b80fe2762df411c15ea187a9f1f470a4a61e0f35cef7163d44496a9fa6ad7", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f59fe11df2adc9e24020b63c0c13d03bce552532897c20cbaff1659090b598c6", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "2b3184a15daa43eaacb8102f719d2e04c254426e147ee005a1e1c2a8b06ffe9f", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "5.6.9-0000005512" + }, + "upgradable_to": [ + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "6.0.0", + "6.0.1", + "6.1.1", + "6.1.2", + "6.1.3", + "6.1.4", + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "5.6.9", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:5.6.8-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-attachments", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:5.6.16-1" + }, + "metadata": {}, + "min_upgradable_from": "2.4.6", + "template": { + "hashes": [ + { + "hash": "d31b80fe2762df411c15ea187a9f1f470a4a61e0f35cef7163d44496a9fa6ad7", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f59fe11df2adc9e24020b63c0c13d03bce552532897c20cbaff1659090b598c6", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "2b3184a15daa43eaacb8102f719d2e04c254426e147ee005a1e1c2a8b06ffe9f", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "5.6.8-0000005511" + }, + "upgradable_to": [ + "5.6.9", + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "6.0.0", + "6.0.1", + "6.1.1", + "6.1.2", + "6.1.3", + "6.1.4", + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "5.6.8", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:5.6.7-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-attachments", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:5.6.16-1" + }, + "metadata": {}, + "min_upgradable_from": "2.4.6", + "template": { + "hashes": [ + { + "hash": "d31b80fe2762df411c15ea187a9f1f470a4a61e0f35cef7163d44496a9fa6ad7", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f59fe11df2adc9e24020b63c0c13d03bce552532897c20cbaff1659090b598c6", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "e350fce896688ed3bb3f46b92ccae4492cb311c11ae7e6c9b0aae5b0ea2c9298", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "5.6.7-0000004123" + }, + "upgradable_to": [ + "5.6.8", + "5.6.9", + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "6.0.0", + "6.0.1", + "6.1.1", + "6.1.2", + "6.1.3", + "6.1.4", + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "5.6.7", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:5.6.6-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-attachments", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:5.6.16-1" + }, + "metadata": {}, + "min_upgradable_from": "2.4.6", + "template": { + "hashes": [ + { + "hash": "d31b80fe2762df411c15ea187a9f1f470a4a61e0f35cef7163d44496a9fa6ad7", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f59fe11df2adc9e24020b63c0c13d03bce552532897c20cbaff1659090b598c6", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "2b3184a15daa43eaacb8102f719d2e04c254426e147ee005a1e1c2a8b06ffe9f", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "5.6.6-0000005510" + }, + "upgradable_to": [ + "5.6.7", + "5.6.8", + "5.6.9", + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "6.0.0", + "6.0.1", + "6.1.1", + "6.1.2", + "6.1.3", + "6.1.4", + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "5.6.6", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:5.6.5-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-attachments", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:5.6.16-1" + }, + "metadata": {}, + "min_upgradable_from": "2.4.6", + "template": { + "hashes": [ + { + "hash": "d31b80fe2762df411c15ea187a9f1f470a4a61e0f35cef7163d44496a9fa6ad7", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f59fe11df2adc9e24020b63c0c13d03bce552532897c20cbaff1659090b598c6", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "e350fce896688ed3bb3f46b92ccae4492cb311c11ae7e6c9b0aae5b0ea2c9298", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "5.6.5-0000004121" + }, + "upgradable_to": [ + "5.6.6", + "5.6.7", + "5.6.8", + "5.6.9", + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "6.0.0", + "6.0.1", + "6.1.1", + "6.1.2", + "6.1.3", + "6.1.4", + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "5.6.5", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:5.6.4-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-attachments", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:5.6.16-1" + }, + "metadata": {}, + "min_upgradable_from": "2.4.6", + "template": { + "hashes": [ + { + "hash": "d31b80fe2762df411c15ea187a9f1f470a4a61e0f35cef7163d44496a9fa6ad7", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f59fe11df2adc9e24020b63c0c13d03bce552532897c20cbaff1659090b598c6", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "2b3184a15daa43eaacb8102f719d2e04c254426e147ee005a1e1c2a8b06ffe9f", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "5.6.4-0000005509" + }, + "upgradable_to": [ + "5.6.5", + "5.6.6", + "5.6.7", + "5.6.8", + "5.6.9", + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "6.0.0", + "6.0.1", + "6.1.1", + "6.1.2", + "6.1.3", + "6.1.4", + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "5.6.4", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:5.6.3-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-attachments", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:5.6.16-1" + }, + "metadata": {}, + "min_upgradable_from": "2.4.6", + "template": { + "hashes": [ + { + "hash": "d31b80fe2762df411c15ea187a9f1f470a4a61e0f35cef7163d44496a9fa6ad7", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f59fe11df2adc9e24020b63c0c13d03bce552532897c20cbaff1659090b598c6", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "2b3184a15daa43eaacb8102f719d2e04c254426e147ee005a1e1c2a8b06ffe9f", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "5.6.3-0000005508" + }, + "upgradable_to": [ + "5.6.4", + "5.6.5", + "5.6.6", + "5.6.7", + "5.6.8", + "5.6.9", + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "6.0.0", + "6.0.1", + "6.1.1", + "6.1.2", + "6.1.3", + "6.1.4", + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "5.6.3", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:5.6.2-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-attachments", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:5.6.16-1" + }, + "metadata": {}, + "min_upgradable_from": "2.4.6", + "template": { + "hashes": [ + { + "hash": "d31b80fe2762df411c15ea187a9f1f470a4a61e0f35cef7163d44496a9fa6ad7", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f59fe11df2adc9e24020b63c0c13d03bce552532897c20cbaff1659090b598c6", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "2b3184a15daa43eaacb8102f719d2e04c254426e147ee005a1e1c2a8b06ffe9f", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "5.6.2-0000005507" + }, + "upgradable_to": [ + "5.6.3", + "5.6.4", + "5.6.5", + "5.6.6", + "5.6.7", + "5.6.8", + "5.6.9", + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "6.0.0", + "6.0.1", + "6.1.1", + "6.1.2", + "6.1.3", + "6.1.4", + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "5.6.2", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "compatible_node_types": null, + "default_plugins": [ + "repository-s3", + "found-elasticsearch", + "x-pack" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:5.6.1-0", + "node_types": [ + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "ingest" + ], + "description": "Data", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "data", + "ingest" + ], + "description": "Master", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + }, + { + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": [ + "master", + "data" + ], + "description": "Ingest", + "name": "Ingest", + "node_type": "ingest", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "ingest": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-phonetic", + "analysis-smartcn", + "analysis-stempel", + "analysis-ukrainian", + "ingest-attachment", + "ingest-geoip", + "ingest-user-agent", + "mapper-attachments", + "mapper-murmur3", + "mapper-size", + "repository-azure", + "repository-gcs" + ] + }, + "kibana": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.anonymous.username", + "xpack.security.authc.anonymous.roles", + "xpack.security.authc.anonymous.authz_exception", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings" + ], + "capacity_constraints": { + "max": 65536, + "min": 1024 + }, + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:5.6.16-1" + }, + "metadata": {}, + "min_upgradable_from": "2.4.6", + "template": { + "hashes": [ + { + "hash": "d31b80fe2762df411c15ea187a9f1f470a4a61e0f35cef7163d44496a9fa6ad7", + "path": "elasticsearch/config/elasticsearch.yml" + }, + { + "hash": "3ac98e612dd8ad3e62c739e40fcd7ebb0ff68235770ea2e3d86fc35581dcbc44", + "path": "elasticsearch/config/log4j2.properties" + }, + { + "hash": "80c15c3ac2dec585dca0c1b1f233229547471f441db980e260a0a385de9fe311", + "path": "elasticsearch/config/logging.yml" + }, + { + "hash": "f59fe11df2adc9e24020b63c0c13d03bce552532897c20cbaff1659090b598c6", + "path": "elasticsearch/config/shield/roles.yml" + }, + { + "hash": "3fb301da6e86040fe628f1b6983ef658b09889fd38a3d44e264f545eb11a1f0c", + "path": "elasticsearch/config/shield/users" + }, + { + "hash": "40c2c41238b4a8654d7d24a2cc5620a41a43f7bc9fb0a76c910c4c124b01fe35", + "path": "elasticsearch/config/shield/users_roles" + }, + { + "hash": "e350fce896688ed3bb3f46b92ccae4492cb311c11ae7e6c9b0aae5b0ea2c9298", + "path": "elasticsearch/elasticsearch.sh" + }, + { + "hash": "23c475f4065a547f8c96521d2c7521aa0dcea1e36a796b583d925a10f3e18170", + "path": "elasticsearch/on-error-exitcode.sh" + }, + { + "hash": "f51ed528dc26c59c5458279dfd0e9f94a354b18df6940c3b40156c9822e01328", + "path": "kibana/config/kibana-5.yml" + }, + { + "hash": "b04ea254acaeb08a5b0cd8865e8c53a5a43e9643fd2611ab4650f7549c61f887", + "path": "kibana/kibana.sh" + } + ], + "template_version": "5.6.1-0000004110" + }, + "upgradable_to": [ + "5.6.2", + "5.6.3", + "5.6.4", + "5.6.5", + "5.6.6", + "5.6.7", + "5.6.8", + "5.6.9", + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16", + "6.0.0", + "6.0.1", + "6.1.1", + "6.1.2", + "6.1.3", + "6.1.4", + "6.2.3", + "6.2.4", + "6.3.0", + "6.3.1", + "6.3.2", + "6.4.0", + "6.4.1", + "6.4.2", + "6.4.3", + "6.5.0", + "6.5.1", + "6.5.2", + "6.5.3", + "6.5.4", + "6.6.0", + "6.6.1", + "6.6.2", + "6.7.0", + "6.7.1", + "6.7.2", + "6.8.0", + "6.8.1", + "6.8.2", + "6.8.3", + "6.8.4", + "6.8.5", + "6.8.6", + "6.8.7", + "6.8.8", + "6.8.9", + "6.8.10", + "6.8.11", + "6.8.12-SNAPSHOT", + "6.8.12", + "6.8.13-SNAPSHOT", + "6.8.13", + "6.8.14-SNAPSHOT", + "6.8.14", + "6.8.15-SNAPSHOT", + "6.8.15", + "6.8.16-SNAPSHOT", + "6.8.16", + "6.8.17-SNAPSHOT", + "6.8.17" + ], + "version": "5.6.1", + "whitelisted": false + }, + { + "accessible": true, + "deleted": false, + "elasticsearch": { + "blacklist": [ + "node.name", + "cluster.name", + "processors", + "node.roles", + "node.master", + "node.data", + "path.conf", + "path.data", + "path.logs", + "path.plugins", + "path.home", + "network.publish_host", + "network.bind_host", + "http.port", + "http.publish_port", + "transport.tcp.port", + "discovery.type", + "discovery.zen.masterservice.type", + "discovery.zen.ping.multicast.enabled", + "discovery.zen.ping.unicast.hosts", + "discovery.zen.minimum_master_nodes", + "bootstrap.mlockall", + "node.region", + "node.availability_zone", + "node.logical_availability_zone", + "node.attr.region", + "node.attr.availability_zone", + "node.attr.logical_availability_zone", + "node.attr.instance_configuration", + "cluster.routing.allocation.awareness.attributes", + "node.max_local_storage_nodes", + "gateway.type", + "gateway.local.initial_meta", + "cloud.aws.region", + "cloud.aws.access_key", + "cloud.aws.secret_key", + "xpack.graph.enabled", + "xpack.grokdebugger.enabled", + "xpack.ml.enabled", + "xpack.reporting.enabled", + "xpack.searchprofiler.enabled", + "shield.transport.filter_enabled", + "shield.authc.system_key.file", + "xpack.security.system_key.required", + "xpack.security.authc.reserved_realm.enabled", + "xpack.security.authc.realms.found.type", + "xpack.security.authc.realms.found.files.users", + "xpack.security.authc.realms.found.files.users_roles", + "xpack.security.authc.realms.found.order", + "xpack.security.authc.realms.native.type", + "xpack.security.authc.realms.native.order", + "xpack.security.enabled", + "shield.hide_settings", + "found.rest_filter.required", + "found.election.confirmed.enabled", + "found.zookeeper.connection_string", + "found.zookeeper.session_timeout", + "found.zookeeper.acls", + "found.zookeeper.auths" + ], + "compatible_node_types": null, + "default_plugins": [ + "cloud-aws", + "found-elasticsearch", + "found-license-plugin", + "shield", + "marvel-agent" + ], + "docker_image": "docker.elastic.co/cloud-assets/elasticsearch:2.4.6-1", + "node_types": [ + { + "compatible_node_types": [ + "master" + ], + "description": "Instance eligible for storing data.", + "name": "Data", + "node_type": "data", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "data": true + } + } + } + } + }, + { + "compatible_node_types": [ + "data" + ], + "description": "Instance will be master eligible.", + "name": "Master", + "node_type": "master", + "settings": { + "instance_data": { + "elasticsearch": { + "node": { + "master": true + } + } + } + } + } + ], + "plugins": [ + "analysis-icu", + "analysis-kuromoji", + "analysis-smartcn", + "analysis-stempel", + "analysis-phonetic", + "graph", + "watcher", + "mapper-attachments", + "delete-by-query" + ] + }, + "kibana": { + "blacklist": [ + "xpack.security.audit.appender.path", + "xpack.security.audit.appender.fileName", + "xpack.security.audit.appender.layout.kind", + "xpack.security.audit.appender.layout.type", + "xpack.security.audit.appender.policy.kind", + "xpack.security.audit.appender.policy.type", + "xpack.security.audit.appender.policy.size", + "xpack.security.audit.appender.strategy.kind", + "xpack.security.audit.appender.strategy.type", + "xpack.security.audit.appender.strategy.pattern", + "xpack.security.audit.appender.strategy.max" + ], + "compatible_node_types": null, + "docker_image": "docker.elastic.co/cloud-assets/kibana:4.6.6-3", + "version": "4.6.6" + }, + "template": { + "hashes": [] + }, + "upgradable_to": [ + "5.6.1", + "5.6.2", + "5.6.3", + "5.6.4", + "5.6.5", + "5.6.6", + "5.6.7", + "5.6.8", + "5.6.9", + "5.6.10", + "5.6.11", + "5.6.12", + "5.6.13", + "5.6.14", + "5.6.15", + "5.6.16" + ], + "version": "2.4.6", + "whitelisted": false + } + ] +} diff --git a/suites.js b/suites.js index 01dbcfa..2cee7e1 100644 --- a/suites.js +++ b/suites.js @@ -4,9 +4,12 @@ /** @typedef { import('./lib/types').Scenario } Scenario */ const Versions = [ - // '7.11.0-SNAPSHOT', unstable - '7.10.0', - '7.9.3', + // '7.14.0', + '7.13.3', + '7.12.1', + '7.11.2', + // '7.10.2', + // '7.9.3', // '7.8.1', old api version? ] const Version = Versions[0] @@ -30,10 +33,10 @@ function withAlerts(fn) { /** @type { (alerts: number) => Suite } */ function suiteKibanaSizes(alerts) { const sizes = [ - { esSpec: '1 x 1 GB', kbSpec: '1 x 1 GB' }, - { esSpec: '1 x 4 GB', kbSpec: '2 x 8 GB' }, - { esSpec: '1 x 8 GB', kbSpec: '4 x 8 GB' }, - { esSpec: '1 x 15 GB', kbSpec: '8 x 8 GB' }, + { esSpec: '1 x 8 GB', kbSpec: ' 4 x 8 GB' }, + { esSpec: '1 x 16 GB', kbSpec: ' 6 x 8 GB' }, + { esSpec: '1 x 32 GB', kbSpec: ' 8 x 8 GB' }, + { esSpec: '1 x 64 GB', kbSpec: '10 x 8 GB' }, ] const scenarios = sizes.map((size, index) => ({ From 5ee7c19a8b3f39e8896c462b5cf682c4c88713af Mon Sep 17 00:00:00 2001 From: Patrick Mueller Date: Mon, 9 Aug 2021 19:06:30 -0400 Subject: [PATCH 2/2] enhancements for 7.14 - added 7.14 as the top-level version - changed running alerts at 1m interval, to 3s interval; similar change to decrease the number of rules we actually create; thinking is, we can simulate more alerts by running them at a smaller interval - increased wait for deployments to finish creation from 5 minutes to 10 - changed how kibana config is set (change to ecctl data shape) --- lib/commands.js | 2 +- lib/deployment.js | 4 +++- lib/ec-commands.js | 11 +++++------ lib/kb.js | 2 +- lib/types.ts | 2 +- suites.js | 16 +++++++++------- 6 files changed, 20 insertions(+), 17 deletions(-) diff --git a/lib/commands.js b/lib/commands.js index c999223..11df850 100644 --- a/lib/commands.js +++ b/lib/commands.js @@ -114,7 +114,7 @@ async function run({ config, minutes, percentFiring }, [ suiteId ]) { ]) }, logger) - logger.log(`TBD ... creating input indices`) + // logger.log(`TBD ... creating input indices`) logger.log(`creating alerts and actions`) const queues = deployments.map(async deployment => { diff --git a/lib/deployment.js b/lib/deployment.js index d5c6c5f..ffb1640 100644 --- a/lib/deployment.js +++ b/lib/deployment.js @@ -11,6 +11,8 @@ const ecCommands = require('./ec-commands') const { splitX, delay } = require('./utils') const DeploymentPrefix = '💪KAL-' +const DeployWaitMinutes = 10 +const DeployWaitMillis = DeployWaitMinutes * 60 * 1000 module.exports = { createDeployment, @@ -82,7 +84,7 @@ class DeploymentImpl { } /** @type { (config: string, id: string, name: string, wait: number, interval: number) => Promise } */ -async function waitForHealthyDeployment(config, id, name, wait = 1000 * 60 * 5, interval = 10000) { +async function waitForHealthyDeployment(config, id, name, wait = DeployWaitMillis, interval = 10000) { if (wait <= 0) throw new Error(`timeout waiting for ${name} to become healthy`) const info = await ecCommands.getDeployment({ config, name, id }) diff --git a/lib/ec-commands.js b/lib/ec-commands.js index c41f113..a32ef56 100644 --- a/lib/ec-commands.js +++ b/lib/ec-commands.js @@ -251,14 +251,13 @@ async function fixDeploymentCreatePayload(payload, config, { esSize, kbSize, tmM // Kibana fix ups for (const kibana of payload.resources.kibana) { // set Kibana config overrides - /** @type { Record } */ - const configOverridesJSON = {} - if (tmMaxWorkers !== 10) configOverridesJSON['xpack.task_manager.max_workers'] = tmMaxWorkers - if (tmPollInterval !== 3000) configOverridesJSON['xpack.task_manager.poll_interval'] = tmPollInterval + let configOverridesYaml = '' + if (tmMaxWorkers !== 10) configOverridesYaml += `\nxpack.task_manager.max_workers: ${tmMaxWorkers}` + if (tmPollInterval !== 3000) configOverridesYaml += `\nxpack.task_manager.poll_interval: ${tmPollInterval}` - if (Object.keys(configOverridesJSON).length !== 0) { + if (configOverridesYaml.length > 0) { payload.resources.kibana.forEach(kibana => { - kibana.plan.kibana.user_settings_override_json = configOverridesJSON + kibana.plan.kibana.user_settings_yaml = configOverridesYaml }) } diff --git a/lib/kb.js b/lib/kb.js index 607a0a5..017d9f4 100644 --- a/lib/kb.js +++ b/lib/kb.js @@ -35,7 +35,7 @@ async function createAlert(kbUrl, name, inputIndex, firing = false, actions = [] name, alertTypeId, consumer: 'alerts', - schedule: { interval: '1m' }, + schedule: { interval: '3s' }, actions, params: { index: '.kibana-event-log*', diff --git a/lib/types.ts b/lib/types.ts index 948698a..0bd29f0 100644 --- a/lib/types.ts +++ b/lib/types.ts @@ -121,7 +121,7 @@ interface DeploymentCreatePlan { id: string } kibana?: { - user_settings_override_json?: Record + user_settings_yaml?: string } } diff --git a/suites.js b/suites.js index 2cee7e1..1fd29b5 100644 --- a/suites.js +++ b/suites.js @@ -3,8 +3,10 @@ /** @typedef { import('./lib/types').Suite } Suite */ /** @typedef { import('./lib/types').Scenario } Scenario */ +const AlertInterval = '5s' + const Versions = [ - // '7.14.0', + '7.14.0', '7.13.3', '7.12.1', '7.11.2', @@ -14,7 +16,7 @@ const Versions = [ ] const Version = Versions[0] -const AlertsList = [100, 500, 1000, 2000, 4000] +const AlertsList = [10, 50, 100, 200, 400] /** @type { Suite[] } */ const suites = module.exports = [] @@ -41,7 +43,7 @@ function suiteKibanaSizes(alerts) { const scenarios = sizes.map((size, index) => ({ name: `kb: ${size.kbSpec}; es: ${size.esSpec}`, - alertInterval: '1m', + alertInterval: AlertInterval, alerts, esSpec: size.esSpec, kbSpec: size.kbSpec, @@ -64,7 +66,7 @@ function suiteTmMaxWorkers(alerts) { const scenarios = tmMaxWorkersList.map((tmMaxWorkers, index) => { return { name: `tm max workers: ${tmMaxWorkers}`, - alertInterval: '1m', + alertInterval: AlertInterval, alerts, esSpec: '1 x 8 GB', kbSpec: '2 x 8 GB', @@ -88,7 +90,7 @@ function suiteTmPollInterval(alerts) { const scenarios = tmPollIntervalList.map((tmPollInterval, index) => { return { name: `tm poll interval: ${tmPollInterval}`, - alertInterval: '1m', + alertInterval: AlertInterval, alerts, esSpec: '1 x 8 GB', kbSpec: '2 x 8 GB', @@ -110,7 +112,7 @@ function suiteVersions(alerts) { const scenarios = Versions.map((version, index) => { return { name: `stack version: ${version}`, - alertInterval: '1m', + alertInterval: AlertInterval, alerts, esSpec: '1 x 8 GB', kbSpec: '2 x 8 GB', @@ -132,7 +134,7 @@ function suiteAlerts() { const scenarios = AlertsList.slice(0, 4).map((alerts, index) => { return { name: `alerts: ${alerts}`, - alertInterval: '1m', + alertInterval: AlertInterval, alerts, esSpec: '1 x 8 GB', kbSpec: '2 x 8 GB',