Kubernetes
- To quickly check for all images in all #pods from a specific release (eg: Cassandra operator):
kubectl get pods -n prod-kssandra-application -l app.kubernetes.io/created-by=cass-operator -o jsonpath="{.items[*].spec.containers[*].image}" | tr -s '[[:space:]]' '\n' |sort |uniq -c
- Kubernetes Community Day (#KCD) Italy 2024 is getting closer!
AI
- If you are an #Azure customer you may be eligible for an Azure #OpenAI account, you can choose between different models and use cases.
Azure OpenAI Service – Pricing | Microsoft Azure
News
- GitHub is struggling to contain an ongoing #attack that’s flooding the site with millions of code repositories. These repositories contain obfuscated malware that steals passwords and cryptocurrency from developer devices.
Please make sure to use only well-known repos from known organizations, do not consider the number of stars a valid metric.
- After the big license change now someone talks about a big sell in Hashicorp 😦
https://archive.is/iPekU
Bash
- To generate strong random #password you don’t need online suspicious services but just old plain bash/WSL.
This function leverages your filesystem folder /dev/urandom,
the output is cryptographically secure and we then match only acceptable characters in a list and finally cut a 16 length string.
Keep it with you as an alias in your .bashrc maybe 🙂
function getNewPsw(){
tr -dc 'A-Za-z0-9!"#$%&'\''()*+,-./:;<=>?@[\]^_`{|}~' </dev/urandom | head -c 16; echo
}
- You can check the OWASP recommended special characters here:
https://owasp.org/www-community/password-special-characters
Lascia un commento