How to launch one Pod in Minikube using Terraform

0 votes

Hi Guys,

I am new in Terraform. I want to use Kubernetes as a Terraform provider to launch one Pod. Can anyone help me how can I launch one Pod using Terraform in Minikube Cluster?

Jun 16, 2020 in Terraform by akhtar
• 38,230 points
3,111 views

1 answer to this question.

0 votes

Hi@akhtar,

You can use kubernetes_pod resource to launch one Pod in Minikube Cluster with the help of Terraform. This resource will automatically connect with Minikube. You can go through the below-given example.

provider "kubernetes" {
  config_context_cluster   = "minikube"
}

resource "kubernetes_pod" "mypod1" {
  metadata {
    name = "mypod"
  }
  spec {
    container {
      image = "httpd"
      name  = "webcon"
    }
  }
}
answered Jun 16, 2020 by MD
• 95,440 points
Config context cluster=minikube
Why you used minikube there you might give username and pass or certificates in config file

You can do that way also. But you can check this link once.

https://www.terraform.io/docs/providers/kubernetes/index.html

Related Questions In Terraform

0 votes
1 answer

How to create one S3 bucket in AWS using Terraform?

Hi@akhtar, You need to set aws provider name ...READ MORE

answered Jul 23, 2020 in Terraform by MD
• 95,440 points
986 views
0 votes
1 answer

How to launch one EC2 instance for WordPress using Terraform?

Hi@akhtar, You can use the aws_instance resource in Terraform. ...READ MORE

answered Sep 9, 2020 in Terraform by MD
• 95,440 points
620 views
0 votes
1 answer

How to launch one MySQL instance using Terraform code?

Hi@akhtar, You can use the aws_instance resource in Terraform. This ...READ MORE

answered Sep 9, 2020 in Terraform by MD
• 95,440 points
990 views
0 votes
1 answer

How to launch an instance in GCP using Terraform?

Hi@akhtar, You can use the google_compute_instance resource in ...READ MORE

answered Sep 12, 2020 in Terraform by MD
• 95,440 points
627 views
+1 vote
1 answer
0 votes
3 answers

Error while joining cluster with node

Hi Kalgi after following above steps it ...READ MORE

answered Jan 17, 2019 in Others by anonymous
14,494 views
+4 votes
1 answer

Installing Web UI (Dashboard):kubernetes-dashboard on main Ubuntu 16.04.6 LTS (Xenial Xerus) server

Follow these steps: $ kubeadm reset $ kubeadm init ...READ MORE

answered Apr 12, 2019 in Kubernetes by Kalgi
• 52,360 points

reshown Apr 12, 2019 by Kalgi 5,958 views
0 votes
1 answer

How to create one key in AWS using terraform?

Hi@akhtar, You can use aws_key_pair resource n terraform. ...READ MORE

answered Jun 11, 2020 in Terraform by MD
• 95,440 points
1,346 views
0 votes
1 answer

How to create a namespace in minikube using Terraform?

Hi@akhtar, You can use kubernetes_namespace resource. It is used ...READ MORE

answered Jun 30, 2020 in Terraform by MD
• 95,440 points
1,384 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP