(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:
| # this config file contains all config fields with comments | |
| kind: Cluster | |
| apiVersion: kind.sigs.k8s.io/v1alpha3 | |
| # patch the generated kubeadm config with some extra settings | |
| kubeadmConfigPatches: | |
| - | | |
| apiVersion: kubeadm.k8s.io/v1beta2 | |
| kind: ClusterConfiguration | |
| metadata: | |
| name: config |
| import os | |
| def main(): | |
| print("Os: {}".format(os.uname().version)) | |
| print("Hostname: {}".format(os.uname().nodename)) | |
| if __name__ == "__main__": | |
| main() |
| // Configure the DNS Provider | |
| // dnssec-keygen -r /dev/urandom -a HMAC-MD5 -b 256 -n HOST domain.tld. | |
| provider "dns" { | |
| update { | |
| server = "192.168.0.1" | |
| key_name = "domain.tld." | |
| key_algorithm = "hmac-md5" | |
| key_secret = "yoursecrethere" | |
| } | |
| } |
| git config --global url."https://github.com/".insteadOf git@github.com: | |
| git config --global url."https://".insteadOf git:// |
| --- | |
| kind: Deployment | |
| apiVersion: extensions/v1beta1 | |
| metadata: | |
| name: whoami | |
| labels: | |
| app: whoami | |
| spec: | |
| replicas: 2 | |
| selector: |
| " vim-bootstrap b0a75e4 | |
| "***************************************************************************** | |
| "" Vim-PLug core | |
| "***************************************************************************** | |
| if has('vim_starting') | |
| set nocompatible " Be iMproved | |
| endif | |
| let vimplug_exists=expand('~/.vim/autoload/plug.vim') |
| apiVersion: apps/v1beta1 | |
| kind: Deployment | |
| metadata: | |
| name: mssql-deployment | |
| spec: | |
| replicas: 1 | |
| template: | |
| metadata: | |
| labels: | |
| app: mssql |
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| name: tdata | |
| spec: | |
| selector: | |
| matchLabels: | |
| run: tdata | |
| replicas: 2 | |
| template: |
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| name: tdata | |
| spec: | |
| selector: | |
| matchLabels: | |
| run: tdata | |
| replicas: 2 | |
| template: |