We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e80f530 commit 1c059f7Copy full SHA for 1c059f7
extras/dagger/main.go
@@ -111,6 +111,19 @@ func (att *Attestation) Status(ctx context.Context) (string, error) {
111
Stdout(ctx)
112
}
113
114
+// Sync will force the client to send an actual query to the chainloop control plane
115
+// This is specially important to be run right after Init
116
+// for example
117
+//
118
+// att := chainloop.Init(ctx, token, "main")
119
120
+// if err := att.Sync(ctx); err != nil {
121
+// return nil, err
122
+// }
123
+func (att *Attestation) Sync(ctx context.Context) error {
124
+ return nil
125
+}
126
+
127
// Attach credentials for a container registry.
128
// Chainloop will use them to query the registry for container image pieces of evidences
129
func (att *Attestation) WithRegistryAuth(
0 commit comments