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)
  • 22:12, 17 October 2021 Busk talk contribs created page Kubeval (Created page with " kubeval --schema-location https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master -d apps")
  • 04:43, 17 October 2021 Busk talk contribs created page K8s configmap deployment (Created page with "https://stackoverflow.com/questions/37317003/restart-pods-when-configmap-updates-in-kubernetes")
  • 04:00, 17 October 2021 Busk talk contribs created page K8s yaml validation (Created page with " https://link.medium.com/u3mYyWh1pkb")
  • 21:57, 16 October 2021 Busk talk contribs created page Influxdb (Created page with "https://github.com/influxdata/influxdata-operator")
  • 19:02, 16 October 2021 Busk talk contribs created page Ubuntu Reset Time in Container (Created page with "``` export DEBIAN_FRONTEND=noninteractive ln -fs /usr/share/zoneinfo/America/Denver /etc/localtime apt-get install -y tzdata dpkg-reconfigure --frontend noninteractive tzdata ```")
  • 15:33, 15 October 2021 Busk talk contribs created page Github Actions Play (Created page with "https://dev.to/ku6ryo/how-to-set-env-parameters-conditionally-in-github-actions-1g6a")
  • 14:52, 14 October 2021 Busk talk contribs created page K8s DNS Troubleshooting (Created page with " kubectl apply -f testpod-dnsutils.yaml kubectl exec -i -t dnsutils -- nslookup cisco.com 10.x.x.x kubectl exec -i -t dnsutils -- nslookup cisco.com kubectl logs -n 10...")
  • 09:59, 14 October 2021 Busk talk contribs created page Kubectl get (Created page with "``` kubectl get secret "my_secret" -n "my_namespace" --context "my_context" -o yaml \ | yq d - 'metadata.resourceVersion' \ | yq d - 'metadata.uid' \ | yq d - 'met...")
  • 23:24, 13 October 2021 Busk talk contribs created page Azure Connectivity Issues (Created page with "For Postgres and other services make sure endpoint status is enable on your VNET rules using Virtual Network. Sometimes these disappear. You could allow statics. Make sure Vi...")
  • 17:53, 12 October 2021 Busk talk contribs created page Pgloader (Created page with "Ubuntu fix ``` apt update && apt install -y build-essential sbcl curl -LO https://github.com/dimitri/pgloader/releases/download/v3.6.2/pgloader-bundle-3.6.2.tgz tar xf pgloa...")
  • 16:45, 12 October 2021 Busk talk contribs created page K8s Create Ubuntu Utility Container (Created page with "You can easily create a utility container with the following commands ``` kubectl run ubuntu --image=ubuntu -- sleep 3600 ``` ``` echo test > test.txt kubectl cp test.txt ub...")
  • 03:37, 12 October 2021 Busk talk contribs created page K8s Canary (Created page with " https://link.medium.com/4rwkHQRGhkb")
  • 03:03, 11 October 2021 Busk talk contribs created page Microk8s DNS Troubleshooting (Created page with "https://github.com/ChristofSchwarz/qseok_on_Microk8s/issues/1")
  • 18:48, 10 October 2021 Busk talk contribs created page Busybox (Created page with "``` kubectl run -i --tty --rm debug --image=busybox --restart=Never -- sh ```")
  • 15:52, 10 October 2021 Busk talk contribs created page Jinja (Created page with " ``` $ export MYENVVAR=foo ``` $ nano example.py ``` from jinja2 import Template import os template = Template("Hello {{ env['MYENVVAR'] or 'DefaultVal' }}") r = template.ren...")
  • 13:20, 10 October 2021 Busk talk contribs created page K8s Multi-Zone (Created page with "https://kubernetes.io/docs/tasks/administer-cluster/highly-available-control-plane/")
  • 04:42, 10 October 2021 Busk talk contribs created page K8s Ingress (Created page with "https://www.ibm.com/cloud/blog/kubernetes-ingress")
  • 02:32, 10 October 2021 Busk talk contribs created page K8s sandbox (Created page with "``` apiVersion: apps/v1 kind: Deployment metadata: name: testnginx-deployment namespace: test spec: selector: matchLabels: app: testnginx replicas: 2 templ...")
  • 20:08, 7 October 2021 Busk talk contribs created page Ssh-keygen (Created page with "``` ssh-keygen -f "~/.ssh/known_hosts" -R "10.x.x.x" ```")
  • 17:54, 4 October 2021 Busk talk contribs created page Yq (Created page with "kubectl get configMap zabbix-server -oyaml | yq eval 'del(.metadata.resourceVersion, .metadata.uid, .metadata.annotations, .metadata.creationTimestamp, .metadata.selfLink, .me...")
  • 15:40, 1 October 2021 Busk talk contribs created page Terraform Apply Fail (Created page with "# Partial failed terraform apply If terraform fails part way though and is left in inconsistent state even after you fix issues you might get resource already exists with th...")
  • 15:51, 30 September 2021 Busk talk contribs created page Python Play (Created page with "# 1 ``` [d['value'] for d in l] ``` # 2 ``` list1 = ["a", "b" ,"c"] # a bunch of things dictionary1 = {"a":1, "b":2, "c":3} # like a list but each part of it has an associat...")
  • 23:45, 27 September 2021 Busk talk contribs created page Github Actions Quirks (Created page with "https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast")
  • 12:42, 27 September 2021 Busk talk contribs created page Kubernetes Pipelines Best Practices (Created page with "https://cloud.google.com/architecture/best-practices-continuous-integration-delivery-kubernetes")
  • 20:06, 23 September 2021 Busk talk contribs created page Install MSSQL ODBC Driver on Ubuntu (Created page with "``` #!/usr/bin/env bash set -ex . /etc/os-release curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - curl https://packages.microsoft.com/config/$ID/$VERSI...")
  • 21:27, 21 September 2021 Busk talk contribs created page Windows High CPU Trace via Process (Created page with "# Get reason for high cpu Run with admin privileges ## Get top processes ``` PS C:\> Get-Counter -ErrorAction SilentlyContinue '\Process(*)\% Processor Time' | Select-Objec...")
  • 17:27, 21 September 2021 Busk talk contribs created page Terraform fmt (Created page with "terraform fmt -check -recursive -diff terraform fmt -recursive")
  • 23:59, 16 September 2021 Busk talk contribs created page Zabbix LDAP (Created page with "https://github.com/zabbix-tooling/zabbix-ldap-sync")
  • 14:31, 15 September 2021 Busk talk contribs created page Azure Fileshares (Created page with "Ubuntu ``` sharename=<mynamespace> sudo apt install cifs-utils sudo mount -t cifs //$sharename.file.core.windows.net/smbtest /mnt/smbtest -o vers=3.0,credentials=/etc/smbcred...")
  • 11:49, 15 September 2021 Busk talk contribs created page Envsubst (Created page with "Use bash to replace variables in host https://serverfault.com/questions/287688/templating-with-linux-in-a-shell-script ``` Example template file apache.tmpl: <VirtualHost *...")
  • 04:28, 14 September 2021 Busk talk contribs created page Kubernetes Deploy Methods (Created page with "https://www.reddit.com/r/devops/comments/b9fkmi/terraforms_kubernetes_provider_how_is_it/")
  • 02:18, 11 September 2021 Busk talk contribs created page Zabbix Agent Install (Created page with "https://github.com/Twikki/Zabbix")
  • 19:56, 9 September 2021 Busk talk contribs created page Pfx openssll (Created page with "openssl pkcs12 -in path.p12 -out newfile.crt.pem -clcerts -nokeys openssl pkcs12 -in path.p12 -out newfile.key.pem -nocerts -nodes")
  • 04:21, 9 September 2021 Busk talk contribs created page Kubectl rollout (Created page with "kubectl rollout restart deployment my-server -n dev-app")
  • 00:37, 9 September 2021 Busk talk contribs created page Kubernetes Smb (Created page with "https://serverfault.com/questions/1024219/cannot-mount-cifs-storage-on-k8s-cluster")
  • 20:33, 6 September 2021 Busk talk contribs created page Chocolatey Repo Proxy Using Sonatype Nexus3 (Created page with "https://www.youtube.com/watch?v=UehkG1VHtz0\ https://help.sonatype.com/repomanager3/formats/nuget-repositories/nuget-proxy-repositories https://hub.docker.com/r/sonatype/nex...")
  • 18:48, 2 September 2021 Busk talk contribs created page Generate Random Password (Created page with "``` < /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c${1:-32};echo; ```")
  • 18:47, 2 September 2021 Busk talk contribs created page Grafana Kubernetes (Created page with "https://grafana.com/docs/grafana/latest/administration/configuration/")
  • 01:39, 1 September 2021 Busk talk contribs created page Github API (Created page with "``` #!/usr/bin/env bash set -e shopt -s expand_aliases alias curl="curl --user \"$GITREPO_USERr:$GITREPO_PASS\"" getSecrets(){ curl \ -H "Accept: application/vnd.gith...")
  • 04:41, 30 August 2021 Busk talk contribs created page Envoy ADC (Created page with "https://dropbox.tech/infrastructure/how-we-migrated-dropbox-from-nginx-to-envoy")
  • 19:16, 29 August 2021 Busk talk contribs created page Ssh prep for pipeline (Created page with "Example of Using SSH for simple deployment in pipeline # Code main.sh ``` #!/usr/bin/env bash set -ex shopt -s expand_aliases prepSsh(){ ssh_host=$SSH_HOST ssh_user=$SS...")
  • 16:37, 29 August 2021 Busk talk contribs created page Github Actions Runner Using Kubernetes (Created page with "- https://sanderknape.com/2020/03/self-hosted-github-actions-runner-kubernetes/ - - - -")
  • 23:38, 26 August 2021 Busk talk contribs created page Bash oneliners (Created page with "``` grep -rl oldtext . | xargs sed -i 's/oldtext/newtext/g' ```")
  • 23:20, 26 August 2021 Busk talk contribs created page Kubernetes RBAC Role Examples (Created page with "https://stackoverflow.com/questions/48118125/kubernetes-rbac-role-verbs-to-exec-to-pod To allow a subject to read both pods and pod logs, and be able to exec into the pod, yo...")
  • 16:17, 26 August 2021 Busk talk contribs created page Kubernetes MultiZone Cluster (Created page with "https://kubernetes.io/blog/2016/03/building-highly-available-applications-using-kubernetes-new-multi-zone-clusters-aka-ubernetes-lite/")
  • 15:58, 25 August 2021 Busk talk contribs created page Github Actions SSH Keys (Created page with "https://zellwk.com/blog/github-actions-deploy/")
  • 13:39, 23 August 2021 Busk talk contribs moved page Microk8s Cert-managet to Microk8s Cert-manager without leaving a redirect
  • 12:17, 23 August 2021 Busk talk contribs created page Microk8s Cert-managet (Created page with "https://www.reddit.com/r/kubernetes/comments/g3z5sp/microk8s_with_certmanager_and_letsecncrypt/ https://www.madalin.me/wpk8s/2021/050/microk8s-letsencrypt-cert-manager-https....")
  • 20:41, 22 August 2021 Busk talk contribs created page Lxc one liners (Created page with "``` for i in $(lxc list --format=json | jq --raw-output '.[].name'); do echo $i; lxc stop $i; lxc config set $i boot.autostart false; done ```")
  • 16:50, 20 August 2021 Busk talk contribs created page Git Moving History to New Repo (Created page with "https://stackoverflow.com/questions/41811986/git-move-directory-to-another-repository-while-keeping-the-history ``` git subtree split -P dir-to-move -b split git remote add...")
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)