All public logs

Jump to navigation Jump to search

Combined display of all available logs of UVOO Tech Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 03:09, 29 March 2021 Busk talk contribs created page Kubernetes Shortcuts (Created page with "# Short names ``` Short Full csr certificatesigningrequests cs componentstatuses cm configmaps ds daemonsets deploy deployments ep endpoints ev events hpa horizontalpo...")
  • 14:59, 28 March 2021 Busk talk contribs created page Kubernetes Postgres Operator (Created page with "https://access.crunchydata.com/documentation/postgres-operator/latest/quickstart/ https://github.com/CrunchyData/postgres-operator")
  • 16:41, 20 March 2021 Busk talk contribs created page Microk8s on LXD 2 (Created page with "for i in kub1 kube2 kube3; do sudo lxc init ubuntu:20.04 $i --vm -c limits.cpu=4 -c limits.memory=8GB lxc config device override $i root size=32GB do lxc start kub1 kub2 kub3")
  • 14:46, 20 March 2021 Busk talk contribs created page Kubernetes Troubleshooting (Created page with "rror: Kubernetes cluster unreachable: Get "http://localhost:8080/version?timeout=32s": dial tcp 127.0.0.1:8080: connect: connection refused root@singlekub:~# sudo kubectl conf...")
  • 02:15, 20 March 2021 Busk talk contribs created page Kubernetes Deploy (Created page with "https://testdriven.io/blog/running-flask-on-kubernetes/")
  • 15:49, 19 March 2021 Busk talk contribs created page Minikube on Windows (Created page with "https://github.com/microsoft/winget-cli/releases winget install minikube")
  • 22:35, 18 March 2021 Busk talk contribs created page Powershell Linting (Created page with "https://mathieubuisson.github.io/powershell-code-quality-pscodehealth/")
  • 19:19, 17 March 2021 Busk talk contribs created page Linux on Windows (Created page with "https://docs.microsoft.com/en-us/windows/wsl/install-manual")
  • 00:08, 16 March 2021 Busk talk contribs created page AWX (Created page with "https://github.com/ansible/awx-operator")
  • 15:57, 13 March 2021 Busk talk contribs created page Python Naming Convention (Created page with "module_name, package_name, ClassName, method_name, ExceptionName, function_name, GLOBAL_CONSTANT_NAME, global_var_name, instance_var_name, function_parameter_name, local_var_n...")
  • 14:34, 13 March 2021 Busk talk contribs created page Python Multiprocessing (Created page with " https://link.medium.com/JewFgJzVAeb")
  • 19:36, 11 March 2021 Busk talk contribs created page Pywinrm (Created page with "``` import winrm from decouple import config USERNAME = config('USERNAME') USERPASS = config('USERPASS') USERPASS = config('HOST') s = winrm.Session(HOST, auth=(USERNAME, USE...")
  • 19:23, 11 March 2021 Busk talk contribs created page Python Get Environment Variables (Created page with "https://able.bio/rhett/how-to-set-and-get-environment-variables-in-python--274rgt5")
  • 22:04, 9 March 2021 Busk talk contribs created page FreeBSD (Created page with "BSD has it's place. Here are some reasons to use it. https://unixsheikh.com/articles/technical-reasons-to-choose-freebsd-over-linux.html")
  • 15:35, 8 March 2021 Busk talk contribs created page Psycopg2 (Created page with "https://hackersandslackers.com/psycopg2-postgres-python/")
  • 21:15, 6 March 2021 Busk talk contribs created page Reactjs (Created page with "- https://github.com/expo/examples/blob/master/with-sqlite/App.js")
  • 13:59, 6 March 2021 Busk talk contribs created page Postgres Golang Rest Api Boilerplate (Created page with "- https://github.com/dhax/go-base-vue")
  • 06:24, 6 March 2021 Busk talk contribs created page Postgres Links (Created page with "- https://blog.arctype.com/postgres-notify-for-real-time-dashboards/")
  • 06:13, 6 March 2021 Busk talk contribs created page Sftpgo (Created page with "https://github.com/drakkan/sftpgo # Bash Examples up ``` for dir in /app/sftpgo/data /app/sftpgo/home /app/sftpgo/share; do mkdir -p $dir done docker run --name sftpgo...")
  • 20:04, 5 March 2021 Busk talk contribs created page PGP (Created page with " # Windows Install - https://docs.microsoft.com/en-us/system-center/orchestrator/standard-activities/pgp-encrypt-file?view=sc-orch-2019 - https://www.gnupg.org/ - DONATE Chea...")
  • 19:49, 4 March 2021 Busk talk contribs created page Get-psdrive (Created page with "# Get windows drive info size")
  • 19:48, 4 March 2021 Busk talk contribs created page Powershell Oneliners (Created page with " ### Get process owner ``` Get-WmiObject Win32_Process -Filter "name='sensu-agent.exe'" | Select Name, @{Name="UserName";Expression={$_.GetOwner().Domain+"\"+$_.GetOwner().Use...")
  • 17:51, 1 March 2021 Busk talk contribs created page LXD on CentOS (Created page with "https://www.cyberciti.biz/faq/set-up-use-lxd-on-centos-rhel-8-x/")
  • 19:19, 27 February 2021 Busk talk contribs created page Python Flask Docker-Compose (Created page with "https://testdriven.io/blog/dockerizing-flask-with-postgres-gunicorn-and-nginx/")
  • 18:51, 26 February 2021 Busk talk contribs created page Windows SSH Server (Created page with "https://techcommunity.microsoft.com/t5/itops-talk-blog/installing-and-configuring-openssh-on-windows-server-2019/ba-p/309540")
  • 00:10, 22 February 2021 Busk talk contribs created page Resume 2021 (Created page with "My Wiki: https://tech.uvoo.io/ (Dumping ground for things I’m working on.) Open Sourced Project: https://gitlab.com/pyrofex/numifex look under cicd for my work Git: https://...")
  • 23:40, 21 February 2021 Busk talk contribs created page Golang Cheatsheet (Created page with "Shameless rip from https://devhints.io/go ``` Introduction A tour of Go (tour.golang.org) Go repl (repl.it) Golang wiki (github.com) Hello world hello.go package main import...")
  • 18:27, 21 February 2021 Busk talk contribs created page Docker Swarm (Created page with "List all containers over swarm ``` docker node ps $(docker node ls -q) ```")
  • 22:07, 19 February 2021 Busk talk contribs created page DevOps Flows (Created page with "DevOps lifecyle breakdown and examles Code(git repo) -> Build -> Test -> Deploy -> Operate -> Monitor -> Code ...")
  • 16:43, 18 February 2021 Busk talk contribs created page Vmware Extend Disk Redhat (Created page with "https://kb.vmware.com/s/article/1006371 ``` To extend the logical volume: Caution: VMware recommends to take a complete backup of the virtual machine prior to making these...")
  • 01:41, 17 February 2021 Busk talk contribs created page Windows DNS (Created page with "Update A record ``` get-dnsserverresourcerecord -name "hostname" -ZoneName "example.com" Remove-DnsServerResourceRecord -ZoneName "example.com" -RRType "A" -Name "hostname" -R...")
  • 23:08, 15 February 2021 Busk talk contribs created page Docker-compose (Created page with "``` docker-compose up -d --force-recreate ``` -V, --renew-anon-volumes Recreate anonymous volumes instead of retrieving data from the previou...")
  • 20:58, 15 February 2021 Busk talk contribs created page Docker Shared Storage (Created page with "``` # create a reusable volume $ docker volume create --driver local \ --opt type=nfs \ --opt o=nfsvers=4,addr=192.168.1.1,rw \ --opt device=:/path/to/dir...")
  • 19:52, 15 February 2021 Busk talk contribs created page Docker-inspect (Created page with "docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' 5e1335481c38")
  • 03:42, 15 February 2021 Busk talk contribs created page Powerdns letsencrypt (Created page with "https://github.com/robin-thoni/certbot-pdns")
  • 00:09, 15 February 2021 Busk talk contribs created page Kubernetes Hairpin-Proxy (Created page with "Still doesn't work ``` kubectl get svc -n ingress | grep ingress output: nginx-ingress-microk8s-controller-86rjl.ingress.svc.cluster.local kubectl edit deploy hairpin-proxy-...")
  • 22:04, 14 February 2021 Busk talk contribs created page Kubernetes Simple on Microk8s (Created page with "``` microk8s enable ingress microk8s enable dns kubectl create deployment exampleservice --image=gcr.io/google-samples/hello-app:2.0 -n ingress-nginx kubectl expose deployme...")
  • 19:14, 14 February 2021 Busk talk contribs created page Ingress-nginx (Created page with "# Install ``` kubectl create namespace ingress-nginx helm install --namespace ingress-nginx ingress-nginx ingress-nginx/ingress-nginx ```")
  • 14:47, 14 February 2021 Busk talk contribs created page Kubernetes ingress https (Created page with "https://cloud.google.com/kubernetes-engine/docs/how-to/ingress-multi-ssl")
  • 19:12, 13 February 2021 Busk talk contribs created page Kubernetes Cleanup (Created page with "Delete all namespaces you don't want https://stackoverflow.com/questions/61365202/nginx-ingress-service-ingress-nginx-controller-admission-not-found")
  • 16:09, 13 February 2021 Busk talk contribs created page Kubernetes Letsencrypt (Created page with "- https://github.com/jetstack/cert-manager - https://cert-manager.io/docs/ - https://cert-manager.io/docs/installation/kubernetes/")
  • 05:41, 13 February 2021 Busk talk contribs created page Kubernetes RBAC (Created page with "https://jeremievallee.com/2018/05/28/kubernetes-rbac-namespace-user.html")
  • 05:39, 13 February 2021 Busk talk contribs created page Kubernetes Api (Created page with "https://kubernetes.io/docs/tasks/administer-cluster/access-cluster-api/")
  • 04:39, 13 February 2021 Busk talk contribs created page Kubernetes Loadbalancer Metallb (Created page with "https://kapuablog.wordpress.com/2020/02/15/k8s-and-metallb-a-local-non-cloud-loadbalancer/")
  • 21:43, 12 February 2021 Busk talk contribs created page Ssh Ciphers (Created page with "ssh -Q kex host.example.com ssh -Q cipher host.example.com You can manually try ciphers and then end up using something like sftp -c aes256-cbc -oKexAlgorithms=diffie-hellman...")
  • 20:29, 12 February 2021 Busk talk contribs created page Redhat Subscription (Created page with "# subscription-manager refresh # subscription-manager attach --auto # subscription-manager status")
  • 00:31, 12 February 2021 Busk talk contribs created page Github Actions Runner Using Docker (Created page with "https://testdriven.io/blog/github-actions-docker/")
  • 17:05, 11 February 2021 Busk talk contribs created page Windows Host as LXD vm (Created page with "It is possible to build Windows images for LXD, but this process is currently very very manual and involves either a bunch of custom raw.qemu flags to get a temporary graphica...")
  • 12:15, 9 February 2021 Busk talk contribs created page Pdnsutil (Created page with "https://gist.github.com/alainwolf/4ba6466c60734a254219d47154dbd86c")
  • 16:01, 8 February 2021 Busk talk contribs created page Scratch (Created page with "``` Search PowerDNS Authoritative: Lua Records Posted by berthubert Hi everyone, We are happy to share a new development with you, one that we hinted at over a year ago: Lu...")
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)