curl: (7) Failed to connect to 10.254.254.199 port 10080: Connection refused curl: (7) Failed to connect to 10.254.254.199 port 10080: Connection refused curl: (7) Failed to connect to 10.254.254.199 port 10080: Connection refused curl: (7) Failed to connect to 10.254.254.199 port 10080:...
k8s 端口转发 port-forward 每晚断掉 原因: 连接空闲时超时断连 解决方案: 1. 修改配置, 将 streaming-connection-idle-timeout 的值设置为0, 2. 使用 while do 结构, 持续转发端口或者持续访问端口 采取第一种解决办法 1.全局查找 10-kubeadm.conf 文件 2.修改配置 3.重启服务 sudo systemctl daemon-reload...
kubectl delete pod [pod名称]:删除指定的Pod。 kubectl scale deployment [deployment名称] --replicas=[副本数量]:扩展或缩减指定Deployment的副本数量。 kubectl exec -it [pod名称] [命令]:在指定的Pod中执行命令。 kubectl logs [pod名称]:查看指定Pod的日志。 kubectl port-forward [pod名称] [本地端口]:[...
kubectl describe service <service_name>: 显示服务的详细信息。 kubectl port-forward <pod_name> <host_port>:<container_port>: 将本地端口转发到 Pod 的端口。 部署相关命令: kubectl get deployments: 列出所有部署。 kubectl describe deployment <deployment_name>: 显示部署的详细信息。 kubectl scale deploy...
kubectl port-forward my-pod8080:80 kubectl label kubectl label 命令用于在 Kubernetes 资源中添加或删除标签。它可用于在各种资源(包括容器、服务、部署等)中添加或删除标签。 例如,要向容器添加标签,可以: 代码语言:javascript 复制 kubectl label pod my-pod app=backend ...
kubectl port-forward $(kubectl get pods --selector "app.kubernetes.io/name=traefik" --output=name -n traefik) -n traefik --address 0.0.0.0 9000:9000 1. 2. 3. 访问:http://192.168.3.30:9000/dashboard/#/ 五、配置http代理 1.部署whoami测试应用 ...
name: nginx-hostport2 labels: k8s-app: nginx-hostport2 spec: replicas: 1 selector: matchLabels: k8s-app: nginx-hostport2 template: metadata: labels: k8s-app: nginx-hostport2 spec: nodeName: spring-38 containers: - name: nginx
get #显示一个或多个资源 describe #显示资源详情 create #从文件或标准输入创建资源 update #从文件或标准输入更新资源 delete #通过文件名、标准输入、资源名或者 label 删除资源 log #输出 pod 中一个容器的日志 rolling-update #对指定的 RC 执行滚动升级 exec #在容器内部执行命令 port-forward #将本地端口...
deployment hello-minikube1 --type=LoadBalancer --port=8080 将先前创建的 hello-minikube1 Deployment 暴露为一个Kubernetes服务。 服务(Service)是Kubernetes中用于公开应用程序或Pod的访问入口的对象。通过暴露服务,其他应用程序或用户可以通过该服务访问Deployment中运行的Pod副本。 在这个命令中,使用了 --type=Load...
bridge-nf-call-ip6tables = 1 net.bridge.bridge-nf-call-iptables = 1 net.ipv4.ip_forward = ...