Daily Archives: January 10, 2018

Script to install jenkins on ubuntu

echo "START" >> /tmp/status.txt sudo chmod 777 /tmp/status.txt # config jenkins installer on ubuntu sudo add-apt-repository ppa:webupd8team/java -y wget -q -O - https://pkg.jenkins.io/debian/jenkins.io.key | sudo apt-key add - # config java8... Read More | Share it now!

Creating gCloud instance with Terraform

main.tf // Create a new instance resource "google_compute_instance" "default" { name = "${var.cluster-name}" machine_type = "${var.machine-type}" zone = "${var.gcloud-zone}" boot_disk { initialize_params { ... Read More | Share it now!