Skip to content

Instantly share code, notes, and snippets.

@williamcaban
Created November 26, 2020 15:50
Show Gist options
  • Save williamcaban/b1dd5d7cb4a568e224b0293268c9582a to your computer and use it in GitHub Desktop.
Save williamcaban/b1dd5d7cb4a568e224b0293268c9582a to your computer and use it in GitHub Desktop.
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
systemd:
units:
- name: nodeip-configuration.service
enabled: true
contents: |
[Unit]
Description=Writes IP address configuration so that kubelet and crio services select a valid node IP
Wants=network-online.target
After=network-online.target ignition-firstboot-complete.service
Before=kubelet.service crio.service
[Service]
Type=oneshot
ExecStart=/bin/bash -c "if [[ $(hostname) != *localhost* ]] ; then exit 0 ; fi ;\
NIC=$(ip -6 route get :: | awk -F "dev " '{print $2}' | awk -F " " '{print $1}') ;\
REVERSE=$(dig -x $(ip -6 -o addr show dev $NIC | grep global | awk '{print $4}' | cut -f1 -d"/" | head -1) +short) ;\
HOSTNAME=$(basename -s . $REVERSE) ;\
echo $HOSTNAME >/etc/hostname ;\
hostnamectl set-hostname $HOSTNAME"
[Install]
WantedBy=multi-user.target
storage:
files:
- contents:
source: data:,
verification: {}
filesystem: root
mode: 420
path: /etc/kubernetes/manifests/coredns.yaml
- contents:
source: data:,
verification: {}
filesystem: root
mode: 420
path: /etc/kubernetes/manifests/keepalived.yaml
- contents:
source: data:,
verification: {}
filesystem: root
mode: 420
path: /etc/kubernetes/manifests/mdns-publisher.yaml
apiVersion: machineconfiguration.openshift.io/v1
kind: MachineConfig
metadata:
name: 50-worker-blacklist-ipi
labels:
machineconfiguration.openshift.io/role: worker
spec:
config:
ignition:
version: 3.1.0
systemd:
units:
- name: nodeip-configuration.service
enabled: true
contents: |
[Unit]
Description=Writes IP address configuration so that kubelet and crio services select a valid node IP
Wants=network-online.target
After=network-online.target ignition-firstboot-complete.service
Before=kubelet.service crio.service
[Service]
Type=oneshot
ExecStart=/bin/bash -c "if [[ $(hostname) != *localhost* ]] ; then exit 0 ; fi ;\
NIC=$(ip -6 route get :: | awk -F "dev " '{print $2}' | awk -F " " '{print $1}') ;\
REVERSE=$(dig -x $(ip -6 -o addr show dev $NIC | grep global | awk '{print $4}' | cut -f1 -d"/" | head -1) +short) ;\
HOSTNAME=$(basename -s . $REVERSE) ;\
echo $HOSTNAME >/etc/hostname ;\
hostnamectl set-hostname $HOSTNAME"
[Install]
WantedBy=multi-user.target
storage:
files:
- contents:
source: data:,
verification: {}
filesystem: root
mode: 420
path: /etc/kubernetes/manifests/coredns.yaml
- contents:
source: data:,
verification: {}
filesystem: root
mode: 420
path: /etc/kubernetes/manifests/keepalived.yaml
- contents:
source: data:,
verification: {}
filesystem: root
mode: 420
path: /etc/kubernetes/manifests/mdns-publisher.yaml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment