UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 3e64af95 authored by runyontr's avatar runyontr Committed by joshwolf
Browse files

test all virtual services

parent 07384631
No related branches found
No related tags found
No related merge requests found
......@@ -71,8 +71,7 @@ package tests:
script:
# Place kubernetes package test here
- echo "Package tests go here"
- curl -v https://kiali.bigbang.dev
- curl -v https://kibana.bigbang.dev
- bash ./tests/virtualservices.sh
- kubectl get helmrelease -A
after_script:
......
......@@ -36,7 +36,6 @@ spec:
- name: values
kind: Secret
valuesKey: "istio.yaml"
values:
hostname: {{ .Values.hostname }}
......
......@@ -5,6 +5,8 @@ metadata:
namespace: {{ .Release.Namespace }}
type: generic
stringData:
values.yaml: |
{{ toYaml .Values | indent 4}}
istio.yaml: |
{{ toYaml .Values.istio.values | indent 4 }}
gatekeeper.yaml: |
......
#!/bin/bash
set -e
hosts=`kubectl get vs -A -o jsonpath="{ .items[*].spec.hosts[*] }"`
for host in $hosts; do
curl -vI https://$host
done
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment