How to Export Azure Function App Settings

Copying app settings from one Azure Function app to another without doing it manually can be done with the Azure CLI. First, install Azure CLI if you haven’t already. You can download and install it from Azure’s Official Website. Once you have it installed do the following. Login to Azure Export App Settings Import App …

Read more

Check SSL Certificate Validity Dates

The Script Explanation openssl s_client -connect YOUR_DOMAIN:443 – This connects to the server on port 443 which is the default for HTTPS, and fetches the SSL certificate 2>/dev/null – This discards any error messages to keep the output clean openssl x509 -noout -dates – This extracts the validity dates from the fetched certificate Variations

Kubernetes Cheatsheet

Get Commands This request would be useful if you need to make a cross namespace request. For example. If you’re making a request within the default namespace in your ‘Client’ service running Next JS and you need to reach out to your auth service. Rather than reaching out directly to your auth service, you make …

Read more