Skip to content

Instantly share code, notes, and snippets.

{
"metadata": {
"name": "alpine-atk-priv",
"namespace": "default",
"attempt": 1,
"uid": "hdishd83djaidwnduwk28bcsb"
},
"log_directory": "/tmp",
"linux": {
}
@garygan89
garygan89 / portainer-deployment.yaml
Created October 29, 2021 06:22
Portainer-Deployment Example
apiVersion: apps/v1
kind: Deployment
metadata:
annotations:
deployment.kubernetes.io/revision: "1"
kubectl.kubernetes.io/last-applied-configuration: |
{"apiVersion":"apps/v1","kind":"Deployment","metadata":{"annotations":{},"name":"portainer-agent","namespace":"portels":{"app":"portainer-agent"}},"template":{"metadata":{"labels":{"app":"portainer-agent"}},"spec":{"containers":[{"env":,{"name":"AGENT_CLUSTER_ADDR","value":"portainer-agent-headless"},{"name":"KUBERNETES_POD_IP","valueFrom":{"fieldRef":{"f"portainer/agent:latest","imagePullPolicy":"Always","name":"portainer-agent","ports":[{"containerPort":9001,"protocol":"Ter-sa-clusteradmin"}}}}
creationTimestamp: "2021-10-26T04:54:58Z"
generation: 1
name: portainer-agent
@garygan89
garygan89 / fecb-deployment-alpine.yaml
Created October 4, 2021 03:02
fecb-deployment-alpine.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: alpine
spec:
replicas: 1
selector:
matchLabels:
app: alpine
template:
@garygan89
garygan89 / add-letsencrypt-trust-store.sh
Created September 23, 2021 09:12
Add letsencrypt trust store to Ubuntu in case it's not added
#!/bin/bash
# Add letsencrypt trust store to Ubuntu in case it's not added
CERT_FILE="LetsEncryptAcmeCA.crt"
cat <<EOF > $CERT_FILE
-----BEGIN CERTIFICATE-----
MIIFFjCCAv6gAwIBAgIRAJErCErPDBinU/bWLiWnX1owDQYJKoZIhvcNAQELBQAw
TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh
cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMjAwOTA0MDAwMDAw
WhcNMjUwOTE1MTYwMDAwWjAyMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNTGV0J3Mg
@garygan89
garygan89 / hostfile_win.txt
Created September 5, 2021 23:18
Hostfile (Windows) to access FE Cloud Services
192.168.10.195 traefik.fiduciaedge.io
192.168.10.195 vault.fiduciaedge.io
192.168.10.195 mender.fiduciaedge.io
192.168.10.195 minio.mender.fiduciaedge.io
192.168.10.195 api.fiduciaedge.io
192.168.10.195 prometheus.fiduciaedge.io
192.168.10.195 alertmanager.fiduciaedge.io
192.168.10.195 grafana.fiduciaedge.io
@garygan89
garygan89 / setup-tmux-resurrect.sh
Created August 29, 2021 22:43
Easy install tmux resurrect and continuum
#!/bin/bash
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
cat <<EOF > ~/.tmux.conf
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
# Plugin: tmux-resurrect
@garygan89
garygan89 / helloworldk8s.yaml
Last active June 14, 2021 18:51
Hello World for k8s
apiVersion: apps/v1
kind: Deployment
metadata:
name: hello-world
namespace: default
spec:
replicas: 1
selector:
matchLabels:
app: hello-world
@garygan89
garygan89 / start_rclonewebgui.md
Last active June 1, 2021 21:21
Start Rclone Web GUI

Used command line for years now, only to know the web GUI exist ! This is great to monitor stuffs that are ongoing instead of having to tmux into each rclone instance to know the progress. I still use Autorclone with my Google SA account to bypass the 750GB limit.

Start rclone web gui on Windows

.\rclone.exe rcd --rc-web-gui --rc-user admin --rc-pass password --rc-serve --rc-web-gui-no-open-browser

Start rclone web gui on Linux

rclone rcd --rc-web-gui --rc-user admin --rc-pass password --rc-serve --rc-web-gui-no-open-browser
@garygan89
garygan89 / .bashrc
Last active May 30, 2021 20:45
Bashrc for shorthand kubectl and etcd for k3s setup.
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
@garygan89
garygan89 / kubernetes-prometheusRule-noKubeSchedulerController-withnamespacelabel.yaml
Created May 19, 2021 23:39
Kubernetes Prometheus Rule without KubeScheduler and KubeController rules, and with namespace 'monitoring' added so that alertmanager custom receiver can receive the alerts.
apiVersion: monitoring.coreos.com/v1
kind: PrometheusRule
metadata:
labels:
app.kubernetes.io/name: kube-prometheus
app.kubernetes.io/part-of: kube-prometheus
prometheus: k8s
role: alert-rules
name: kubernetes-monitoring-rules
namespace: monitoring