❯ gpg --gen-key
❯ gpg --list-keys
#!/usr/bin/env bash | |
sudo yum install -y git-core zlib zlib-devel gcc-c++ patch readline readline-devel libyaml-devel libffi-devel openssl-devel make bzip2 autoconf automake libtool bison curl sqlite-devel | |
cd | |
git clone git://github.com/sstephenson/rbenv.git .rbenv | |
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile | |
echo 'eval "$(rbenv init -)"' >> ~/.bash_profile | |
git clone git://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build | |
echo 'export PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"' >> ~/.bash_profile |
apiVersion: apps/v1 | |
kind: StatefulSet | |
metadata: | |
name: web | |
spec: | |
serviceName: "nginx" | |
replicas: 2 | |
selector: | |
matchLabels: | |
app: nginx |
apiVersion: extensions/v1beta1 | |
kind: Ingress | |
metadata: | |
name: example-ingress | |
annotations: | |
nginx.ingress.kubernetes.io/rewrite-target: / | |
spec: | |
rules: | |
- host: hello-world.info | |
http: |
➜ oci-kubeadm git:(master) ✗ cat manifests/flexvolume-config.yaml | |
--- | |
auth: | |
region: us-phoenix-1 | |
tenancy: ocid1.tenancy.oc1.. | |
compartment: ocid1.compartment.oc1.. | |
user: ocid1.user.oc1.. | |
key: | | |
-----BEGIN RSA PRIVATE KEY----- | |
-----END RSA PRIVATE KEY----- |
## ===================================== | |
## Base configuration used by all plugins | |
## ===================================== | |
auth: | |
region: us-phoenix-1 | |
tenancy: ocid1.tenancy.oc1.. | |
user: ocid1.user.oc1.. | |
key: | | |
-----BEGIN RSA PRIVATE KEY----- |
--- | |
apiVersion: apps/v1 | |
kind: DaemonSet | |
metadata: | |
name: oci-flexvolume-driver-master | |
namespace: kube-system | |
spec: | |
selector: | |
matchLabels: | |
component: oci-flexvolume-driver |
sudo apt update && apt upgrade -y | |
# Install core packages | |
sudo apt install -y build-essential libncurses-dev git emacs zsh gnome-tweak-tool curl | |
# Setup Git user information | |
git config --global user.email "[email protected]" | |
git config --global user.name "Owain Lewis" |
--- | |
kind: ClusterRole | |
apiVersion: rbac.authorization.k8s.io/v1beta1 | |
metadata: | |
name: flannel | |
rules: | |
- apiGroups: | |
- "" | |
resources: | |
- pods |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: nginx-deployment | |
spec: | |
selector: | |
matchLabels: | |
app: nginx | |
replicas: 1 | |
template: |