K3D is the lightweight wrapper allowing us to run K3S Ranchers minimal Kubernetes deployment easily in local environments. Developers can quickly create a cluster, test the apps in containers with Kubernetes locally. Advantage is it is really really simple and faster to get a Kubernetes cluster created, and deleted using K3D, giving the opportunity to the developers to play around with Kubernetes as much as they want, without a worry. This is a great way to develop with Kubernetes as if you are using a central development Kubernetes cluster, such as Azure AKS, it takes time for you to get the cluster up and running if you made a mess with it while development. Instead K3D let's you have your own development Kubernetes cluster running locally in your machine, which you can destroy and create faster when ever you want or need.
Tuesday, 31 May 2022
Sunday, 15 May 2022
Resolve C# Connection Issue "StackExchange.Redis.RedisConnectionException: No connection is active/available to service this operation: It was not possible to connect to the redis server(s). There was an authentication failure; check that passwords (or client certificates) are configured correctly." to Azure Redis cache Connection via Private Endpoint
Using Azure Redis cache with C# throws an error message such as below while accessing the Redis cache via a private endpoint.
StackExchange.Redis.RedisConnectionException:
No connection is active/available to service this operation:
GET Zdddddddddddddddddddddddddd; It was not possible to connect to the redis server(s).
There was an authentication failure; check that passwords (or client certificates) are
configured correctly. ConnectTimeout, mc: 1/1/0, mgr: 10 of 10 available,
clientName: DESKTOP-XXXXX, IOCP: (Busy=1,Free=999,Min=16,Max=1000), WORKER:
(Busy=3,Free=32764,Min=16,Max=32767), v: 2.2.88.56325 ---> StackExchange.Redis.RedisConnectionException: It was not possible to connect to the
redis server(s). There was an authentication failure; check that passwords
(or client certificates) are configured correctly. ConnectTimeout --- End of inner exception stack trace ---
Subscribe to:
Posts (Atom)
Popular Posts
-
az aks get-credentials is used to get the kubeconfig updated so that we can access AKS clusters from a terminal (You need to first use az ...
-
GitHub Actions are the CI/CD workflow implementation tool built into GitHub repos. While using the GitHub Actions workflows you may want to ...
-
Some times a silly mistake can waste lot of time of a developer. The exception “System.IO.IOException: The response ended prematurely.” whil...
-
Pull Request are the controlled way to bring in the changes to your stable branches in your Azure Git repos, or for that matter all Git prov...
-
Using Azure Redis cache with C# throws an error message such as below while accessing the Redis cache via a private endpoint. StackExchange...