Kubeadm supports for Kubelet Dynamic Configuration.

This commit is contained in:
xiangpengzhao
2017-11-15 23:02:59 +08:00
parent a82460d772
commit cafb2f731f
9 changed files with 220 additions and 12 deletions

View File

@@ -60,3 +60,9 @@ func Int32PtrDerefOr(ptr *int32, def int32) int32 {
}
return def
}
// BoolPtr returns a pointer to a bool
func BoolPtr(b bool) *bool {
o := b
return &o
}