From e0aef3e43986938471a2b74b65e7adc9067bbb9a Mon Sep 17 00:00:00 2001 From: Jason Paroly Date: Thu, 20 Apr 2023 09:52:19 -0400 Subject: [PATCH] Add rabbitmq and infra dependencies These were missing from heat_kuttl in the makefile Add devsetup/tls.crt to git ignore since local setup instructions end up creating this file which we do not want checked in Change-Id: I798db4e00738b4bf618eac126b233bb974050288 --- .gitignore | 1 + Makefile | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 3e4aade..b5031f6 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ pull-secret.txt kuttl-test-*.json kubeconfig devsetup/ci-framework +devsetup/tls.crt diff --git a/Makefile b/Makefile index e5529a5..d5ab4e5 100644 --- a/Makefile +++ b/Makefile @@ -1057,9 +1057,12 @@ heat_kuttl_run: ## runs kuttl tests for the heat operator, assumes that everythi INSTALL_YAMLS=${INSTALL_YAMLS} kubectl-kuttl test --config ${HEAT_KUTTL_CONF} ${HEAT_KUTTL_DIR} .PHONY: heat_kuttl -heat_kuttl: namespace input openstack_crds deploy_cleanup mariadb mariadb_deploy keystone keystone_deploy heat heat_deploy_prep heat_deploy ## runs kuttl tests for the heat operator. Installs openstack crds and keystone operators and cleans up previous deployments before running the tests and, add cleanup after running the tests. +heat_kuttl: namespace input openstack_crds deploy_cleanup mariadb mariadb_deploy keystone keystone_deploy rabbitmq rabbitmq_deploy infra heat heat_deploy_prep ## runs kuttl tests for the heat operator. Installs openstack crds and keystone operators and cleans up previous deployments before running the tests and, add cleanup after running the tests. make heat_kuttl_run make deploy_cleanup + make rabbitmq_deploy_cleanup + make infra_cleanup + make rabbitmq_cleanup make heat_cleanup make keystone_cleanup make mariadb_cleanup