File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
integration-tests/src/test/java/oracle/kubernetes/operator Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -1122,6 +1122,7 @@ private static void installPrometheusGrafanaViaChart() throws Exception {
1122
1122
private static void uninstallPrometheusGrafanaViaChart () throws Exception {
1123
1123
String monitoringExporterEndToEndDir =
1124
1124
monitoringExporterDir + "/src/samples/kubernetes/end2end/" ;
1125
+ logger .info ("Uninstalling grafana" );
1125
1126
// uninstall grafana
1126
1127
String crdCmd = "helm delete --purge grafana" ;
1127
1128
ExecCommand .exec (crdCmd );
@@ -1131,6 +1132,7 @@ private static void uninstallPrometheusGrafanaViaChart() throws Exception {
1131
1132
ExecCommand .exec (crdCmd );
1132
1133
1133
1134
// uninstall prometheus
1135
+ logger .info ("Uninstalling prometheus" );
1134
1136
crdCmd = "helm delete --purge prometheus" ;
1135
1137
ExecCommand .exec (crdCmd );
1136
1138
crdCmd = "kubectl delete -f " + monitoringExporterEndToEndDir + "/prometheus/persistence.yaml" ;
@@ -1149,7 +1151,7 @@ private static void uninstallMySQL() throws Exception {
1149
1151
String monitoringExporterEndToEndDir =
1150
1152
monitoringExporterDir + "/src/samples/kubernetes/end2end/" ;
1151
1153
// unnstall mysql
1152
-
1154
+ logger . info ( "Uninstalling mysql" );
1153
1155
String crdCmd = " kubectl delete -f " + monitoringExporterEndToEndDir + "mysql/mysql.yaml" ;
1154
1156
ExecCommand .exec (crdCmd );
1155
1157
You can’t perform that action at this time.
0 commit comments