摘要: 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 阅读全文
posted @ 2024-03-10 01:16 TigerLu 阅读(5) 评论(0) 推荐(0) 编辑
摘要: Linkerd is a service mesh for Kubernetes. It makes running services easier and safer by giving you runtime debugging, observability, reliability, and 阅读全文
posted @ 2023-12-29 17:42 TigerLu 阅读(18) 评论(0) 推荐(0) 编辑
摘要: kubectx kubectx is a tool to switch between contexts (clusters) on kubectl faster. Install with choco choco install kubectx github: https://github.com 阅读全文
posted @ 2023-12-28 18:55 TigerLu 阅读(11) 评论(0) 推荐(0) 编辑
摘要: Affinity and anti-affinity rules allow you to fine-tune your Kubernetes deployments, optimizing resource utilization and enhancing reliability. Pod Af 阅读全文
posted @ 2023-12-26 20:11 TigerLu 阅读(15) 评论(0) 推荐(0) 编辑
摘要: MetalLB hooks into your Kubernetes cluster, and provides a network load-balancer implementation. In short, it allows you to create Kubernetes services 阅读全文
posted @ 2023-12-23 01:35 TigerLu 阅读(12) 评论(0) 推荐(0) 编辑
摘要: Installation Use the compatible version with your Kubernetes cluster, otherwise, you may get some unexpected exception or error. kubectl apply -f http 阅读全文
posted @ 2023-12-22 17:08 TigerLu 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2023-12-06 00:06 TigerLu 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2023-12-05 10:13 TigerLu 阅读(23) 评论(0) 推荐(0) 编辑
摘要: Windows下安装Redis,推荐使用Docker Docker安装Redis 1. Pull docker image, 默认pull latest docker pull redis 2. 创建container docker run --restart=always --log-opt ma 阅读全文
posted @ 2023-06-02 15:12 TigerLu 阅读(259) 评论(0) 推荐(0) 编辑
摘要: Razor page可以通过以下方式开放页面匿名访问 1. [AllowAnonymous] attribute [AllowAnonymous]public class IndexModel : PageModel { private readonly ILogger<PrivacyModel> 阅读全文
posted @ 2023-05-31 00:30 TigerLu 阅读(34) 评论(0) 推荐(0) 编辑