LiuDongdong

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

Kubernetes 命令大全

1. 自动补全 $ source <(kubectl completion bash) # setup autocomplete in bash, bash-completion package should be installed first. $ source <(kubectl completion zsh) # setup autocomplete in zsh 2. Kubectl 上下文和配置 $ kubectl config view # 显示合并后的 kubeconfig 配置 # 同时使用多个 kubeconfig 文件并查看合并后的

值传递&引用传递

1. 值类型 定义:变量直接指向存在内存中的值,我们称之为值类型。 值类型的变量的值存储在栈中。 值类型,将一个变量赋值给另一个变量,称为值拷贝。 package main

unsafe

可以绕过 Go 的内存安全机制,直接对内存进行读写。所以有时候出于性能需要,还是会冒险使用它来对内存进行操作。 1. 指针类型转换 unsafe.Pointer 是一种特殊意义的指针

Kubernetes-Service&Load Balancing&Networking

Kubernetes IP addresses exist at the Pod scope - containers within a Pod share their network namespaces - including their IP address and MAC address. This means that containers within a Pod can all reach each other’s ports on localhost. This also means that containers within a Pod must coordinate port usage, but this is no different from processes in a VM. Containers within a Pod use networking to communicate

并发

虽然 Go 程序编译后生成的是本地可执行代码,但是这些可执行代码必须运行在Go 语言的运行时(Runtime )中。Go 运行时类似 Java 和 .NET 语言所用到的虚
0%