I am trying to deploy the jpetstore application (https://github.com/IBM-Cloud/jpetstore-kubernetes) into kubernetes in EKS and i am having trouble interpreting this command as it is used for IBM cloud:
ibmcloud ks cluster get --cluster CLUSTER_NAME
What is the EKS equivalent if i were to use kubectl ?
I have EKS setup using the terraform below:
provider "kubernetes" {
host = data.aws_eks_cluster.cluster.endpoint
cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)
token = data.aws_eks_cluster_auth.cluster.token
}
could command be retrieving the endpoint?