Custom Domain Certificates
Learn how to configure custom certificates for your domain on ClawCloud Run, including creating TLS Secrets and modifying Ingress configurations to secure application access.
Overview
Step 1: Create a TLS Secret
# Create tls.crt (replace "xxxx" with your certificate content) cat > tls.crt <<EOF -----BEGIN CERTIFICATE----- xxxx -----END CERTIFICATE----- EOF # Create tls.key (replace "xxxx" with your private key) cat > tls.key <<EOF -----BEGIN RSA PRIVATE KEY----- xxxx -----END RSA PRIVATE KEY----- EOF # Create the TLS Secret kubectl create secret tls <secret-name> --cert tls.crt --key tls.key # Verify the Ingress associated with your app kubectl get ingress

Step 2: Update Ingress Configuration

Verification

Key Notes
Last updated
Was this helpful?