16 lines
371 B
Text
16 lines
371 B
Text
|
#!/bin/bash
|
||
|
|
||
|
echo -e "\n====================\n"
|
||
|
echo -e "cloud is running, ingress exists"
|
||
|
echo -e "\n====================\n"
|
||
|
kubectl get all
|
||
|
|
||
|
echo -e "\n====================\n"
|
||
|
echo -e "shows certificate with subject"
|
||
|
echo -e "CN={{fqdn}}"
|
||
|
echo -e "issuer: CN=Fake LE Intermediate X1"
|
||
|
echo -e "\n====================\n"
|
||
|
curl --insecure -v https://{{fqdn}}
|
||
|
|
||
|
echo -e "\n"
|