This file contains hidden or 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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # Need to enable trigger plugin with "vagrant plugin install trigger" command first | |
| # Get a free RHEL developer subscription at developer.redhat.com | |
| file_to_disk = './disk-0-1.vdi' | |
| servers = [ | |
| { | |
| :name => "iscsi-server", |
This file contains hidden or 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
| mkisofs -U -A "RHCOS-x86_64" -V "RHCOS-x86_64" -volset "RHCOS-x86_64" -J -joliet-long -r -v -T -x ./lost+found -o /tmp/iso/${NODE}.iso -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -eltorito-alt-boot -e images/efiboot.img -no-emul-boot . |
This file contains hidden or 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
| append initrd=/images/pxeboot/initrd.img,/images/ignition.img random.trust_cpu=on rd.luks.options=discard coreos.liveiso=RHCOS-CustomIso ignition.firstboot ignition.platform.id=metal ip=${IP}::${GW}:${NM}:${HN}:ens192:none nameserver=${NS1} nameserver=${NS2} coreos.inst.image_url=http://${HELPER}:80/ocp/install/bios.raw.gz coreos.inst.install_dev=sda coreos.inst.ignition_url=http://${HELPER}:80/ocp/ignition/${ROLE}.ign |
This file contains hidden or 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
| gitlab: | |
| gitaly: | |
| persistence: | |
| storageClass: CUSTOM_STORAGE_CLASS_NAME | |
| size: 20Gi | |
| postgresql: | |
| persistence: | |
| storageClass: CUSTOM_STORAGE_CLASS_NAME | |
| size: 8Gi | |
| minio: |
This file contains hidden or 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: networking.k8s.io/v1 | |
| kind: Ingress | |
| metadata: | |
| name: nginx | |
| annotations: | |
| kubernetes.io/ingress.class: nginx | |
| spec: | |
| rules: | |
| - host: nginx.example.com | |
| http: |