Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Stack Monitoring] Add notes about running a kibana-less deployment to cloud_setup.md #127938

Open
Tracked by #127224
matschaffer opened this issue Mar 17, 2022 · 2 comments

Comments

@matschaffer
Copy link
Contributor

https://github.com/elastic/kibana/blob/main/x-pack/plugins/monitoring/dev_docs/how_to/cloud_setup.md shows some basics about how to run a cloud cluster then mentions that the existing kibana will hit problems once you connect a local kibana.

In (internal) https://github.com/elastic/cloud/issues/99247#issuecomment-1070315728 @tobio worked out that you can remove the cloud kibana by running:

ecctl deployment update <id> -f plan.json --prune-orphans

Where plan.json has the kibana key set to [].

We should add this to our docs, and potentially https://docs.elastic.dev/dev/guides/cloud-first-testing to make it easier for other kibana developers to do the same.

@matschaffer matschaffer added Team:Infra Monitoring UI - DEPRECATED DEPRECATED - Label for the Infra Monitoring UI team. Use Team:obs-ux-infra_services Feature:Stack Monitoring labels Mar 17, 2022
@elasticmachine
Copy link
Contributor

Pinging @elastic/infra-monitoring-ui (Team:Infra Monitoring UI)

@tobio
Copy link
Member

tobio commented Mar 17, 2022

It should also be possible to bring up a kibana-less deployment through the Terraform provider with something like:

resource "ec_deployment" "just-es" {
  name = "just-es"

  region                 = "us-east-1"
  version                = data.ec_stack.latest.version
  deployment_template_id = "aws-io-optimized-v2"

  # Use the deployment template defaults
  elasticsearch {}
}

@smith smith added Team:Monitoring Stack Monitoring team and removed Team:Infra Monitoring UI - DEPRECATED DEPRECATED - Label for the Infra Monitoring UI team. Use Team:obs-ux-infra_services labels Nov 13, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants