Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/kuttl/common/osp_check_noapi_service_certs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ for service in "${!services_secrets[@]}"; do
pod_cert=$(oc rsh -n "$NAMESPACE" openstackclient openssl s_client -connect "$cluster_ip:$port" -servername "$cluster_ip" </dev/null 2>/dev/null | sed -ne '/-----BEGIN CERTIFICATE-----/,/-----END CERTIFICATE-----/p')

if [[ -z "$pod_cert" ]]; then
echo "Error retrieving certificate from $service at $cluster_ip:$port."
echo "Error retrieving certificate from $service at $cluster_ip:$port in namespace $NAMESPACE."
continue
fi

Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

13 changes: 0 additions & 13 deletions test/kuttl/tests/ctlplane-tls-custom-issuers/05-cleanup.yaml

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -300,11 +300,11 @@ commands:
echo "Waiting for OpenStack control plane to be ready..."
oc wait openstackcontrolplane -n $NAMESPACE --for=condition=Ready --timeout=400s -l core.openstack.org/openstackcontrolplane
- script: |
echo "Fail if internal https endpoints are registered"
echo "Fail if internal https endpoints are registered (ingress-only mode)"
oc exec -i openstackclient -n $NAMESPACE -- bash -c "openstack endpoint list --interface internal -f value -c URL" | grep 'https:' && exit 1
exit 0
- script: |
echo "check ovn sb internalDbAddress use tcp"
echo "check ovn sb internalDbAddress use tcp (not ssl)"
oc get -n $NAMESPACE OVNDBCluster ovndbcluster-sb -o jsonpath={.status.internalDbAddress} | grep -q tcp
- script: |
echo "check ovn sb DB connection use tcp"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Deploy with TLS ingress-only (podLevel.enabled: false)
# This tests the transition from ingress-only TLS to full TLS
apiVersion: kuttl.dev/v1beta1
kind: TestStep
commands:
Expand Down
Loading