From a01a1c169bf09eb25f4b962a5736ec12558da1c1 Mon Sep 17 00:00:00 2001
From: Thomas Runyon <thomas.runyon.2.ctr@us.af.mil>
Date: Fri, 16 Apr 2021 05:52:31 -0400
Subject: [PATCH] show cert information in CI

---
 .gitlab-ci.yml | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8103d49727..1c05e18b44 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -94,11 +94,12 @@ pre vars:
     - tests/**/*
 
 .deploy_bigbang: &deploy_bigbang
-  - find ./scripts/deploy -type f -name '*.sh' | sort | xargs -r -I {} sh -c 'echo {} && sh {}'
-
+  - find ./scripts/deploy -type f -name '*.sh' | sort | xargs -r -I {} sh -c 'echo {} && sh {}'$CI_COMMIT_REF_NAME
+  - kubectl get secrets -n istio-system wildcard-cert -o jsonpath="{ .data.tls\.crt }" | base64 --decode | openssl x509 -text
+  
 .test_bigbang: &test_bigbang
   - find ./tests -type f -name '*.sh' | sort | xargs -r -I {} sh -c 'echo {} && sh {}'
-
+   
 clean install:
   stage: smoke tests
   extends:
-- 
GitLab