File tree Expand file tree Collapse file tree 3 files changed +1
-13
lines changed Expand file tree Collapse file tree 3 files changed +1
-13
lines changed Original file line number Diff line number Diff line change @@ -376,7 +376,7 @@ create-cluster: $(CLUSTERCTL) $(ENVSUBST) ## Create a development Kubernetes clu
376
376
timeout 300 bash -c "while ! kubectl -n $(CLUSTER_NAME) get secrets | grep $(CLUSTER_NAME)-kubeconfig; do sleep 1; done"
377
377
# Get kubeconfig and store it locally.
378
378
kubectl -n $(CLUSTER_NAME) get secrets $(CLUSTER_NAME)-kubeconfig -o json | jq -r .data.value | base64 --decode > ./kubeconfig
379
- timeout 300 bash -c "while ! kubectl --kubeconfig=./kubeconfig get nodes | grep master; do sleep 1; done"
379
+ timeout 900 bash -c "while ! kubectl --kubeconfig=./kubeconfig get nodes | grep master; do sleep 1; done"
380
380
381
381
# Deploy calico
382
382
kubectl --kubeconfig=./kubeconfig apply -f https://docs.projectcalico.org/manifests/calico.yaml
Original file line number Diff line number Diff line change 1
- apiVersion : v1
2
- kind : Namespace
3
- metadata :
4
- labels :
5
- control-plane : capo-controller-manager
6
- name : system
7
1
---
8
2
apiVersion : apps/v1
9
3
kind : Deployment
Original file line number Diff line number Diff line change @@ -132,12 +132,6 @@ func main() {
132
132
"The address the health endpoint binds to." ,
133
133
)
134
134
135
- flag .StringVar (& healthAddr ,
136
- "health-addr" ,
137
- ":9440" ,
138
- "The address the health endpoint binds to." ,
139
- )
140
-
141
135
flag .Parse ()
142
136
143
137
if watchNamespace != "" {
You can’t perform that action at this time.
0 commit comments