Skip to content

Instantly share code, notes, and snippets.

View dwojciec's full-sized avatar

Didier Wojciechowski dwojciec

View GitHub Profile
@ralvares
ralvares / Openshift 4.3 on VMware using govc
Last active December 12, 2020 00:20
Openshift 4.3 on VMware using govc
#############################################################
# Run this script from the same location of the ign files #
#############################################################
########################## Installing govc #################################################
# mkdir $HOME/bin
# cd $HOME/bin
# wget https:////github.com/vmware/govmomi/releases/download/v0.22.1/govc_linux_amd64.gz
# gunzip govc_linux_amd64.gz && mv govc_linux_amd64 govc && chmod +x govc
@ralvares
ralvares / check_dns.sh
Last active June 4, 2020 17:44
Check OCP4 DNS
#!/bin/bash
IFS=","
CLUSTER_NAME=ocp
DOMAINNAME=example.com
BOOTSTRAP=192.168.150.30
MASTERS=192.168.150.30,192.168.150.31,192.168.150.32
WORKERS=192.168.150.40,192.168.150.41,192.168.150.42
@ralvares
ralvares / quay all in one
Last active June 14, 2022 08:00
Quay - All in One - Using podman pod
podman login registry.redhat.io
export domain=quay.ralvares.local
export QUAY=/data/quay
mkdir -p $QUAY/postgres-quay
mkdir $QUAY/clair
mkdir -p $QUAY/config/extra_ca_certs
mkdir $QUAY/storage