File tree 2 files changed +21
-4
lines changed
2 files changed +21
-4
lines changed Original file line number Diff line number Diff line change @@ -331,11 +331,13 @@ build.cluster: $(KTF) # builds a KIND cluster which can be used for testing and
331
331
.PHONY : load.image
332
332
load.image : build.image
333
333
kind load docker-image $(BLIXT_CONTROLPLANE_IMAGE ) :$(TAG ) --name $(KIND_CLUSTER ) && \
334
- kubectl -n blixt-system rollout restart deployment blixt-controlplane
334
+ kubectl -n blixt-system get deployment blixt-controlplane > /dev/null 2>&1 && \
335
+ kubectl -n blixt-system rollout restart deployment blixt-controlplane || true
335
336
336
337
.PHONY : load.all.images
337
338
load.all.images : build.all.images
338
339
kind load docker-image $(BLIXT_CONTROLPLANE_IMAGE ) :$(TAG ) --name $(KIND_CLUSTER ) && \
339
340
kind load docker-image $(BLIXT_DATAPLANE_IMAGE ) :$(TAG ) --name $(KIND_CLUSTER ) && \
340
341
kind load docker-image $(BLIXT_UDP_SERVER_IMAGE ) :$(TAG ) --name $(KIND_CLUSTER ) && \
341
- kubectl -n blixt-system rollout restart deployment blixt-controlplane
342
+ kubectl -n blixt-system get deployment blixt-controlplane > /dev/null 2>&1 && \
343
+ kubectl -n blixt-system rollout restart deployment blixt-controlplane || true
Original file line number Diff line number Diff line change @@ -81,13 +81,28 @@ to have _you_ join us in iterating on it and helping us build it together!
81
81
> (KIND)] [ kind ] clusters. You can generate a new development cluster for
82
82
> testing with ` make build.cluster ` .
83
83
84
- Deploy [ Gateway API] [ gwapi ] [ CRDs] [ crds ] :
84
+ > ** Note** : Currently our container images are under migration from a private repository.
85
+ > At this moment, you should build and load images yourself.
86
+
87
+ 1 . Deploy [ Gateway API] [ gwapi ] [ CRDs] [ crds ] :
85
88
86
89
``` console
87
90
kubectl apply -k https://github.com/kubernetes-sigs/gateway-api/config/crd/experimental?ref=v0.8.1
88
91
```
89
92
90
- Deploy:
93
+ 2 . Build Blixt images:
94
+
95
+ ``` console
96
+ make build.all.images TAG=latest
97
+ ```
98
+
99
+ 3 . Load images into your Kind cluster:
100
+
101
+ ``` console
102
+ make load.all.images TAG=latest
103
+ ```
104
+
105
+ 4 . Deploy Blixt:
91
106
92
107
``` console
93
108
kubectl apply -k config/default
You can’t perform that action at this time.
0 commit comments