How do I dropdown?
This is how you dropdown.
<details> <summary>How do I dropdown?</summary> <br> This is how you dropdown.
#Set hostname | |
hostnamectl set-hostname lb01-server.example.com | |
#Remove all network configuration | |
nmcli con del eno{1,2,3,4} | |
#Configure bonding | |
nmcli con add type bond con-name bond0 ifname bond0 mode active-backup | |
nmcli con add type bond-slave con-name eno1 ifname eno1 master bond0 | |
nmcli con add type bond-slave con-name eno2 ifname eno2 master bond0 |
--- | |
# Using unsupported SR-IOV NICs w/OpenShift | |
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: unsupported-nic-ids | |
namespace: openshift-sriov-network-operator | |
data: | |
X520: 8086 154d 10ed | |
X540: 8086 154d 10ee |
#!/usr/bin/env bash | |
# Loads and mounts an ISO over SMB via the | |
# SuperMicro IPMI web interface | |
# | |
# usage: supermicro-mount-iso.sh <ipmi-host> <smb-host> <path> | |
# e.g.: supermicro-mount-iso.sh 10.0.0.1 10.0.0.2 '\foo\bar\windows.iso' | |
set -x |
Last updated September 21, 2022
This Gist explains how to do this using gpg in a step-by-step fashion. Previously, krypt.co was heavily mentioned, but I've only recently learned they were acquired by Akamai and no longer update their previous free products. Those mentions have been removed.
For using a GUI-based GIT tool such as Tower or Github Desktop, follow the steps here for signing your commits with GPG.
There has been a number of comments on this gist regarding some issues around the pinentry-program and M1 Macs. I've finally gotten a chance to try things out on an M1 and I've updated the documentation in 2-using-gpg.md
to reflect my findings.
-
FAR (Fix (NieR) Automata Resolution) -- Required by HD Texture Pack.
- install docker
- in order to run keycloak in a docker container, run the below command:
docker run -p 8080:8080 -e KEYCLOAK_ADMIN=admin -e KEYCLOAK_ADMIN_PASSWORD=admin quay.io/keycloak/keycloak:latest start-dev
If you are using podman then just replace docker with podman in above bash command
#!/bin/bash | |
# https://guifreelife.com/blog/2021/08/13/RHACM-Recover-Created-Cluster-Credentials-and-Kubeconfig/ | |
# | |
# If an OpenShift cluster was created by RHACM this script will extract the | |
# kubeconfig and the default kubeadmin credentials. | |
# | |
# Prereqs: | |
# - Authenticated to hub cluster | |
# - Managed cluster name is the sames as the hosting namespace on hub cluster |