谷歌容器引擎:托管创建停留在'待定'状态

时间:2016-03-23 04:56:24

标签: google-kubernetes-engine

尝试重新创建GKE集群以尝试Kubernetes 1.2.0

群集正确,但第一个pod部署卡在'待定':

[]# kubectl get pods
NAME            READY     STATUS    RESTARTS   AGE
operation-daily   0/1       Pending   0          6m 

一直遵循1.1.8(成功)使用的相同脚本。

尝了几次 - 没有运气。

我该如何诊断问题? 是否有可能回到1.1.8版本?

美环-1F

1 个答案:

答案 0 :(得分:4)

-(IBAction)Onclick_drawer:(id)sender { if(is_open) { is_open=false; [UIView animateWithDuration:0.3 delay:0.0 usingSpringWithDamping:1.0 initialSpringVelocity:4.0 options: UIViewAnimationOptionCurveEaseInOut animations:^{ self.drawer_view.frame=CGRectMake(0, 64, 320,200); } completion:^(BOOL finished){ }]; [UIView commitAnimations]; } else { is_open=true; [UIView animateWithDuration:0.3 delay:0.0 usingSpringWithDamping:1.0 initialSpringVelocity:4.0 options: UIViewAnimationOptionCurveEaseInOut animations:^{ self.drawer_view.frame=CGRectMake(0, 64, 320, 0); self.drawer_view.clipsToBounds = YES; // Need to add this line. This will clip all sub views into parent view } completion:^(BOOL finished){ }]; [UIView commitAnimations]; } } 的输出应该有一些线索。

相关问题