Skip to content

Instantly share code, notes, and snippets.

@karmab
Last active March 22, 2022 09:54
Show Gist options
  • Save karmab/ee5ebc1b6d20384ebb4aaf58a039e9c6 to your computer and use it in GitHub Desktop.
Save karmab/ee5ebc1b6d20384ebb4aaf58a039e9c6 to your computer and use it in GitHub Desktop.
A plan to deploy openshift on a dedicated (libvirt) ipv6 network

A plan to deploy openshift on a dedicated (libvirt) ipv6 network

How to use

kcli create plan -f kcli_plan_ipv6.yml

or, if overriding some of the parameters

kcli create plan -f kcli_plan_ipv6.yml -P version=nightly -p tag='4.11'
parameters:
cluster: ipv6
version: stable
tag: '4.10'
masters: 1
workers: 0
network_type: OVNKubernetes
memory: 32768
numcpus: 16
cidr: 2620:52:0:1304::/64
disconnected: true
disconnected_deploy: true
disconnected_keep: true
pull_secret: openshift_pull.json
apps: []
{{ cluster }}-network:
type: network
cidr: {{ cidr }}
{{ cluster }}:
type: kube
kubetype: openshift
cluster: {{ cluster }}
tag: {{ tag }}
masters: {{ masters }}
workers: {{ workers }}
version: {{ version }}
network_type: {{ network_type }}
memory: {{ memory }}
numcpus: {{numcpus }}
network: {{ cluster }}-network
disconnected: {{ disconnected }}
disconnected_deploy: {{ disconnected_deploy }}
disconnected_keep: {{ disconnected_keep }}
pull_secret: {{ pull_secret }}
apps: {{ apps }}
kvm_openstack: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment