摘要:
It's quite easy to build a chatbot with Azure, following the steps below to build your first chatbot; Precondition: An Azure subscription 1. Create a 阅读全文
摘要:
Linkerd is a service mesh for Kubernetes. It makes running services easier and safer by giving you runtime debugging, observability, reliability, and 阅读全文
摘要:
kubectx kubectx is a tool to switch between contexts (clusters) on kubectl faster. Install with choco choco install kubectx github: https://github.com 阅读全文
摘要:
Affinity and anti-affinity rules allow you to fine-tune your Kubernetes deployments, optimizing resource utilization and enhancing reliability. Pod Af 阅读全文
摘要:
MetalLB hooks into your Kubernetes cluster, and provides a network load-balancer implementation. In short, it allows you to create Kubernetes services 阅读全文
摘要:
Installation Use the compatible version with your Kubernetes cluster, otherwise, you may get some unexpected exception or error. kubectl apply -f http 阅读全文
摘要:
Attaching to a docker container is quite similar to attaching to a process, the different part is that you need to select the corresponding connection 阅读全文
摘要:
Pull docker image Pull the latest image of SQL Server 2022 docker pull mcr.microsoft.com/mssql/server:2022-latest Run in container docker run -e "ACCE 阅读全文
摘要:
Windows下安装Redis,推荐使用Docker Docker安装Redis 1. Pull docker image, 默认pull latest docker pull redis 2. 创建container docker run --restart=always --log-opt ma 阅读全文
摘要:
Razor page可以通过以下方式开放页面匿名访问 1. [AllowAnonymous] attribute [AllowAnonymous]public class IndexModel : PageModel { private readonly ILogger<PrivacyModel> 阅读全文