skip to Main Content

Unable to run metadata_startup_script in Terraform – CentOS

I have a terraform script resource "google_compute_attached_disk" "default3" { disk = google_compute_disk.default2.id instance = google_compute_instance.default.id } resource "google_compute_instance" "default" { name = "test" machine_type = "custom-8-16384" zone = "asia-south1-a" tags = ["foo", "bar"] boot_disk { initialize_params { image = "centos-cloud/centos-7"…

VIEW QUESTION

Google loadbalancer health checkup fails – Nginx

I installed Kubernetes ingress controller on GKE following the official documentation as following. kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v0.46.0/deploy/static/provider/cloud/deploy.yaml The ingress controller runs fine. ingress-nginx-admission-create-dvkgp 0/1 Completed 0 5h29m ingress-nginx-admission-patch-58l4z 0/1 Completed 1 5h29m ingress-nginx-controller-65d7564f46-2rtjs 1/1 Running 0 5h29m It creates a…

VIEW QUESTION

Redis – Microservices on GCP

I am looking to use GCP for a micro-services application. After comparing AWS and GCP I have decided to go with Google because one major requirement for the project is to schedule tasks to run in the future (Cloud Tasks)…

VIEW QUESTION
Back To Top
Search