test istio https requests local(macos)

generate certificate

1
2
3
4
5
brew install mkcert
brew install nss

mkdir -p ~/.cert
mkcert -key-file ~/.cert/key.pem -cert-file ~/.cert/cert.pem "api.ginta.com"

Enable the system to trust the generated certificate

阅读更多

Kubernetes 架构

前言

作为云原生时代的当红人物,一直想精读一下 k8s 的源码,本篇文章会从其架构,源码来深入剖析 k8s 的设计思路。

K8S组件与职责

阅读更多