Skip to content

Instantly share code, notes, and snippets.

View keqiang's full-sized avatar

Keqiang Li keqiang

View GitHub Profile
@keqiang
keqiang / install-k8s-arch.md
Last active August 17, 2023 12:24 — forked from StephenSorriaux/install-kubernetes-archlinux.md
Install Kubernetes on Bare-metal Arch Linux Using kubeadm

Install Kubernetes on Bare-metal Arch Linux Using kubeadm

You can use root to perform following steps until a regular user is indicated

Install Packages that K8s(actually kubeadm) requires

If one of these packages are not presented, kubeadm will report warnings or errors

pacman -S docker ebtables ethtool socat
@keqiang
keqiang / server.R
Last active June 26, 2017 19:44 — forked from withr/server.R
Encrypt password with md5 for Shiny-app.
library(shiny)
library(datasets)
# user info database
# "098f6bcd4621d373cade4e832627b4f6" is the md5 value of string "test",
# so you need to type test for the password of user "auser"
users <-
data.frame(username = "auser", password = "098f6bcd4621d373cade4e832627b4f6")
shinyServer(function(input, output) {