@flyteorg/flyteidl 1.1.3 → 1.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flyteorg/flyteidl",
3
- "version": "1.1.3",
3
+ "version": "1.1.6",
4
4
  "description": "Compiled protocol buffers and gRPC service clients/servers for Flyte IDLs",
5
5
  "repository": {
6
6
  "type": "git",
@@ -0,0 +1,17 @@
1
+ # Generated by buf. DO NOT EDIT.
2
+ version: v1
3
+ deps:
4
+ - remote: buf.build
5
+ owner: googleapis
6
+ repository: googleapis
7
+ branch: main
8
+ commit: 2aa0ce062bf84656ad01d979d5c64038
9
+ digest: b1-m2miB5uR65x_C-ImFfVIHaeVmyd1u5X7NugZ2vDbpJI=
10
+ create_time: 2022-06-01T15:05:55.95283Z
11
+ - remote: buf.build
12
+ owner: unionai
13
+ repository: protoc-gen-swagger
14
+ branch: main
15
+ commit: 560c4f34581045c4a4e59ffab94fceb0
16
+ digest: b1-eoEUXiWuST4tiiorwcO2Nvx_1pX0GHqRjUlc3sQocig=
17
+ create_time: 2022-06-02T06:14:15.441008Z
@@ -0,0 +1,11 @@
1
+ version: v1
2
+ name: buf.build/flyteorg/flyteidl
3
+ lint:
4
+ use:
5
+ - DEFAULT
6
+ breaking:
7
+ use:
8
+ - FILE
9
+ deps:
10
+ - buf.build/googleapis/googleapis
11
+ - buf.build/unionai/protoc-gen-swagger
@@ -281,102 +281,6 @@ of a hive task's TaskTemplate
281
281
 
282
282
 
283
283
 
284
- ..
285
- end messages
286
-
287
-
288
- ..
289
- end enums
290
-
291
-
292
- ..
293
- end HasExtensions
294
-
295
-
296
- ..
297
- end services
298
-
299
-
300
-
301
-
302
- .. _ref_flyteidl/plugins/sidecar.proto:
303
-
304
- flyteidl/plugins/sidecar.proto
305
- ==================================================================
306
-
307
-
308
-
309
-
310
-
311
- .. _ref_flyteidl.plugins.SidecarJob:
312
-
313
- SidecarJob
314
- ------------------------------------------------------------------
315
-
316
- A sidecar job brings up the desired pod_spec.
317
- The plugin executor is responsible for keeping the pod alive until the primary container terminates
318
- or the task itself times out.
319
-
320
-
321
-
322
- .. csv-table:: SidecarJob type fields
323
- :header: "Field", "Type", "Label", "Description"
324
- :widths: auto
325
-
326
- "pod_spec", ":ref:`ref_k8s.io.api.core.v1.PodSpec`", "", ""
327
- "primary_container_name", ":ref:`ref_string`", "", ""
328
- "annotations", ":ref:`ref_flyteidl.plugins.SidecarJob.AnnotationsEntry`", "repeated", "Pod annotations"
329
- "labels", ":ref:`ref_flyteidl.plugins.SidecarJob.LabelsEntry`", "repeated", "Pod labels"
330
-
331
-
332
-
333
-
334
-
335
-
336
-
337
- .. _ref_flyteidl.plugins.SidecarJob.AnnotationsEntry:
338
-
339
- SidecarJob.AnnotationsEntry
340
- ------------------------------------------------------------------
341
-
342
-
343
-
344
-
345
-
346
- .. csv-table:: SidecarJob.AnnotationsEntry type fields
347
- :header: "Field", "Type", "Label", "Description"
348
- :widths: auto
349
-
350
- "key", ":ref:`ref_string`", "", ""
351
- "value", ":ref:`ref_string`", "", ""
352
-
353
-
354
-
355
-
356
-
357
-
358
-
359
- .. _ref_flyteidl.plugins.SidecarJob.LabelsEntry:
360
-
361
- SidecarJob.LabelsEntry
362
- ------------------------------------------------------------------
363
-
364
-
365
-
366
-
367
-
368
- .. csv-table:: SidecarJob.LabelsEntry type fields
369
- :header: "Field", "Type", "Label", "Description"
370
- :widths: auto
371
-
372
- "key", ":ref:`ref_string`", "", ""
373
- "value", ":ref:`ref_string`", "", ""
374
-
375
-
376
-
377
-
378
-
379
-
380
284
  ..
381
285
  end messages
382
286
 
@@ -1,22 +0,0 @@
1
- syntax = "proto3";
2
-
3
- package flyteidl.plugins;
4
-
5
- option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins";
6
-
7
- import "k8s.io/api/core/v1/generated.proto";
8
-
9
- // A sidecar job brings up the desired pod_spec.
10
- // The plugin executor is responsible for keeping the pod alive until the primary container terminates
11
- // or the task itself times out.
12
- message SidecarJob {
13
- k8s.io.api.core.v1.PodSpec pod_spec = 1;
14
-
15
- string primary_container_name = 2;
16
-
17
- // Pod annotations
18
- map<string, string> annotations = 3;
19
-
20
- // Pod labels
21
- map<string, string> labels = 4;
22
- }