Public GitOps repository for showing how I run my services on k3s https://tobru.ch/
This repository has been archived on 2023-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Tobias Brunner 5dc468904b
continuous-integration/drone/push Build is passing Details
use camper device
2022-05-19 20:34:26 +02:00
_apps install linkding 2022-05-15 17:12:30 +02:00
_test only warn for some policies 2020-05-04 21:15:38 +02:00
acmedns disable registration 2021-11-13 09:35:03 +01:00
argocd Update dependency quay.io/argoproj/argocd to v2.3.3 2022-03-30 16:43:21 +00:00
cert-manager Merge pull request 'Update dependency quay.io/jetstack/cert-manager-cainjector to v1.7.1' (#784) from renovate/quay.io-jetstack-cert-manager-cainjector-1.x into master 2022-03-22 17:47:54 +00:00
docspell Merge pull request 'Update dependency docker.io/docspell/restserver to v0.35.0' (#831) from renovate/docker.io-docspell-restserver-0.x into master 2022-05-01 18:10:20 +00:00
drone Update dependency docker.io/drone/drone to v2.11.1 2022-03-15 17:43:48 +00:00
familydb allways pull image 2021-05-04 20:54:17 +02:00
graphs Update dependency grafana/grafana to v8.5.2 2022-05-04 16:43:23 +00:00
headscale install headscale 2022-05-05 21:47:39 +02:00
healthcheck correct ns for hc 2021-08-26 23:12:21 +02:00
influxdb upgrade influxdb2 2021-11-12 20:46:40 +01:00
ioteer traccar env var 2021-10-19 21:05:08 +02:00
ipapi fix ingresses 2021-12-13 20:23:05 +01:00
k8up install k8up crds 2021-12-15 20:24:40 +01:00
kube-cleanup-operator Update quay.io/lwolf/kube-cleanup-operator Docker tag to v0.8.2 2021-07-09 18:00:52 +00:00
kube-system new config for externalTrafficPolicy 2022-01-04 21:51:10 +01:00
linkding install linkding 2022-05-15 17:12:30 +02:00
mealie Update docker.io/hkotel/mealie Docker tag to v0.5.6 2022-02-05 17:43:25 +00:00
miniflux Merge pull request 'Update dependency docker.io/miniflux/miniflux to v2.0.36' (#772) from renovate/docker.io-miniflux-miniflux-2.x into master 2022-03-14 19:20:48 +00:00
mosquitto bridge pycom ruuvi topic from ttn 2022-02-06 11:59:53 +01:00
mqttwarn drop rssi from measurement 2022-02-06 13:16:17 +01:00
owntracks use camper device 2022-05-19 20:34:26 +02:00
pylokid install pylokid 2020-02-08 15:59:06 +01:00
renovate Update dependency renovate/renovate to v32.63.1 2022-05-19 16:43:23 +00:00
sealed-secrets Update quay.io/bitnami/sealed-secrets-controller Docker tag to v0.17.3 2022-01-27 17:43:21 +00:00
stakater-reloader Update dependency stakater/reloader to v0.0.110 2022-03-25 17:43:58 +00:00
system-upgrade-controller Update dependency rancher/system-upgrade-controller to v0.9.1 2022-03-22 17:44:38 +00:00
tobru-ch Update dependency ghost to v4.47.4 2022-05-18 16:43:27 +00:00
traccar Update dependency docker.io/mariadb to v10.8 2022-02-26 17:43:22 +00:00
.drone.yml use kubernetes for drone build 2021-08-24 21:38:05 +02:00
README.md rshared info 2021-08-24 20:09:26 +02:00
renovate.json statping is gone 2021-09-09 20:15:42 +02:00

README.md

GitOps for tbrnt k3s hosting

Build Status

Repo structure

  • Each subdirectory is a namespace
  • _apps is the meta directory for Argo CD apps
  • Another private repo contains stuff in a more approachable format, f.e. for dealing with updating sealed-secrets: gitops-tbrnt-private
  • _tests contains some Open Policy Agent rego files which are used in the Drone CI pipeline to validate configuration.

Usage

Argo CD

Access

Either

sudo -E kubefwd svc -n argocd and then https://argocd-server/

or

kubectl port-forward svc/argocd-server -n argocd 8080:443 and then https://localhost:8080/

CLI

  • argocd login argocd-server
  • argocd app list
  • argocd app sync <name>

Kubeseal (Sealed Secrets)

See README of apps. Basically:

kubeseal --controller-namespace sealed-secrets -o yaml -n MYNS < ../../gitops-tbrnt-private/MYNS/MYSECRET.yaml > MYSECRET-secret.yaml

Bootstrap GitOps

After installing k3s, do:

# install Argo CD
kubectl create ns argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
kubectl get pods -n argocd -l app.kubernetes.io/name=argocd-server -o name | cut -d'/' -f 2
argocd login argocd-server

# Restore Sealed Secrets secret key
kubectl create ns sealed-secrets
kubectl apply -f ../gitops-tbrnt-private/sealed-secrets/master-key.yaml

# Instantiate Argo Root App
kubectl apply -f _apps/apps.yaml

# Let Argo CD do it's job
argocd app sync apps
argocd app sync sealed-secrets
argocd app sync -l app.kubernetes.io/instance=apps

TODO:

  • Restore PVCs via K8up

k3s on Alpine

Installing: Alpine

Basically follow the Alpine wiki.

Then install prerequisites and some essential packages:

apk add \
  vim \
  iptables \
  wireguard-virt \
  bash \
  curl

Needs community repo enabled in /etc/apk/repositories.

Tweak Sysctl in /etc/sysctl.conf:

fs.inotify.max_user_instances = 8192
fs.inotify.max_user_watches = 524288

Add rshared mount option to root filesystem for node-exporter to work correctly.

Installing: k3s

Via k3sup:

k3sup install \
  --ip=185.95.218.11 \
  --user=root \
  --local-path=~/.kube/config_knurrli2 \
  --sudo=false \
  --k3s-extra-args='--tls-san knurrli.tobrunet.ch --cluster-cidr 10.44.0.0/16 --flannel-backend wireguard'

Helpful infos

Paths

  • Volumes: /var/lib/rancher/k3s/storage/
  • Config: /etc/rancher/k3s/
  • Manifests: /var/lib/rancher/k3s/server/manifests/

Links

Configure Wireguard

/etc/network/interfaces

auto wg0
iface wg0 inet static
    address 10.42.42.16
    netmask 255.255.255.0
    pre-up ip link add dev wg0 type wireguard
    pre-up wg setconf wg0 /etc/wireguard/wg0.conf
    post-up ip route add 10.42.42.0/24 dev wg0
    post-down ip link delete dev wg0