Skip to content

Instantly share code, notes, and snippets.

View rcarrata's full-sized avatar
🥋

Roberto Carratalá rcarrata

🥋
View GitHub Profile
@croxton
croxton / SSL-certs-OSX.md
Last active March 3, 2024 18:58 — forked from leevigraham/Generate ssl certificates with Subject Alt Names on OSX.md
Generate ssl certificates with Subject Alt Names

Generate ssl certificates with Subject Alt Names on OSX

Open ssl.conf in a text editor.

Edit the domain(s) listed under the [alt_names] section so that they match the local domain name you want to use for your project, e.g.

DNS.1   = my-project.dev

Additional FQDNs can be added if required:

@ralvares
ralvares / sno on kvm
Last active May 3, 2022 16:39
Install Single Node Cluster on KVM - for fun
My environment is below:
Centos8
libvirtd (libvirt) 7.0.0
libvirt network: default - Range 192.168.122.0/24
Domain and Single Node IP: *.sno.local 192.168.122.10
Extracting openshift-baremetal-install
export VERSION=latest-4.8
@ralvares
ralvares / ocp 4.6 and Custom Catalogs
Last active December 21, 2020 12:21
OCP 4.6 and Custom Catalogs
# CentOS 8 - Install Latest Podman
sudo dnf -y module disable container-tools
sudo dnf -y install 'dnf-command(copr)'
sudo dnf -y copr enable rhcontainerbot/container-selinux
sudo curl -L -o /etc/yum.repos.d/devel:kubic:libcontainers:stable.repo https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/CentOS_8/devel:kubic:libcontainers:stable.repo
sudo dnf -y install podman
RHEL8.x/CENTOS8.x
podman version 1.8+
@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