Skip to content

Instantly share code, notes, and snippets.

@patrickhuber
patrickhuber / plugin.yml
Last active April 29, 2022 15:39
dapr plugin example using statestore
apiVersion: dapr.io/v1alpha1
kind: Component
metadata:
name: gomemory
spec:
type: state.gomemory
plugin: true
version: v1
@patrickhuber
patrickhuber / install-kubernetes-1-6-on-centos-7-3.md
Last active July 18, 2021 12:24
install kubernetes 1.6 on centos 7.3

install kubernetes 1.6 on centos 7.3

Install kubelet, kubeadm, docker, kubectl and kubernetes-cni

1. Install Yum Repo

cat <<EOF > /etc/yum.repos.d/kubernetes.repo
[kubernetes]
name=Kubernetes
baseurl=http://yum.kubernetes.io/repos/kubernetes-el7-x86_64
@patrickhuber
patrickhuber / script.sh
Last active November 19, 2019 22:07
stemcell processing
product=stemcells-ubuntu-xenial
version=250
products=`cat stemcells.json | jq ".[] | select(.slug == \"$product\").versions | .[] | select(.version == $version).products | .[]" -r`
for product in $products
do
cat $product
done
@patrickhuber
patrickhuber / download-file.ps1
Created June 26, 2018 15:31
download file powershell
$ErrorActionPreference = "Stop"
function Invoke-DownloadFileCore{
param(
[string]$url,
[string]$output,
[bool]$skipTlsValidation,
[X509Certificate]$certificate)
$code = @'
using System;
@patrickhuber
patrickhuber / gll_shift.py
Created November 16, 2017 17:33 — forked from cheery/gll_shift.py
GLL Recognizer
class Cell(object):
def __init__(self, L):
self.L = L
self.edges = set()
self.redus = set()
class Chart(object):
def __init__(self):
self.cont = []
self.visit = set()
# setup
Set-ExecutionPolicy AllSigned
# install chocolatey
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
# install packages
choco install firefox -y
choco install filezilla -y
choco install javaruntime -y

Install Consule 0.8.0 on centos 7

update yum and install wget,unzip,dig

yum update -y
yum install wget uzip bind-utils -y

create directories

@patrickhuber
patrickhuber / etcd.md
Last active April 4, 2017 20:23
installing kubernetes centos 7

Running By Hand

etcd --name infra0 \
  --initial-advertise-peer-urls http://192.168.1.101:2380 \
  --listen-peer-urls http://192.168.1.101:2380 \
  --listen-client-urls http://192.168.1.101:2379,http://127.0.0.1:2379 \
  --advertise-client-urls http://192.168.1.101:2379 \
  --initial-cluster-token huber-cluster \
  --initial-cluster infra0=http://192.168.1.101:2380,infra1=http://192.168.1.102:2380,infra2=http://192.168.1.103:2380 \
@patrickhuber
patrickhuber / Configure DCOS 1.8 for RHEL 7.2
Created January 24, 2017 22:45
Installing DCOS 1.8 on RHEL 7
for title
@patrickhuber
patrickhuber / Configure DCOS 1.8 for Centos 7.3
Last active January 18, 2017 15:27
configure dcos 1.8 for centos 7.3