docker-compose部署OpenLDAP + phpLdapAdmin + 自助修改密码平台

安装docker、docker-compose 略 部署OpenLDAP version: '2' services: openldap:   image: osixia/openldap:1.5.0 ### 如果有私有仓库可以从自己的私有仓库拉取镜像   container_name...

【部署】Kubernetes Dashboard v7.5.0 部署(Helm方式)

安装dashboard helm repo add kubernetes-dashboard https://kubernetes.github.io/dashboard/ helm upgrade --install kubernetes-dashboard kubernetes-dashboar...

【部署】K8sGPT + LocalAI 开源自动化诊断工具(GPT4All-j模型)

k8sgpt官方文档:In-Cluster Operator - k8sgpt localai官方文档:Run with Kubernetes | LocalAI documentation 参考文献:K8sGPT + LocalAI: Unlock Kubernetes superpowers f...

【部署】Kubernetes Dashboard v2.7.0部署(token、kubeconfig登录)

部署dashboard wget https://raw.githubusercontent.com/kubernetes/dashboard/v2.7.0/aio/deploy/recommended.yaml 创建sa、clusterrolebing、secret kubectl create ...

基于Percona Operator支持全命名空间创建PXC集群(manifest方式)

官方文档:通用 Kubernetes 安装 - Percona Operator for MySQL --- Generic Kubernetes installation - Percona Operator for MySQL 安装Operator git clone -b v1.14.0 ht...

基于 PostgreSQL Operator 在 k8s 集群中部署Postgres 集群并启动 PostGIS(kustomize方式)

准备 git clone --depth 1 "https://github.com/CrunchyData/postgres-operator-examples.git" cd postgres-operator-examples 安装PGO 官方地址:https://access.crunchy...

istio服务网格进阶-故障注入与请求超时(详解)

官方文档:Istio / 故障注入、Istio / 设置请求超时 前提条件: 部署服务(我这里是官方bookinfo程序) 服务注入sidecar...

H3C-IRF堆叠+无线配置(实验环境)

1.为了保证网络的可靠性sw1与sw2做堆叠,逻辑上为一台交换机; 2.划分vlan 10,20,30,40将宿舍,教学楼,办公楼,食堂区域划分到对应vlan中; 3.vlan100为无线的管理vlan,vlan200为宿舍,办公,教学楼无线vlan;vlan300为食堂的无线vlan. 4.所有用...

istio服务网格入门-流量镜像

官方文档:Istio / 镜像 启动httpbin服务(演示服务) # v1版本 cat <<EOF | istioctl kube-inject -f - | kubectl create -f - apiVersion: apps/v1 kind: Deployment metadata: ...

istio服务网格入门-流量熔断

前提条件: 部署服务(deployment、service)并注入sidecar 我这里还是使用官方提供的bookinfo程序,选择productpage作为熔断目标 kubectl apply -f - << EOF apiVersion: networking.istio.io/v1alpha3...