User contributions
Jump to navigation
Jump to search
- 16:27, 31 March 2025 diff hist +10,394 Conntrackd current
- 16:26, 31 March 2025 diff hist +76 Conntrackd
- 19:24, 29 March 2025 diff hist +4,119 N Go postgres simple memory sync Created page with "``` package main import ( "context" "database/sql" "fmt" "log" "net/http" "sync" "time" _ "github.com/lib/pq"..." current
- 19:09, 29 March 2025 diff hist +441 N 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..." current
- 22:17, 25 March 2025 diff hist +116 N Restore active directory group Created page with "``` Get-ADObject -filter {samAccountName -eq "Example Group"} -IncludeDeletedObjects | Restore-ADObject -Verbose ```" current
- 16:27, 15 March 2025 diff hist +6 Protobuf python mimir client current
- 16:26, 15 March 2025 diff hist +1,952 N 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 diff hist +2,816 N 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..." current
- 16:58, 3 March 2025 diff hist 0 Go install current
- 21:08, 2 March 2025 diff hist +35 Kubeadm init ubuntu 24.04 current
- 20:57, 2 March 2025 diff hist +38 Kubeadm init ubuntu 24.04
- 18:25, 28 February 2025 diff hist +2,615 N 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..." current
- 05:21, 27 February 2025 diff hist +47 Mv pvc k8s current
- 01:00, 27 February 2025 diff hist +8,360 Mv pvc k8s
- 23:33, 26 February 2025 diff hist +319 Mv pvc k8s
- 19:09, 26 February 2025 diff hist +4,847 Mv pvc k8s
- 18:41, 26 February 2025 diff hist +1,238 Mv pvc k8s
- 22:30, 25 February 2025 diff hist +1,690 Mv pvc k8s
- 03:58, 25 February 2025 diff hist +5,317 Mv pvc k8s
- 03:31, 25 February 2025 diff hist +2,396 N 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 diff hist +103 N Grafana multitenancy Created page with "https://medium.com/otomi-platform/multi-tenancy-with-loki-promtail-and-grafana-demystified-e93a2a314473" current
- 03:41, 24 February 2025 diff hist +120 Mimir push reverse proxy in go current
- 03:38, 24 February 2025 diff hist +797 Mimir push reverse proxy in go
- 23:23, 23 February 2025 diff hist +37 Mimir push reverse proxy in go
- 23:17, 23 February 2025 diff hist +279 Mimir push reverse proxy in go
- 23:16, 23 February 2025 diff hist -2,189 Mimir push reverse proxy in go
- 23:15, 23 February 2025 diff hist +2,840 Mimir push reverse proxy in go
- 21:20, 23 February 2025 diff hist +13 Mimir push reverse proxy in go
- 20:58, 23 February 2025 diff hist +5,090 Mimir push reverse proxy in go
- 16:27, 23 February 2025 diff hist +1,089 Mimir push reverse proxy in go
- 16:03, 23 February 2025 diff hist +1 Mimir push reverse proxy in go
- 15:56, 23 February 2025 diff hist +1,956 N 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..."
- 05:03, 22 February 2025 diff hist +76 Ceph objectstore test current
- 05:03, 22 February 2025 diff hist +72 Ceph objectstore test
- 05:02, 22 February 2025 diff hist +707 Ceph objectstore test
- 04:18, 22 February 2025 diff hist +1,857 N 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 diff hist +2,523 N 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..." current
- 02:02, 21 February 2025 diff hist +3,132 N 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..." current
- 18:40, 20 February 2025 diff hist +1,461 N 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..." current
- 02:08, 19 February 2025 diff hist +79 Cks current
- 19:50, 12 February 2025 diff hist +310 Secrets diff current
- 18:52, 12 February 2025 diff hist +520 N 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 diff hist +274 N 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..." current
- 15:17, 12 February 2025 diff hist +22 N Strace Created page with "strace -p 19890 -f -cw" current
- 03:23, 12 February 2025 diff hist +54 N Cks Created page with "https://github.com/leandrocostam/cks-preparation-guide"
- 02:42, 12 February 2025 diff hist +27,641 N Ckad cheat1 Created page with "``` # Good Links http://www.yamllint.com/ https://youtu.be/02AA5JRFn5w ######################################### minikube ######################################### minikube s..." current
- 21:26, 5 February 2025 diff hist +2,162 N 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..." current
- 17:37, 4 February 2025 diff hist +6,205 N 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)..." current
- 15:41, 4 February 2025 diff hist +3,452 N 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..." current
- 23:51, 2 February 2025 diff hist +318 N 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..." current