Skip to content

Instantly share code, notes, and snippets.

View themagellanic's full-sized avatar
🚩
Capture the knowledge

Parag Varshney themagellanic

🚩
Capture the knowledge
  • Lucknow
View GitHub Profile
#include <GL/glut.h>
#include <stdio.h>
#include <math.h>
#include<iostream>
using namespace std;
struct Color {
float r,g,b;
};
void Init()
@themagellanic
themagellanic / Getting Started with cloud :Challenge Lab
Last active October 11, 2020 19:19
Create an instance VM and expand it to Kubernetes to host 2 VM instances and then add HTTP Load Balancer.
Task 1: Create a project jumphost instance
We will use this instance to perform maintenance for the project.
Make sure you:
1.name the instance nucleus-jumphost
2.use the machine type of f1-micro
3.use the default image type (Debian Linux)
$gcloud compute instances create nucleus-jumphost --machine-type f1-micro --zone us-east1-b
_________________________________________________________________________________________________