LiuDongdong

爱好由来落笔难,一诗千改心始安。

Kubernetes-workload

A workload is an application running on Kubernetes. Whether your workload is a single component or several that work together, on Kubernetes you run it inside a set of pods. In Kubernetes, a Pod represents a set of running containers on your cluster. Deployment and ReplicaSet (replacing the legacy resource ReplicationController). Deployment is a good fit for managing a stateless application workload on your cluster, where any Pod in the

二分查找

1. 绝对差值和 todo 给你两个正整数数组 nums1 和 nums2 ,数组的长度都是 n 。数组 nums1 和 nums2 的 绝对差值和 定义为所有 |nums1[i] - nums2[i]|(0 <= i < n)的 总和(下标从

Minikube-tutorial

Minikube 是一种轻量化的 Kubernetes 集群,是 Kubernetes 社区为了帮助开发者和学习者能够更好学习和体验 k8s 功能而推出的,借助个人 PC 的虚拟化环境就可以实现 Kubernetes 的快速构建启动。 1.

Kubernetes-Cluster Architecture

Kubernetes runs your workload by placing containers into Pods to run on Nodes. A node may be a virtual or physical machine, depending on the cluster. Kubernetes主要由以下几个核心组件组成: etcd保存了整个集群的状态; apise

string操作

Go 语言中字符串的内部实现使用 UTF-8 编码,通过 rune 类型,可以方便地对每个 UTF-8 字符进行访问。当然, Go 语言也支持按照传统的 ASCII 码方式逐字符进行访问。 字符串是
0%