File tree 1 file changed +21
-6
lines changed
1 file changed +21
-6
lines changed Original file line number Diff line number Diff line change @@ -63,9 +63,11 @@ make create-kind-cluster
63
63
64
64
> Note: If you want to run the latest conformance tests from the Gateway API ` main ` branch, set the following
65
65
> environment variable before deploying NKG:
66
- > ``` bash
67
- > export GW_API_VERSION=main
68
- > ` ` `
66
+
67
+ ``` bash
68
+ export GW_API_VERSION=main
69
+ ```
70
+
69
71
> Otherwise, the latest stable version will be used by default.
70
72
71
73
#### * Option 1* Build and install Nginx Kubernetes Gateway from local to configured kind cluster
@@ -108,9 +110,20 @@ make install-nkg-edge
108
110
109
111
> Note: If you want to run the latest conformance tests from the Gateway API ` main ` branch, run the following
110
112
> make command to update the Go modules to ` main ` :
111
- > ``` makefile
112
- > make update-go-modules
113
- >```
113
+
114
+ ``` makefile
115
+ make update-go-modules
116
+ ```
117
+
118
+ > You can also point to a specific fork/branch by running:
119
+
120
+ ``` bash
121
+ go mod edit -replace=sigs.k8s.io/gateway-api=< your-fork> @< your-branch>
122
+ go mod download
123
+ go mod verify
124
+ go mod tidy
125
+ ```
126
+
114
127
> Otherwise, the latest stable version will be used by default.
115
128
116
129
``` makefile
@@ -135,6 +148,7 @@ make uninstall-nkg
135
148
136
149
### Step 6 - Revert changes to Go modules
137
150
** Optional** Not required if you aren't running the ` main ` Gateway API tests.
151
+
138
152
``` makefile
139
153
make reset-go-modules
140
154
```
@@ -148,6 +162,7 @@ make undo-image-update
148
162
```
149
163
150
164
### Step 8 - Delete kind cluster
165
+
151
166
``` makefile
152
167
make delete-kind-cluster
153
168
```
You can’t perform that action at this time.
0 commit comments