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 (newer 50 | ) (20 | 50 | 100 | 250 | 500)
  • 19:24, 29 March 2025 Busk talk contribs created page Go postgres simple memory sync (Created page with "``` package main import ( "context" "database/sql" "fmt" "log" "net/http" "sync" "time" _ "github.com/lib/pq"...")
  • 19:09, 29 March 2025 Busk talk contribs created page Pushproxy (Created page with "bash client ``` current_time_seconds=$(date +%s) ts=$((current_time_seconds - 0)) rn=$(( ( RANDOM % 20 ) + 10 )) echo $rn curl -X POST -g \ -u user1:pass1 \ --data...")
  • 22:17, 25 March 2025 Busk talk contribs created page Restore active directory group (Created page with "``` Get-ADObject -filter {samAccountName -eq "Example Group"} -IncludeDeletedObjects | Restore-ADObject -Verbose ```")
  • 16:26, 15 March 2025 Busk talk contribs created page Protobuf python mimir client (Created page with "``` #!/bin/bash set -eu mkdir -p prometheus_proto/gogoproto cd prometheus_proto wget https://raw.githubusercontent.com/prometheus/prometheus/main/prompb/remote.proto wget htt...")
  • 17:20, 11 March 2025 Busk talk contribs created page Azure monitor pagerduty terraform (Created page with "# Simple example of terraform for azure monitor & PD ``` locals { PAGERDUTY_INTEGRATION_KEY = "" ag_name = "" resource_group_name = "" sql_data...")
  • 18:25, 28 February 2025 Busk talk contribs created page Active Directory Join Linux Windows (Created page with "# Join script join-ad.sh ``` #!/bin/bash set -eux DEFAULT_OU="OU=Example,DC=corp,DC=example,DC=com" unjoin_domain() { echo "Unjoining from the current domain..." if...")
  • 18:25, 28 February 2025 Busk talk contribs deleted page Active Directory Linux Join (content was: "# Join script join-ad.sh ``` #!/bin/bash set -eux DEFAULT_OU="OU=Example,DC=corp,DC=example,DC=com" unjoin_domain() { echo "Unjoining from the current domain..." if sudo realm leave; then echo "Domain unjoin complete. You may now rejoin the domain." else echo "Failed to unjoin domain. Please check your configuration." fi } REALM_OUTPUT=$(realm list 2...", and the only contributor was "Busk" (talk))
  • 17:27, 26 February 2025 Busk talk contribs created page Active Directory Linux Join (Created page with "#!/bin/bash set -eu DEFAULT_OU="OU=linux,OU=test,DC=corp,DC=example,DC=com" unjoin_domain() { echo "Unjoining from the current domain..." sudo realm leave echo "...")
  • 03:31, 25 February 2025 Busk talk contribs created page Mv pvc k8s (Created page with "# Script mv-pvc.sh ``` #!/bin/bash set -eux # Function to display usage instructions usage() { echo "Usage: $0 <old_pvc_name> <new_pvc_name> <new_pvc_size_Gi> <new_storage...")
  • 12:11, 24 February 2025 Busk talk contribs created page Grafana multitenancy (Created page with "https://medium.com/otomi-platform/multi-tenancy-with-loki-promtail-and-grafana-demystified-e93a2a314473")
  • 15:56, 23 February 2025 Busk talk contribs created page Mimir push reverse proxy in go (Created page with "```CREATE TABLE users ( username TEXT PRIMARY KEY, password TEXT NOT NULL ); INSERT INTO users (username, password) VALUES ('admin', 'password123'); ``` ``` package...")
  • 04:18, 22 February 2025 Busk talk contribs created page Ceph objectstore test (Created page with "Install tool s5cmd - mc and aws cli are other options ``` curl -LO https://github.com/peak/s5cmd/releases/download/v2.3.0/s5cmd_2.3.0_linux_amd64.deb && sudo apt install -y ./...")
  • 15:31, 21 February 2025 Busk talk contribs created page Ceph bucket (Created page with "Ceph Bucket ceph-bucket storage class WF ``` Workflow of ceph-bucket in Rook-Ceph 1. Define a CephObjectStore (Ceph RGW) Before creating a bucket, you must have a CephObjectSt...")
  • 02:02, 21 February 2025 Busk talk contribs created page Go prometheus client example (Created page with "# Simple client ``` set -a MIMIR_USERNAME=myuser MIMIR_PASSWORD=mypass MIMIR_URL=https://mimir.example.com/api/v1/push ``` promql ``` instance=go-client ``` ``` package main...")
  • 18:40, 20 February 2025 Busk talk contribs created page Aks delete node (Created page with "``` #!/bin/bash # Variables RESOURCE_GROUP="your-resource-group" CLUSTER_NAME="your-aks-cluster" NODE_NAME="your-node-name" # Function to get the node resource group get_nod...")
  • 18:52, 12 February 2025 Busk talk contribs created page Secrets diff (Created page with "# Secrets diff and create ``` if ! kubectl get secret netbox-tls -o yaml | grep -q "$(base64 < tls.crt)"; then kubectl delete secret netbox-tls --ignore-not-found kubectl...")
  • 15:33, 12 February 2025 Busk talk contribs created page Dockerfile examples (Created page with "# Examples ## Multistage build - builds using debian runs using apline ``` FROM ubuntu ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y golang-go...")
  • 15:17, 12 February 2025 Busk talk contribs created page Strace (Created page with "strace -p 19890 -f -cw")
  • 03:23, 12 February 2025 Busk talk contribs created page Cks (Created page with "https://github.com/leandrocostam/cks-preparation-guide")
  • 02:42, 12 February 2025 Busk talk contribs created page Ckad cheat1 (Created page with "``` # Good Links http://www.yamllint.com/ https://youtu.be/02AA5JRFn5w ######################################### minikube ######################################### minikube s...")
  • 21:26, 5 February 2025 Busk talk contribs created page Ad clean-up (Created page with "# Cleanup of AD ## Create users file account line-by-line notepad users.txt and paste SAMAccountNames ## Disable disable-users-txt.ps1 ``` Import-Module ActiveDirectory $t...")
  • 17:37, 4 February 2025 Busk talk contribs created page Aks upgrade (Created page with "# AKS Upgrade ``` # Azure Kubernetes Service (AKS) Upgrade Guide Current Version: 1.29.7 - Upgrading to Newer Versions ## Table of Contents - [Prerequisites](#prerequisites)...")
  • 15:41, 4 February 2025 Busk talk contribs created page Nginx deploy example (Created page with "# Simple Example ``` --- apiVersion: apps/v1 kind: Deployment metadata: name: nginx labels: app: nginx spec: replicas: 2 selector: matchLabels: app: ngin...")
  • 23:51, 2 February 2025 Busk talk contribs created page Raid new (Created page with "``` RAID 5 / RAID 6 64KB - 128KB Balances performance and efficiency; avoids excessive small writes. RAID 10 128KB - 256KB Best for VMware, as it minimizes RAID overhead and s...")
  • 10:57, 29 January 2025 Busk talk contribs created page K8s monitor namespace pd (Created page with "``` # Use Golang as the base image FROM golang:1.20 AS builder # Set working directory WORKDIR /app # Copy Go modules and download dependencies COPY go.mod go.sum ./ RUN go...")
  • 21:40, 24 January 2025 Busk talk contribs created page Psql install (Created page with "# jammy ``` sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ jammy-pgdg main" > /etc/apt/sources.list.d/pgdg.list' wget --quiet -O - https://www.postgresql.org/m...")
  • 15:56, 24 January 2025 Busk talk contribs created page Netbox helm (Created page with "# This needs some changes but is a start ``` helm install netbox oci://ghcr.io/netbox-community/netbox-chart/netbox \ --set superuser.password=yourSuperuserPassword \ --se...")
  • 21:28, 21 January 2025 Busk talk contribs created page Sumologic rsyslog (Created page with "https://help.sumologic.com/docs/send-data/hosted-collectors/cloud-syslog-source/rsyslog/ # rsyslog.conf replace <MY_SECRET_TOKEN> & other settings as needed ``` module(lo...")
  • 21:31, 17 January 2025 Busk talk contribs created page Pv example (Created page with "``` apiVersion: v1 kind: PersistentVolume metadata: name: pv-foo spec: capacity: storage: 1Gi accessModes: - ReadWriteOnce persistentVolumeReclaimPolicy: Retai...")
  • 20:56, 17 January 2025 Busk talk contribs created page Aks azure cli snipperts (Created page with "Scale up or down if you need more or less minimum nodes for testing scenerios. ``` az aks nodepool update --resource-group $rg --cluster-name $name --name default --up...")
  • 17:08, 15 January 2025 Busk talk contribs created page Choco uninstall (Created page with "# Choco Uninstall ``` # Ensure the script is running as administrator if (-not ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInR...")
  • 00:08, 15 January 2025 Busk talk contribs created page K8s oneliners 1 (Created page with "kubectl get pods --all-namespaces -o jsonpath='{.items[*].spec.containers[*].image}' | tr -s 'space:' '\n' | sort | uniq")
  • 23:43, 14 January 2025 Busk talk contribs created page Debian CVEs (Created page with "# Debian CVEs ## How to Read CVEs Example Example CVE https://security-tracker.debian.org/tracker/CVE-2023-24329 Note fixed status lines https://serverfault.com/questions...")
  • 00:11, 12 January 2025 Busk talk contribs created page Cka command snippets (Created page with "Little command snippets ``` apiVersion: apps/v1 kind: DaemonSet metadata: name: configurator namespace: configurator spec: selector: matchLabels: name: config...")
  • 00:06, 12 January 2025 Busk talk contribs created page Networkpolicy k8s (Created page with "https://editor.networkpolicy.io/?id=zcUfypIhfMDOtj7U")
  • 06:48, 4 January 2025 Busk talk contribs created page Cka kubeadm init upgrade (Created page with "## Init Ubuntu 24.04 & 22.04 ``` #!/bin/bash set -eu k8s_minor_version=1.31 prep_k8s_node(){ sudo apt update && sudo apt upgrade -y sudo apt install apt-transport-https...")
  • 04:04, 4 January 2025 Busk talk contribs created page Kubeadm init google repo (Created page with "https://discuss.kubernetes.io/t/building-a-kubernetes-1-24-cluster-with-kubeadm/22047")
  • 00:40, 4 January 2025 Busk talk contribs created page Cka2 (Created page with " https://kubernetes.io/docs/setup/production-environment/tools/kubeadm/install-kubeadm/ ``` ``` https://github.com/cncf/curriculum/blob/master/CKA_Curriculum_v1.31.pdf")
  • 23:51, 3 January 2025 Busk talk contribs created page Cka cheat (Created page with "``` Writing down cheat sheets are awesome for digesting what you know in a small document. Source: RODNAE Productions, Pexels I’m writing this down in preparation my exam...")
  • 18:30, 3 January 2025 Busk talk contribs created page K8s api (Created page with " ``` all events (ev) podsecuritypolicies (psp) certificatesigningrequests (csr) horizontalpodautoscalers (hpa) podtemplates clusterrolebindings ingresses (ing) replicasets (r...")
  • 17:44, 3 January 2025 Busk talk contribs created page Curl k8s (Created page with "curl --cert userbob.pem --key userBob-key.pem \ --cacert /path/to/ca.pem \ https://k8sServer:6443/api/v1/pods")
  • 17:55, 29 December 2024 Busk talk contribs created page Quotes (Created page with "``` It is not the critic who counts; not the man who points out how the strong man stumbles, or where the doer of deeds could have done them better. The credit belongs to the...")
  • 18:29, 27 December 2024 Busk talk contribs created page Kubeadm kubernetes cluster Ubuntu 24.04 (Created page with "# Init ``` #!/bin/bash set -eu kubeadm_init(){ sudo apt update && sudo apt upgrade -y sudo apt install apt-transport-https curl -y sudo apt install containerd -y sudo...")
  • 15:52, 25 December 2024 Busk talk contribs created page Elasticsearch on k8s (Created page with "https://github.com/elastic/cloud-on-k8s https://www.elastic.co/guide/en/cloud-on-k8s/current/k8s-quickstart.html")
  • 22:35, 24 December 2024 Busk talk contribs created page SaltStack new (Created page with "# Install ``` mkdir -p /etc/apt/keyrings curl -fsSL https://packages.broadcom.com/artifactory/api/security/keypair/SaltProjectKey/public | sudo tee /etc/apt/keyrings/salt-arch...")
  • 22:28, 24 December 2024 Busk talk contribs created page Ansible kubernetes (Created page with "https://spacelift.io/blog/ansible-kubernetes")
  • 04:19, 24 December 2024 Busk talk contribs created page Zimbra commands (Created page with "``` sudo -u zimbra bash -c "sudo /opt/zimbra/common/sbin/postsuper -d ALL" ```")
  • 04:23, 23 December 2024 Busk talk contribs created page Kubeadm upgrade nodes (Created page with "``` #!/bin/bash # Update the package lists sudo apt update # Install the Kubernetes packages, specifying the desired version sudo apt install -y kubelet=1.31.* kubeadm=1.31....")
  • 03:59, 23 December 2024 Busk talk contribs created page SaltStack kubernetes (Created page with "https://github.com/fjudith/saltstack-kubernetes/blob/master/UPGRADING.md")
  • 04:40, 21 December 2024 Busk talk contribs created page Rancher k8s (Created page with "https://www.rancher.com/quick-start")
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)