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
* hack at turning auto into a bool
* Use MarshalJSON to DTRT
* make generate-schemas
* small cleanup
* fix additional auto:{} references
* Update docs on disabling auto-sync
Copy file name to clipboardexpand all lines: integration/examples/jib-sync/README.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ build:
58
58
context: .
59
59
jib: {}
60
60
sync:
61
-
auto: {}
61
+
auto: true
62
62
```
63
63
64
64
This example is designed around the functionality available in [Spring Boot Developer Tools](https://docs.spring.io/spring-boot/docs/current/reference/html/using-spring-boot.html#using-boot-devtools) for developing against running applications.
@@ -76,7 +76,7 @@ build:
76
76
jib:
77
77
fromImage: gcr.io/distroless/java:debug
78
78
sync:
79
-
auto: {}
79
+
auto: true
80
80
```
81
81
82
82
@@ -121,7 +121,7 @@ build:
121
121
args:
122
122
- -Psync
123
123
sync:
124
-
auto: {}
124
+
auto: true
125
125
```
126
126
127
127
You can also take advantage of [skaffold profiles](https://skaffold.dev/docs/environment/profiles/) to control when to activate sync on your project.
@@ -141,7 +141,7 @@ profiles:
141
141
# we want to activate sync on our skaffold artifact
0 commit comments