Skip to content

Instantly share code, notes, and snippets.

@seenureddy
seenureddy / instructions.txt
Created September 17, 2020 12:24 — forked from lalitkale/instructions.txt
Install Spinnaker on MiniKube
# Minikube addons
https://github.com/kubernetes/minikube/blob/master/docs/addons.md
#start minikube
minikube start --vm-driver hyperv --hyperv-virtual-switch "VMVirtualSwitch" --memory 12288 --cpus 4
#or
minikube start --vm-driver="hyperv" --hyperv-virtual-switch="VMVirtualSwitch" --v=7 --alsologtostderr
# minikube Patch Enviornemnt for Helm
@seenureddy
seenureddy / K8s-DigitalOcean-CoreOS.md
Created April 17, 2020 18:41 — forked from kevashcraft/K8s-DigitalOcean-CoreOS.md
How to Setup Kubernetes on DigitalOcean with CoreOS

Kubernetes on DigitalOcean with CoreOS

Let's look at an example of how to launch a Kubernetes cluster from scratch on DigitalOcean, including kubeadm, an Nginx Ingress controller, and Letsencrypt certificates.

Overview

Environment

We'll be creating a four-node cluster (k8s-master, k8s-000...k8s-002), load balancer, and ssl certificates.

Table of Contents

  1. Install Kubernetes
# kubectl get pods --namespace=kube-system
NAME READY STATUS RESTARTS AGE
kubernetes-dashboard-mdfjy 1/1 Running 0 1h
# kubectl describe po kubernetes-dashboard-mdfjy --namespace=kube-system
Name: kubernetes-dashboard-mdfjy
Namespace: kube-system
Node: 127.0.0.1/127.0.0.1
Start Time: Thu, 23 Jun 2016 13:33:46 +0000
Labels: app=kubernetes-dashboard
@seenureddy
seenureddy / beezid_scraper.py
Created August 22, 2016 18:00 — forked from CuriousGnu/beezid_scraper.py
Beezid.com - Auction Scraper
import pycurl
import json
import time
from StringIO import StringIO
i = 0
bnums = []
while True :
print(str(i))