You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ make run
29
29
30
30
# or
31
31
32
-
./gradlew quarkusDev
32
+
./gradlew :operator:quarkusDev
33
33
```
34
34
35
35
The app service will be available at http://localhost:8080,
@@ -42,7 +42,7 @@ make test
42
42
43
43
# or
44
44
45
-
./gradlew test
45
+
./gradlew :operator:test
46
46
```
47
47
48
48
### Run the project as a service in IntelliJ
@@ -55,7 +55,7 @@ Afterward, the project can be started in IntelliJ by navigating to `Run` -> `Run
55
55
## Test the CRD on the ephemeral Dev Services cluster
56
56
57
57
This example demonstrates how to set up a local development environment using Quarkus Dev Services to test the Operator manually.
58
-
As the K3s cluster port and the secrets change on every `./gradlew quarkusDev` run, you will have to manually update the port and secrets in the `~/.kube/config` every time.
58
+
As the K3s cluster port and the secrets change on every `./gradlew :operator:quarkusDev` run, you will have to manually update the port and secrets in the `~/.kube/config` every time.
59
59
60
60
### 1. Configure Kubeconfig from Dev Services
61
61
@@ -170,7 +170,7 @@ spec:
170
170
The application can be packaged using:
171
171
172
172
```shell script
173
-
./gradlew build
173
+
./gradlew :operator:build
174
174
```
175
175
176
176
It produces the `quarkus-run.jar` file in the `build/quarkus-app/` directory.
@@ -181,7 +181,7 @@ The application is now runnable using `java -jar build/quarkus-app/quarkus-run.j
181
181
If you want to build an _über-jar_, execute the following command:
0 commit comments