Finding the apiVersion in kubernetes

what is it? The core of Kubernetes’ control plane is the API server. The API server exposes an HTTP API that lets end users, different parts of your cluster, and external components communicate with one another. The Kubernetes API lets you query and manipulate the state of API objects in Kubernetes (for example: Pods, Namespaces, ConfigMaps, and Events). Most operations can be performed through the kubectl command-line interface or other command-line tools, such as kubeadm, which in turn use the API. However, you can also access the API directly using REST calls. Consider using one of the client libraries if...…

Setting up Systemd to spawn ssh-agent and adding your keys

I’m using bastion hosts for my cloud infra and found this little hack to systemd to setup ssh-agent for my auth forwarding. what is it? systemd systemd is an init system used in Linux distributions to bootstrap the user space and manage all processes subsequently, instead of the UNIX System V or Berkeley Software Distribution (BSD) init systems. The name systemd adheres to the Unix convention of naming daemons by appending the letter d. ssh-agent SSH is a protocol allowing secure remote login to a computer on a network using public-key cryptography. … Therefore, users run a program called ssh-agent...…

SEO improvements to help your site succeed

I run a few different client sites and some personal ones and wanted to share with the greater community different tips on how to improve your search engine ranking. Alot of different sites offer this information with big price tags and most of it is just common sense. what is it? Search engine optimization is a methodology of strategies, techniques and tactics used to increase the amount of visitors to a website by obtaining a high-ranking placement in the search results page of a search engine (SERP) – including Google, Bing, Yahoo and other search engines. web page titles Your...…