cloudSky's 小站

KubeSphere-3: 使用 KubeKey 离线升级 KubeSphere

升级准备 1. 环境信息 OS: AlmaLinux 9.0 Kubernetes: 1.24.3 containerd: 1.6.4 KubeSphere: 3.3.1 Kubekey: 2.3.0 Harbor: 2.5.3 2. kubekey离线所需artifact清单 ks-v3.3.1-manifest.yaml apiVersion: kubekey.kubesphere.io/v1alpha2 kind: Manifest metadata: name: sample spec: arches: - amd64 operatingSystems: - arch: amd64 type: linux id: almalinux version: "9.0" osImage: AlmaLinux 9.0 repository:

fastlane无法上传ipa至TestFlight

环境 Mac Studio(2022) MacOS 12.5.1 XCode 13.4.1 fastlane 2.210.1 ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [arm64-darwin21] 问题 上周还能正常上传TestFlight,今天就出现这诡异的问题,报错日志如下 [14:08:17]: [iTMSTransporter] [2022-10-22 14:08:16

APISIX配置http重定向到https

背景 一般网站在使用https协议之后,都会在访问 http 站点的时候,自动重定向到https,那么使用 APISIX 该怎么实现呢? 答案是通过内置变量 http_x_forwarded_proto 判断请求协

[Go] 1.18新增库之net/netip

go1.18标准库都支持了,还直接支持ipv6判断包含之类的。 示例如下 package main import ( "fmt" "net/netip" ) func main() { p, err := netip.ParsePrefix(`10.10.10.0/24`) if err != nil { panic(err) } a, err := netip.ParseAddr(`10.10.10.6`) if err != nil { panic(err) } fmt.Println(p.Contains(a)) }