├── .gitignore ├── Dockerfile ├── README.md ├── blueprint ├── blueprint.toml ├── edge_demo.toml ├── installer.toml ├── simplified-installer-ign.toml └── simplified-installer.toml ├── boot ├── grub.cfg └── isolinux.cfg ├── cloud-init ├── meta-data └── user-data ├── fdo ├── device0.tgz └── serviceinfo_api_server.yml ├── ign ├── full.bu ├── remote.bu └── stub.bu ├── import.py ├── install.py ├── ks ├── edge.ks └── edge2.ks ├── main.go ├── mkboot ├── screenshots ├── blueprint.png ├── building.png ├── create.png ├── download.png ├── install.png ├── installer.png ├── packages.png ├── updates.png └── updates2.png └── vm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/README.md -------------------------------------------------------------------------------- /blueprint/blueprint.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/blueprint/blueprint.toml -------------------------------------------------------------------------------- /blueprint/edge_demo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/blueprint/edge_demo.toml -------------------------------------------------------------------------------- /blueprint/installer.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/blueprint/installer.toml -------------------------------------------------------------------------------- /blueprint/simplified-installer-ign.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/blueprint/simplified-installer-ign.toml -------------------------------------------------------------------------------- /blueprint/simplified-installer.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/blueprint/simplified-installer.toml -------------------------------------------------------------------------------- /boot/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/boot/grub.cfg -------------------------------------------------------------------------------- /boot/isolinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/boot/isolinux.cfg -------------------------------------------------------------------------------- /cloud-init/meta-data: -------------------------------------------------------------------------------- 1 | instance-id: nocloud 2 | local-hostname: vm 3 | -------------------------------------------------------------------------------- /cloud-init/user-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/cloud-init/user-data -------------------------------------------------------------------------------- /fdo/device0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/fdo/device0.tgz -------------------------------------------------------------------------------- /fdo/serviceinfo_api_server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/fdo/serviceinfo_api_server.yml -------------------------------------------------------------------------------- /ign/full.bu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/ign/full.bu -------------------------------------------------------------------------------- /ign/remote.bu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/ign/remote.bu -------------------------------------------------------------------------------- /ign/stub.bu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/ign/stub.bu -------------------------------------------------------------------------------- /import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/import.py -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/install.py -------------------------------------------------------------------------------- /ks/edge.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/ks/edge.ks -------------------------------------------------------------------------------- /ks/edge2.ks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/ks/edge2.ks -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/main.go -------------------------------------------------------------------------------- /mkboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/mkboot -------------------------------------------------------------------------------- /screenshots/blueprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/screenshots/blueprint.png -------------------------------------------------------------------------------- /screenshots/building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/screenshots/building.png -------------------------------------------------------------------------------- /screenshots/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/screenshots/create.png -------------------------------------------------------------------------------- /screenshots/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/screenshots/download.png -------------------------------------------------------------------------------- /screenshots/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/screenshots/install.png -------------------------------------------------------------------------------- /screenshots/installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/screenshots/installer.png -------------------------------------------------------------------------------- /screenshots/packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/screenshots/packages.png -------------------------------------------------------------------------------- /screenshots/updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/screenshots/updates.png -------------------------------------------------------------------------------- /screenshots/updates2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/screenshots/updates2.png -------------------------------------------------------------------------------- /vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osbuild/rhel-for-edge-demo/HEAD/vm --------------------------------------------------------------------------------