UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 0e65b960 authored by joshwolf's avatar joshwolf
Browse files

Merge branch 'test-virtualservices' into 'master'

test all virtual services

See merge request platform-one/big-bang/umbrella!26
parents ff41cf4c 3e64af95
No related branches found
No related tags found
1 merge request!26test all virtual services
Pipeline #73561 passed
......@@ -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