Quick Adds
- Direction:
Pull
- User:
inanimate
- Remote module name
<mod>/<path>/*
- Enabled
- Recursive
- Times
- Archive
- Preserve Extended Attributes
- Delay Updates
Quick Adds
Pull
inanimate
<mod>/<path>/*
Folks, Leave me a comment / URL if something you like is missing!
Resource | Description |
---|---|
Kube Academy | https://kube.academy/ |
kuernetes-101 | https://kube.academy/courses/kubernetes-101/ |
Docs Home | https://kubernetes.io/docs/home/ |
CKS CKA CKAD Simulator | https://killer.sh/ |
apiVersion: networking.k8s.io/v1beta1 | |
kind: Ingress | |
metadata: | |
name: engage-ingress | |
annotations: | |
kubernetes.io/ingress.class: nginx-external | |
spec: | |
rules: | |
- host: engage.staging.example.com | |
http: |
<?xml version="1.0" encoding="utf-8"?> | |
<Client name="Chromecast"> | |
<TranscodeTargets> | |
<VideoProfile protocol="http" container="matroska" codec="h264,h265,hevc" audioCodec="eac3,ac3,aac,mp3" context="streaming" /> | |
<VideoProfile protocol="http" container="mkv" codec="h264,h265,hevc" audioCodec="eac3,ac3,aac,mp3" context="streaming" /> | |
<VideoProfile protocol="http" container="mp4" codec="h264,h265,hevc" audioCodec="eac3,ac3,aac,mp3" context="streaming" /> | |
<MusicProfile container="matroska" codec="mp3" /> | |
<MusicProfile container="mkv" codec="mp3" /> | |
<PhotoProfile container="jpeg" /> | |
<SubtitleProfile container="ass" codec="ass" /> |
function kcc () { | |
usage () { | |
echo -en "Usage: $0 <context> <namespace>\n" | |
} | |
result () { | |
echo -en "-> Context: \e[96m$context\e[0m\n-> Namespace: \e[92m$namespace\n\e[0m" | |
} | |
if [ $# -eq 0 ] ; then | |
## If no options, print the current context/cluster and namespace | |
context="$(kubectl config current-context 2>/dev/null)" |
This list has moved to a GitHub repo for easier tracking: https://github.com/coreos/awesome-kubernetes-extensions
Please comment below if you are using Kubernetes Third-Party Resources and I will add you to the list.
Known Users:
--- | |
################################################################################ | |
## K8S Default Backend for Nginx if no endpoint is available e.g. 404 servers | |
############################################################################### | |
apiVersion: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
name: nginx-default-backend | |
namespace: kube-system | |
labels: |
#!/bin/sh | |
# If you are new to arch, I encourage you to at least read and understand what | |
# this script does befor blindley running it. | |
# That's why I didn't make a one-liner out of it so you have an easier time | |
# reading and understanding it :) | |
# | |
# This scripts purpose is purly to save you a few seconds on your new installation. | |
# | |
# Enjoy your time on an awesome system. Arch FTW! |
# Make sure you grab the latest version | |
curl -OL https://github.com/google/protobuf/releases/download/v3.2.0/protoc-3.2.0-linux-x86_64.zip | |
# Unzip | |
unzip protoc-3.2.0-linux-x86_64.zip -d protoc3 | |
# Move protoc to /usr/local/bin/ | |
sudo mv protoc3/bin/* /usr/local/bin/ | |
# Move protoc3/include to /usr/local/include/ |