apiVersion: v1
kind: Pod
metadata:
name: static-ip
annotations:
k8s.v1.cni.cncf.io/networks: '[
{
"name": "<name>",
"ips": [ "192.0.2.205/24","2001:333:333::333/64" ],
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
--- | |
apiVersion: machineconfiguration.openshift.io/v1 | |
kind: MachineConfigPool | |
metadata: | |
name: ran-cu | |
labels: | |
machineconfiguration.openshift.io/role: ran-cu | |
spec: | |
machineConfigSelector: | |
matchExpressions: |
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
--- | |
# oc edit ptpoperatorconfigs.ptp.openshift.io/default -n openshift-ptp | |
# spec: | |
# daemonNodeSelector: | |
# node-role.kubernetes.io/worker-du: "" | |
apiVersion: ptp.openshift.io/v1 | |
kind: PtpConfig | |
metadata: | |
name: slave | |
namespace: openshift-ptp |
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
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: simple-pod | |
spec: | |
#nodeSelector: | |
# kubernetes.io/hostname: worker-1 | |
containers: | |
- name: simple-pod | |
image: registry.access.redhat.com/ubi8/ubi |
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
#!/usr/bin/python3 | |
""" | |
Usage: python3 pp-rps-mc.py 1,2,52-53 > ran-rps-netqueues-fix.yaml ; oc apply -f ran-rps-netqueues-fix.yaml | |
Updated April 2 2021 -- patch to address issue cnf1360 | |
This script generates a MachineConfiguration OCP object that | |
can be applied to a 4.6 cluster and adds additional tuning | |
fixes related to networking. |
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
apiVersion: machineconfiguration.openshift.io/v1 | |
kind: MachineConfig | |
metadata: | |
name: 50-master-blacklist-ipi | |
labels: | |
machineconfiguration.openshift.io/role: master | |
spec: | |
config: | |
ignition: | |
version: 3.1.0 |
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 -e | |
source set-environment | |
# Variables to set, suit to your installation | |
export AIRGAP_REGISTRY_INDEX_TAG=olm-index/redhat-operator-index:v$OCP_RELEASE_MAIN | |
export AIRGAP_REGISTRY_IMAGE_TAG=olm | |
# Set these values to true for the catalog and miror to be created | |
export RH_OP='true' |
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
#version=RHEL8 | |
ignoredisk --only-use=vda | |
# System bootloader configuration | |
bootloader --disabled | |
autopart --type=plain --fstype=ext4 --nohome --noboot --noswap | |
# Clear the Master Boot Record | |
zerombr | |
# Partition clearing information | |
clearpart --all | |
# Reboot after installation |