This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################# | |
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |