Advanced Search
Search Results
23 total results found
部署k8s集群
节点规划: master 10.1.1.101/24 8c8g node1 10.1.1.102/24 2c4g node2 10.1.1.103/24 2c4g gw: 10.1.1.2 dns: 223.5.5.5 禁用swap分区、修改hosts、启用 br_netfilterip_forward cat <<EOF >/etc/sysctl.d/k8s.conf net.bridge.bridge-nf-call-iptables = 1 net.bridge.bridge-nf-call-ip6tabl...
安装Calico、helm、istio-base、istiod、gateway
安装Calico(修改cidr相同于pods-cidr) kubectl create -f https://raw.githubusercontent.com/projectcalico/calico/v3.31.2/manifests/tigera-operator.yaml kubectl create -f https://raw.githubusercontent.com/projectcalico/calico/v3.31.2/manifests/custom-resources.yaml 部署he...
部署bookinfo测试案例
部署bookinfo测试 kubectl create namespace bookinfo kubectl label namespace bookinfo istio-injection=enabled 使用 Deployment 部署 details 应用。details_deploy.yaml apiVersion: apps/v1 kind: Deployment metadata: name: details-v1 labels: app: details version: v...
部署可观测平台
拉取Istio官方仓库 git clone https://github.com/istio/istio.git kubectl apply -f samples/addons 通过 Gateway 访问 Kiali kiali_gateway.yaml apiVersion: networking.istio.io/v1alpha3 kind: Gateway metadata: name: kiali-gateway spec: selector: istio: ...
实现金丝雀发布
金丝雀发布 给书店微服务的四个应用都创建一个 DestinationRule 。 service_version.yaml apiVersion: networking.istio.io/v1alpha3 kind: DestinationRule metadata: name: productpage spec: host: productpage subsets: - name: v1 labels: version: v1 --- apiVersion: networkin...