├── .gitignore ├── .gitmodules ├── README.md ├── create-user-daniel.sh ├── demo.sh ├── elasticsearch ├── demo.sh ├── generate-yaml.sh └── kibana.data-view.sh ├── generate-data ├── .gitignore ├── Containerfile ├── demo.js ├── generate-data.js ├── mappings.curl ├── package.json ├── public │ └── index.html └── rebuild.sh ├── hybrid-virt-elasticsearch.png ├── hybrid-virt-elasticsearch.webp ├── net.yaml ├── rbac.yaml ├── setup.template.yaml ├── vm.template.yaml └── windows ├── .gitignore ├── autounattended.xml ├── vm.yaml.template └── windows2019.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | subscription.txt 2 | *id_rsa* 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/README.md -------------------------------------------------------------------------------- /create-user-daniel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/create-user-daniel.sh -------------------------------------------------------------------------------- /demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/demo.sh -------------------------------------------------------------------------------- /elasticsearch/demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/elasticsearch/demo.sh -------------------------------------------------------------------------------- /elasticsearch/generate-yaml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/elasticsearch/generate-yaml.sh -------------------------------------------------------------------------------- /elasticsearch/kibana.data-view.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/elasticsearch/kibana.data-view.sh -------------------------------------------------------------------------------- /generate-data/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | package-lock.json 3 | 4 | -------------------------------------------------------------------------------- /generate-data/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/generate-data/Containerfile -------------------------------------------------------------------------------- /generate-data/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/generate-data/demo.js -------------------------------------------------------------------------------- /generate-data/generate-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/generate-data/generate-data.js -------------------------------------------------------------------------------- /generate-data/mappings.curl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/generate-data/mappings.curl -------------------------------------------------------------------------------- /generate-data/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/generate-data/package.json -------------------------------------------------------------------------------- /generate-data/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/generate-data/public/index.html -------------------------------------------------------------------------------- /generate-data/rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/generate-data/rebuild.sh -------------------------------------------------------------------------------- /hybrid-virt-elasticsearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/hybrid-virt-elasticsearch.png -------------------------------------------------------------------------------- /hybrid-virt-elasticsearch.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/hybrid-virt-elasticsearch.webp -------------------------------------------------------------------------------- /net.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/net.yaml -------------------------------------------------------------------------------- /rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/rbac.yaml -------------------------------------------------------------------------------- /setup.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/setup.template.yaml -------------------------------------------------------------------------------- /vm.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/vm.template.yaml -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- 1 | vm.yaml 2 | -------------------------------------------------------------------------------- /windows/autounattended.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/windows/autounattended.xml -------------------------------------------------------------------------------- /windows/vm.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/windows/vm.yaml.template -------------------------------------------------------------------------------- /windows/windows2019.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purefield/ocp-virt/HEAD/windows/windows2019.yaml --------------------------------------------------------------------------------