├── .gitignore ├── Makefile ├── README.md ├── bastion.tf ├── clusters.tf ├── envs ├── alaska-sriov.tfvars ├── alaska.tfvars ├── cumulus.tfvars ├── devstack-ipv6.tfvars ├── devstack.tfvars ├── kayobe-aio-overcloud.tfvars ├── sausage.tfvars ├── smslab.tfvars └── stein.tfvars ├── images ├── dev.txt ├── legacy.txt ├── master.txt └── sonobuoy.txt ├── manifests ├── nginx-cinder-csi.yaml ├── nginx-in-tree-cinder.yaml ├── sc-cinder-csi.yaml └── sc-in-tree-cinder.yaml ├── site ├── create.sh ├── destroy.sh ├── magnum-tiller.sh ├── plan.sh ├── pull-retag-push.py ├── purge.sh ├── taint.sh ├── upload-atomic.sh └── upload-coreos.sh ├── sonobuoy.yml ├── templates.tf ├── terraform.tfvars.sample ├── tfvars ├── atomic.tfvars ├── coreos.tfvars ├── flannel.tfvars └── podman.tfvars └── versions.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/README.md -------------------------------------------------------------------------------- /bastion.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/bastion.tf -------------------------------------------------------------------------------- /clusters.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/clusters.tf -------------------------------------------------------------------------------- /envs/alaska-sriov.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/envs/alaska-sriov.tfvars -------------------------------------------------------------------------------- /envs/alaska.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/envs/alaska.tfvars -------------------------------------------------------------------------------- /envs/cumulus.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/envs/cumulus.tfvars -------------------------------------------------------------------------------- /envs/devstack-ipv6.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/envs/devstack-ipv6.tfvars -------------------------------------------------------------------------------- /envs/devstack.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/envs/devstack.tfvars -------------------------------------------------------------------------------- /envs/kayobe-aio-overcloud.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/envs/kayobe-aio-overcloud.tfvars -------------------------------------------------------------------------------- /envs/sausage.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/envs/sausage.tfvars -------------------------------------------------------------------------------- /envs/smslab.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/envs/smslab.tfvars -------------------------------------------------------------------------------- /envs/stein.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/envs/stein.tfvars -------------------------------------------------------------------------------- /images/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/images/dev.txt -------------------------------------------------------------------------------- /images/legacy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/images/legacy.txt -------------------------------------------------------------------------------- /images/master.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/images/master.txt -------------------------------------------------------------------------------- /images/sonobuoy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/images/sonobuoy.txt -------------------------------------------------------------------------------- /manifests/nginx-cinder-csi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/manifests/nginx-cinder-csi.yaml -------------------------------------------------------------------------------- /manifests/nginx-in-tree-cinder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/manifests/nginx-in-tree-cinder.yaml -------------------------------------------------------------------------------- /manifests/sc-cinder-csi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/manifests/sc-cinder-csi.yaml -------------------------------------------------------------------------------- /manifests/sc-in-tree-cinder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/manifests/sc-in-tree-cinder.yaml -------------------------------------------------------------------------------- /site/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/site/create.sh -------------------------------------------------------------------------------- /site/destroy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/site/destroy.sh -------------------------------------------------------------------------------- /site/magnum-tiller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/site/magnum-tiller.sh -------------------------------------------------------------------------------- /site/plan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/site/plan.sh -------------------------------------------------------------------------------- /site/pull-retag-push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/site/pull-retag-push.py -------------------------------------------------------------------------------- /site/purge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/site/purge.sh -------------------------------------------------------------------------------- /site/taint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/site/taint.sh -------------------------------------------------------------------------------- /site/upload-atomic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/site/upload-atomic.sh -------------------------------------------------------------------------------- /site/upload-coreos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/site/upload-coreos.sh -------------------------------------------------------------------------------- /sonobuoy.yml: -------------------------------------------------------------------------------- 1 | dockerLibraryRegistry: ghcr.io/stackhpc 2 | -------------------------------------------------------------------------------- /templates.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/templates.tf -------------------------------------------------------------------------------- /terraform.tfvars.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/terraform.tfvars.sample -------------------------------------------------------------------------------- /tfvars/atomic.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/tfvars/atomic.tfvars -------------------------------------------------------------------------------- /tfvars/coreos.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/tfvars/coreos.tfvars -------------------------------------------------------------------------------- /tfvars/flannel.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/tfvars/flannel.tfvars -------------------------------------------------------------------------------- /tfvars/podman.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/tfvars/podman.tfvars -------------------------------------------------------------------------------- /versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackhpc/terraform-magnum/HEAD/versions.tf --------------------------------------------------------------------------------