├── .gitattributes ├── .gitignore ├── .lfsconfig ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── doc ├── Deployment.md ├── Homepage.md ├── Network-prerequisites.md ├── Parameter-file.md └── Utilities-and-troubleshooting.md ├── docker_compose └── docker-compose.yml ├── docker_image ├── .dockerignore ├── .gitattributes ├── Dockerfile ├── nsx-t-install-250.tar └── run.sh ├── functions ├── copy_ovas.sh ├── create_hosts.sh ├── generate-keys.sh └── set_default_params.py ├── nsxt_yaml ├── basic_resources.yml ├── basic_topology.yml └── vars.yml ├── pipelines └── nsx-t-install.yml ├── sample_parameters ├── PAS_and_PKS │ └── nsx_pipeline_config.yml ├── PAS_only │ └── nsx_pipeline_config.yml ├── PKS_only │ └── nsx_pipeline_config.yml └── raw │ ├── combine_param_files.sh │ ├── nsx.yml │ ├── pas.yml │ ├── pas_pks.yml │ └── pks.yml └── tasks ├── .DS_Store ├── add-nsx-t-routers ├── task.sh └── task.yml ├── config-nsx-t-extras ├── .DS_Store ├── client.py ├── nsx_t_gen.py ├── task.sh └── task.yml ├── install-nsx-t ├── copy_and_customize_ovas.sh ├── get_mo_ref_id.py ├── modify_options.py ├── task.sh ├── task.yml └── turn_off_reservation.py └── uninstall-nsx-t ├── task.sh └── task.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea/ 3 | -------------------------------------------------------------------------------- /.lfsconfig: -------------------------------------------------------------------------------- 1 | [lfs] 2 | fetchexclude = "*" 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/README.md -------------------------------------------------------------------------------- /doc/Deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/doc/Deployment.md -------------------------------------------------------------------------------- /doc/Homepage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/doc/Homepage.md -------------------------------------------------------------------------------- /doc/Network-prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/doc/Network-prerequisites.md -------------------------------------------------------------------------------- /doc/Parameter-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/doc/Parameter-file.md -------------------------------------------------------------------------------- /doc/Utilities-and-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/doc/Utilities-and-troubleshooting.md -------------------------------------------------------------------------------- /docker_compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/docker_compose/docker-compose.yml -------------------------------------------------------------------------------- /docker_image/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /docker_image/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/docker_image/.gitattributes -------------------------------------------------------------------------------- /docker_image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/docker_image/Dockerfile -------------------------------------------------------------------------------- /docker_image/nsx-t-install-250.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/docker_image/nsx-t-install-250.tar -------------------------------------------------------------------------------- /docker_image/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/docker_image/run.sh -------------------------------------------------------------------------------- /functions/copy_ovas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/functions/copy_ovas.sh -------------------------------------------------------------------------------- /functions/create_hosts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/functions/create_hosts.sh -------------------------------------------------------------------------------- /functions/generate-keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/functions/generate-keys.sh -------------------------------------------------------------------------------- /functions/set_default_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/functions/set_default_params.py -------------------------------------------------------------------------------- /nsxt_yaml/basic_resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/nsxt_yaml/basic_resources.yml -------------------------------------------------------------------------------- /nsxt_yaml/basic_topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/nsxt_yaml/basic_topology.yml -------------------------------------------------------------------------------- /nsxt_yaml/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/nsxt_yaml/vars.yml -------------------------------------------------------------------------------- /pipelines/nsx-t-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/pipelines/nsx-t-install.yml -------------------------------------------------------------------------------- /sample_parameters/PAS_and_PKS/nsx_pipeline_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/sample_parameters/PAS_and_PKS/nsx_pipeline_config.yml -------------------------------------------------------------------------------- /sample_parameters/PAS_only/nsx_pipeline_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/sample_parameters/PAS_only/nsx_pipeline_config.yml -------------------------------------------------------------------------------- /sample_parameters/PKS_only/nsx_pipeline_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/sample_parameters/PKS_only/nsx_pipeline_config.yml -------------------------------------------------------------------------------- /sample_parameters/raw/combine_param_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/sample_parameters/raw/combine_param_files.sh -------------------------------------------------------------------------------- /sample_parameters/raw/nsx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/sample_parameters/raw/nsx.yml -------------------------------------------------------------------------------- /sample_parameters/raw/pas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/sample_parameters/raw/pas.yml -------------------------------------------------------------------------------- /sample_parameters/raw/pas_pks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/sample_parameters/raw/pas_pks.yml -------------------------------------------------------------------------------- /sample_parameters/raw/pks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/sample_parameters/raw/pks.yml -------------------------------------------------------------------------------- /tasks/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/tasks/.DS_Store -------------------------------------------------------------------------------- /tasks/add-nsx-t-routers/task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/tasks/add-nsx-t-routers/task.sh -------------------------------------------------------------------------------- /tasks/add-nsx-t-routers/task.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/tasks/add-nsx-t-routers/task.yml -------------------------------------------------------------------------------- /tasks/config-nsx-t-extras/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/tasks/config-nsx-t-extras/.DS_Store -------------------------------------------------------------------------------- /tasks/config-nsx-t-extras/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/tasks/config-nsx-t-extras/client.py -------------------------------------------------------------------------------- /tasks/config-nsx-t-extras/nsx_t_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/tasks/config-nsx-t-extras/nsx_t_gen.py -------------------------------------------------------------------------------- /tasks/config-nsx-t-extras/task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/tasks/config-nsx-t-extras/task.sh -------------------------------------------------------------------------------- /tasks/config-nsx-t-extras/task.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/tasks/config-nsx-t-extras/task.yml -------------------------------------------------------------------------------- /tasks/install-nsx-t/copy_and_customize_ovas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/tasks/install-nsx-t/copy_and_customize_ovas.sh -------------------------------------------------------------------------------- /tasks/install-nsx-t/get_mo_ref_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/tasks/install-nsx-t/get_mo_ref_id.py -------------------------------------------------------------------------------- /tasks/install-nsx-t/modify_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/tasks/install-nsx-t/modify_options.py -------------------------------------------------------------------------------- /tasks/install-nsx-t/task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/tasks/install-nsx-t/task.sh -------------------------------------------------------------------------------- /tasks/install-nsx-t/task.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/tasks/install-nsx-t/task.yml -------------------------------------------------------------------------------- /tasks/install-nsx-t/turn_off_reservation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/tasks/install-nsx-t/turn_off_reservation.py -------------------------------------------------------------------------------- /tasks/uninstall-nsx-t/task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/tasks/uninstall-nsx-t/task.sh -------------------------------------------------------------------------------- /tasks/uninstall-nsx-t/task.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware/nsx-t-datacenter-ci-pipelines/HEAD/tasks/uninstall-nsx-t/task.yml --------------------------------------------------------------------------------