I am trying to connect Backstage to a Kubernetes cluster deployed on EKS in order to discover pods and display them on the pages for their respective components. To connect to a cluster, Backstage needs a "cluster URL". Where can I find the cluster URL and port? Should I be able to connect to this cluster when running locally?
I am running Backstage locally on my machine and trying to connect to a deployed EKS cluster. Here is the configuration in my app-config.yaml
:
kubernetes:
serviceLocatorMethod:
type: 'multiTenant'
clusterLocatorMethods:
- type: 'config'
clusters:
- url: http://111.11.1.1:1111
name: my-cluster-eks
authProvider: 'aws'
skipTLSVerify: true
skipMetricsLookup: true
auth:
environment: 'development'
providers:
aws:
development:
accessKeyId: ${AWS_ACCESS_KEY_ID}
secretAccessKey: ${AWS_SECRET_ACCESS_KEY}