forked from containers/podman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger.yaml
11942 lines (11919 loc) · 355 KB
/
swagger.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
basePath: /
consumes:
- application/json
- application/x-tar
definitions:
Address:
description: Address represents an IP address
properties:
Addr:
type: string
PrefixLen:
format: int64
type: integer
type: object
x-go-package: github.com/containers/libpod/vendor/github.com/docker/docker/api/types/network
AuthenticateOKBody:
description: AuthenticateOKBody authenticate o k body
properties:
IdentityToken:
description: An opaque token used to authenticate a user after a successful
login
type: string
Status:
description: The status of the authentication
type: string
required:
- IdentityToken
- Status
type: object
x-go-package: github.com/containers/libpod/vendor/github.com/docker/docker/api/types/registry
AutoUserNsOptions:
properties:
AdditionalGIDMappings:
description: |-
AdditionalGIDMappings specified additional GID mappings to include in
the generated user namespace.
items:
$ref: '#/definitions/IDMap'
type: array
AdditionalUIDMappings:
description: |-
AdditionalUIDMappings specified additional UID mappings to include in
the generated user namespace.
items:
$ref: '#/definitions/IDMap'
type: array
GroupFile:
description: GroupFile to use if the container uses a volume.
type: string
InitialSize:
description: |-
InitialSize defines the minimum size for the user namespace.
The created user namespace will have at least this size.
format: uint32
type: integer
PasswdFile:
description: PasswdFile to use if the container uses a volume.
type: string
Size:
description: |-
Size defines the size for the user namespace. If it is set to a
value bigger than 0, the user namespace will have exactly this size.
If it is not set, some heuristics will be used to find its size.
format: uint32
type: integer
title: AutoUserNsOptions defines how to automatically create a user namespace.
type: object
x-go-package: github.com/containers/libpod/vendor/github.com/containers/storage
CgroupConfig:
description: CgroupConfig configures the cgroup namespace for the container
properties:
CgroupMode:
$ref: '#/definitions/CgroupMode'
CgroupParent:
type: string
Cgroupns:
type: string
Cgroups:
type: string
type: object
x-go-package: github.com/containers/libpod/pkg/spec
CgroupMode:
title: CgroupMode represents cgroup mode in the container.
type: string
x-go-package: github.com/containers/libpod/pkg/namespaces
CgroupSpec:
title: CgroupSpec represents the cgroup to use for the container.
type: string
x-go-package: github.com/containers/libpod/vendor/github.com/docker/docker/api/types/container
CgroupnsMode:
description: CgroupnsMode represents the cgroup namespace mode of the container
type: string
x-go-package: github.com/containers/libpod/vendor/github.com/docker/docker/api/types/container
Change:
description: |-
It describes changes of the files in the path respect to the
parent layers. The change could be modify, add, delete.
This is used for layer diff.
properties:
Kind:
$ref: '#/definitions/ChangeType'
Path:
type: string
title: Change represents a change, it wraps the change type and path.
type: object
x-go-package: github.com/containers/libpod/vendor/github.com/containers/storage/pkg/archive
ChangeType:
format: int64
title: ChangeType represents the change type.
type: integer
x-go-package: github.com/containers/libpod/vendor/github.com/containers/storage/pkg/archive
Config:
description: |-
It should hold only portable information about the container.
Here, "portable" means "independent from the host we are running on".
Non-portable information *should* appear in HostConfig.
All fields added to this struct must be marked `omitempty` to keep getting
predictable hashes from the old `v1Compatibility` configuration.
properties:
ArgsEscaped:
type: boolean
AttachStderr:
type: boolean
AttachStdin:
type: boolean
AttachStdout:
type: boolean
Cmd:
$ref: '#/definitions/StrSlice'
Domainname:
type: string
Entrypoint:
$ref: '#/definitions/StrSlice'
Env:
items:
type: string
type: array
ExposedPorts:
$ref: '#/definitions/PortSet'
Healthcheck:
$ref: '#/definitions/HealthConfig'
Hostname:
type: string
Image:
type: string
Labels:
additionalProperties:
type: string
type: object
MacAddress:
type: string
NetworkDisabled:
type: boolean
OnBuild:
items:
type: string
type: array
OpenStdin:
type: boolean
Shell:
$ref: '#/definitions/StrSlice'
StdinOnce:
type: boolean
StopSignal:
type: string
StopTimeout:
format: int64
type: integer
Tty:
type: boolean
User:
type: string
Volumes:
additionalProperties:
type: object
type: object
WorkingDir:
type: string
title: Config contains the configuration data about a container.
type: object
x-go-package: github.com/containers/libpod/vendor/github.com/docker/docker/api/types/container
ConfigReference:
description: ConfigReference specifies the source which provides a network's configuration
properties:
Network:
type: string
type: object
x-go-package: github.com/containers/libpod/vendor/github.com/docker/docker/api/types/network
ConmonInfo:
description: ConmonInfo describes the conmon executable being used
properties:
package:
type: string
x-go-name: Package
path:
type: string
x-go-name: Path
version:
type: string
x-go-name: Version
type: object
x-go-package: github.com/containers/libpod/libpod/define
ContainerBasicConfig:
properties:
annotations:
additionalProperties:
type: string
description: |-
Annotations are key-value options passed into the container runtime
that can be used to trigger special behavior.
Optional.
type: object
x-go-name: Annotations
command:
description: |-
Command is the container's command.
If not given and Image is specified, this will be populated by the
image's configuration.
Optional.
items:
type: string
type: array
x-go-name: Command
conmon_pid_file:
description: |-
ConmonPidFile is a path at which a PID file for Conmon will be
placed.
If not given, a default location will be used.
Optional.
type: string
x-go-name: ConmonPidFile
entrypoint:
description: |-
Entrypoint is the container's entrypoint.
If not given and Image is specified, this will be populated by the
image's configuration.
Optional.
items:
type: string
type: array
x-go-name: Entrypoint
env:
additionalProperties:
type: string
description: |-
Env is a set of environment variables that will be set in the
container.
Optional.
type: object
x-go-name: Env
hostname:
description: |-
Hostname is the container's hostname. If not set, the hostname will
not be modified (if UtsNS is not private) or will be set to the
container ID (if UtsNS is private).
Conflicts with UtsNS if UtsNS is not set to private.
Optional.
type: string
x-go-name: Hostname
labels:
additionalProperties:
type: string
description: |-
Labels are key-value pairs that are used to add metadata to
containers.
Optional.
type: object
x-go-name: Labels
log_configuration:
$ref: '#/definitions/LogConfig'
name:
description: |-
Name is the name the container will be given.
If no name is provided, one will be randomly generated.
Optional.
type: string
x-go-name: Name
namespace:
description: |-
Namespace is the libpod namespace the container will be placed in.
Optional.
type: string
x-go-name: Namespace
oci_runtime:
description: |-
OCIRuntime is the name of the OCI runtime that will be used to create
the container.
If not specified, the default will be used.
Optional.
type: string
x-go-name: OCIRuntime
pidns:
$ref: '#/definitions/Namespace'
pod:
description: |-
Pod is the ID of the pod the container will join.
Optional.
type: string
x-go-name: Pod
remove:
description: |-
Remove indicates if the container should be removed once it has been started
and exits
type: boolean
x-go-name: Remove
restart_policy:
description: |-
RestartPolicy is the container's restart policy - an action which
will be taken when the container exits.
If not given, the default policy, which does nothing, will be used.
Optional.
type: string
x-go-name: RestartPolicy
restart_tries:
description: |-
RestartRetries is the number of attempts that will be made to restart
the container.
Only available when RestartPolicy is set to "on-failure".
Optional.
format: uint64
type: integer
x-go-name: RestartRetries
stdin:
description: Stdin is whether the container will keep its STDIN open.
type: boolean
x-go-name: Stdin
stop_signal:
$ref: '#/definitions/Signal'
stop_timeout:
description: |-
StopTimeout is a timeout between the container's stop signal being
sent and SIGKILL being sent.
If not provided, the default will be used.
If 0 is used, stop signal will not be sent, and SIGKILL will be sent
instead.
Optional.
format: uint64
type: integer
x-go-name: StopTimeout
sysctl:
additionalProperties:
type: string
description: Sysctl sets kernel parameters for the container
type: object
x-go-name: Sysctl
systemd:
description: |-
Systemd is whether the container will be started in systemd mode.
Valid options are "true", "false", and "always".
"true" enables this mode only if the binary run in the container is
sbin/init or systemd. "always" unconditionally enables systemd mode.
"false" unconditionally disables systemd mode.
If enabled, mounts and stop signal will be modified.
If set to "always" or set to "true" and conditionally triggered,
conflicts with StopSignal.
If not specified, "false" will be assumed.
Optional.
type: string
x-go-name: Systemd
terminal:
description: |-
Terminal is whether the container will create a PTY.
Optional.
type: boolean
x-go-name: Terminal
utsns:
$ref: '#/definitions/Namespace'
title: ContainerBasicConfig contains the basic parts of a container.
type: object
x-go-package: github.com/containers/libpod/pkg/specgen
ContainerCgroupConfig:
description: |-
ContainerCgroupConfig contains configuration information about a container's
cgroups.
properties:
cgroup_parent:
description: |-
CgroupParent is the container's CGroup parent.
If not set, the default for the current cgroup driver will be used.
Optional.
type: string
x-go-name: CgroupParent
cgroupns:
$ref: '#/definitions/Namespace'
cgroups_mode:
description: |-
CgroupsMode sets a policy for how cgroups will be created in the
container, including the ability to disable creation entirely.
type: string
x-go-name: CgroupsMode
type: object
x-go-package: github.com/containers/libpod/pkg/specgen
ContainerChangeResponseItem:
description: ContainerChangeResponseItem change item in response to ContainerChanges
operation
properties:
Kind:
description: Kind of change
format: uint8
type: integer
Path:
description: Path to file that has changed
type: string
required:
- Kind
- Path
type: object
x-go-package: github.com/containers/libpod/vendor/github.com/docker/docker/api/types/container
ContainerCreateCreatedBody:
description: ContainerCreateCreatedBody OK response to ContainerCreate operation
properties:
Id:
description: The ID of the created container
type: string
x-go-name: ID
Warnings:
description: Warnings encountered when creating the container
items:
type: string
type: array
required:
- Id
- Warnings
type: object
x-go-package: github.com/containers/libpod/vendor/github.com/docker/docker/api/types/container
ContainerHealthCheckConfig:
description: |-
ContainerHealthCheckConfig describes a container healthcheck with attributes
like command, retries, interval, start period, and timeout.
properties:
healthconfig:
$ref: '#/definitions/Schema2HealthConfig'
type: object
x-go-package: github.com/containers/libpod/pkg/specgen
ContainerNamedVolume:
description: |-
ContainerNamedVolume is a named volume that will be mounted into the
container. Each named volume is a libpod Volume present in the state.
properties:
dest:
description: Dest is the mount's destination
type: string
x-go-name: Dest
options:
description: Options are fstab style mount options
items:
type: string
type: array
x-go-name: Options
volumeName:
description: |-
Name is the name of the volume to mount in.
Must resolve to a valid volume present in this Podman.
type: string
x-go-name: Name
type: object
x-go-package: github.com/containers/libpod/libpod
ContainerNetworkConfig:
description: |-
ContainerNetworkConfig contains information on a container's network
configuration.
properties:
cni_networks:
description: |-
CNINetworks is a list of CNI networks to join the container to.
If this list is empty, the default CNI network will be joined
instead. If at least one entry is present, we will not join the
default network (unless it is part of this list).
Only available if NetNS is set to bridge.
Optional.
items:
type: string
type: array
x-go-name: CNINetworks
dns_option:
description: |-
DNSOptions is a set of DNS options that will be used in the
container's resolv.conf, replacing the host's DNS options which are
used by default.
Conflicts with UseImageResolvConf.
Optional.
items:
type: string
type: array
x-go-name: DNSOptions
dns_search:
description: |-
DNSSearch is a set of DNS search domains that will be used in the
container's resolv.conf, replacing the host's DNS search domains
which are used by default.
Conflicts with UseImageResolvConf.
Optional.
items:
type: string
type: array
x-go-name: DNSSearch
dns_server:
description: |-
DNSServers is a set of DNS servers that will be used in the
container's resolv.conf, replacing the host's DNS Servers which are
used by default.
Conflicts with UseImageResolvConf.
Optional.
items:
$ref: '#/definitions/IP'
type: array
x-go-name: DNSServers
expose:
description: |-
Expose is a number of ports that will be forwarded to the container
if PublishExposedPorts is set.
Expose is a map of uint16 (port number) to a string representing
protocol. Allowed protocols are "tcp", "udp", and "sctp", or some
combination of the three separated by commas.
If protocol is set to "" we will assume TCP.
Only available if NetNS is set to Bridge or Slirp, and
PublishExposedPorts is set.
Optional.
x-go-name: Expose
hostadd:
description: |-
HostAdd is a set of hosts which will be added to the container's
etc/hosts file.
Conflicts with UseImageHosts.
Optional.
items:
type: string
type: array
x-go-name: HostAdd
netns:
$ref: '#/definitions/Namespace'
portmappings:
description: |-
PortBindings is a set of ports to map into the container.
Only available if NetNS is set to bridge or slirp.
Optional.
items:
$ref: '#/definitions/PortMapping'
type: array
x-go-name: PortMappings
publish_image_ports:
description: |-
PublishExposedPorts will publish ports specified in the image to
random unused ports (guaranteed to be above 1024) on the host.
This is based on ports set in Expose below, and any ports specified
by the Image (if one is given).
Only available if NetNS is set to Bridge or Slirp.
type: boolean
x-go-name: PublishExposedPorts
static_ip:
$ref: '#/definitions/IP'
static_ipv6:
$ref: '#/definitions/IP'
static_mac:
$ref: '#/definitions/HardwareAddr'
use_image_hosts:
description: |-
UseImageHosts indicates that /etc/hosts should not be managed by
Podman, and instead sourced from the image.
Conflicts with HostAdd.
type: boolean
x-go-name: UseImageHosts
use_image_resolve_conf:
description: |-
UseImageResolvConf indicates that resolv.conf should not be managed
by Podman, but instead sourced from the image.
Conflicts with DNSServer, DNSSearch, DNSOption.
type: boolean
x-go-name: UseImageResolvConf
type: object
x-go-package: github.com/containers/libpod/pkg/specgen
ContainerNode:
description: |-
ContainerNode stores information about the node that a container
is running on. It's only available in Docker Swarm
properties:
Addr:
type: string
Cpus:
format: int64
type: integer
ID:
type: string
IP:
type: string
x-go-name: IPAddress
Labels:
additionalProperties:
type: string
type: object
Memory:
format: int64
type: integer
Name:
type: string
type: object
x-go-package: github.com/containers/libpod/vendor/github.com/docker/docker/api/types
ContainerResourceConfig:
properties:
oom_score_adj:
description: |-
OOMScoreAdj adjusts the score used by the OOM killer to determine
processes to kill for the container's process.
Optional.
format: int64
type: integer
x-go-name: OOMScoreAdj
r_limits:
description: |-
Rlimits are POSIX rlimits to apply to the container.
Optional.
items:
$ref: '#/definitions/POSIXRlimit'
type: array
x-go-name: Rlimits
resource_limits:
$ref: '#/definitions/LinuxResources'
throttleReadBpsDevice:
additionalProperties:
$ref: '#/definitions/LinuxThrottleDevice'
description: IO read rate limit per cgroup per device, bytes per second
type: object
x-go-name: ThrottleReadBpsDevice
throttleReadIOPSDevice:
additionalProperties:
$ref: '#/definitions/LinuxThrottleDevice'
description: IO read rate limit per cgroup per device, IO per second
type: object
x-go-name: ThrottleReadIOPSDevice
throttleWriteBpsDevice:
additionalProperties:
$ref: '#/definitions/LinuxThrottleDevice'
description: IO write rate limit per cgroup per device, bytes per second
type: object
x-go-name: ThrottleWriteBpsDevice
throttleWriteIOPSDevice:
additionalProperties:
$ref: '#/definitions/LinuxThrottleDevice'
description: IO write rate limit per cgroup per device, IO per second
type: object
x-go-name: ThrottleWriteIOPSDevice
weightDevice:
additionalProperties:
$ref: '#/definitions/LinuxWeightDevice'
description: Weight per cgroup per device, can override BlkioWeight
type: object
x-go-name: WeightDevice
title: ContainerResourceConfig contains information on container resource limits.
type: object
x-go-package: github.com/containers/libpod/pkg/specgen
ContainerSecurityConfig:
description: |-
ContainerSecurityConfig is a container's security features, including
SELinux, Apparmor, and Seccomp.
properties:
apparmor_profile:
description: |-
ApparmorProfile is the name of the Apparmor profile the container
will use.
Optional.
type: string
x-go-name: ApparmorProfile
cap_add:
description: |-
CapAdd are capabilities which will be added to the container.
Conflicts with Privileged.
Optional.
items:
type: string
type: array
x-go-name: CapAdd
cap_drop:
description: |-
CapDrop are capabilities which will be removed from the container.
Conflicts with Privileged.
Optional.
items:
type: string
type: array
x-go-name: CapDrop
groups:
description: |-
Groups are a list of supplemental groups the container's user will
be granted access to.
Optional.
items:
type: string
type: array
x-go-name: Groups
idmappings:
$ref: '#/definitions/IDMappingOptions'
no_new_privileges:
description: |-
NoNewPrivileges is whether the container will set the no new
privileges flag on create, which disables gaining additional
privileges (e.g. via setuid) in the container.
type: boolean
x-go-name: NoNewPrivileges
privileged:
description: |-
Privileged is whether the container is privileged.
Privileged does the following:
Adds all devices on the system to the container.
Adds all capabilities to the container.
Disables Seccomp, SELinux, and Apparmor confinement.
(Though SELinux can be manually re-enabled).
TODO: this conflicts with things.
TODO: this does more.
type: boolean
x-go-name: Privileged
read_only_filesystem:
description: |-
ReadOnlyFilesystem indicates that everything will be mounted
as read-only
type: boolean
x-go-name: ReadOnlyFilesystem
seccomp_policy:
description: |-
SeccompPolicy determines which seccomp profile gets applied
the container. valid values: empty,default,image
type: string
x-go-name: SeccompPolicy
seccomp_profile_path:
description: |-
SeccompProfilePath is the path to a JSON file containing the
container's Seccomp profile.
If not specified, no Seccomp profile will be used.
Optional.
type: string
x-go-name: SeccompProfilePath
selinux_opts:
description: |-
SelinuxProcessLabel is the process label the container will use.
If SELinux is enabled and this is not specified, a label will be
automatically generated if not specified.
Optional.
items:
type: string
type: array
x-go-name: SelinuxOpts
user:
description: |-
User is the user the container will be run as.
Can be given as a UID or a username; if a username, it will be
resolved within the container, using the container's /etc/passwd.
If unset, the container will be run as root.
Optional.
type: string
x-go-name: User
userns:
$ref: '#/definitions/Namespace'
type: object
x-go-package: github.com/containers/libpod/pkg/specgen
ContainerSize:
description: |-
ContainerSize holds the size of the container's root filesystem and top
read-write layer.
properties:
rootFsSize:
format: int64
type: integer
x-go-name: RootFsSize
rwSize:
format: int64
type: integer
x-go-name: RwSize
type: object
x-go-package: github.com/containers/libpod/pkg/ps/define
ContainerState:
description: |-
ContainerState stores container's running state
it's part of ContainerJSONBase and will return by "inspect" command
properties:
Dead:
type: boolean
Error:
type: string
ExitCode:
format: int64
type: integer
FinishedAt:
type: string
Health:
$ref: '#/definitions/Health'
OOMKilled:
type: boolean
Paused:
type: boolean
Pid:
format: int64
type: integer
Restarting:
type: boolean
Running:
type: boolean
StartedAt:
type: string
Status:
type: string
type: object
x-go-package: github.com/containers/libpod/vendor/github.com/docker/docker/api/types
ContainerStorageConfig:
description: |-
ContainerStorageConfig contains information on the storage configuration of a
container.
properties:
devices:
description: |-
Devices are devices that will be added to the container.
Optional.
items:
$ref: '#/definitions/LinuxDevice'
type: array
x-go-name: Devices
image:
description: |-
Image is the image the container will be based on. The image will be
used as the container's root filesystem, and its environment vars,
volumes, and other configuration will be applied to the container.
Conflicts with Rootfs.
At least one of Image or Rootfs must be specified.
type: string
x-go-name: Image
image_volume_mode:
description: |-
ImageVolumeMode indicates how image volumes will be created.
Supported modes are "ignore" (do not create), "tmpfs" (create as
tmpfs), and "anonymous" (create as anonymous volumes).
The default if unset is anonymous.
Optional.
type: string
x-go-name: ImageVolumeMode
init:
description: |-
Init specifies that an init binary will be mounted into the
container, and will be used as PID1.
type: boolean
x-go-name: Init
init_path:
description: |-
InitPath specifies the path to the init binary that will be added if
Init is specified above. If not specified, the default set in the
Libpod config will be used. Ignored if Init above is not set.
Optional.
type: string
x-go-name: InitPath
ipcns:
$ref: '#/definitions/Namespace'
mounts:
description: |-
Mounts are mounts that will be added to the container.
These will supersede Image Volumes and VolumesFrom volumes where
there are conflicts.
Optional.
items:
$ref: '#/definitions/Mount'
type: array
x-go-name: Mounts
rootfs:
description: |-
Rootfs is the path to a directory that will be used as the
container's root filesystem. No modification will be made to the
directory, it will be directly mounted into the container as root.
Conflicts with Image.
At least one of Image or Rootfs must be specified.
type: string
x-go-name: Rootfs
rootfs_propagation:
description: |-
RootfsPropagation is the rootfs propagation mode for the container.
If not set, the default of rslave will be used.
Optional.
type: string
x-go-name: RootfsPropagation
shm_size:
description: |-
ShmSize is the size of the tmpfs to mount in at /dev/shm, in bytes.
Conflicts with ShmSize if IpcNS is not private.
Optional.
format: int64
type: integer
x-go-name: ShmSize
volumes:
description: |-
Volumes are named volumes that will be added to the container.
These will supersede Image Volumes and VolumesFrom volumes where
there are conflicts.
Optional.
items:
$ref: '#/definitions/NamedVolume'
type: array
x-go-name: Volumes
volumes_from:
description: |-
VolumesFrom is a set of containers whose volumes will be added to
this container. The name or ID of the container must be provided, and
may optionally be followed by a : and then one or more
comma-separated options. Valid options are 'ro', 'rw', and 'z'.
Options will be used for all volumes sourced from the container.
items:
type: string
type: array
x-go-name: VolumesFrom
work_dir:
description: |-
WorkDir is the container's working directory.
If unset, the default, /, will be used.
Optional.
type: string
x-go-name: WorkDir
type: object
x-go-package: github.com/containers/libpod/pkg/specgen
ContainerStore:
description: |-
ContainerStore describes the quantity of containers in the
store by status
properties:
number:
format: int64
type: integer
x-go-name: Number
paused:
format: int64
type: integer
x-go-name: Paused
running:
format: int64
type: integer
x-go-name: Running
stopped:
format: int64
type: integer
x-go-name: Stopped
type: object
x-go-package: github.com/containers/libpod/libpod/define
ContainerTopOKBody:
description: ContainerTopOKBody OK response to ContainerTop operation
properties:
Processes:
description: Each process running in the container, where each is process
is an array of values corresponding to the titles
items:
items:
type: string
type: array
type: array
Titles:
description: The ps column titles
items:
type: string
type: array
required:
- Processes
- Titles
type: object
x-go-package: github.com/containers/libpod/vendor/github.com/docker/docker/api/types/container
ContainerUpdateOKBody:
description: ContainerUpdateOKBody OK response to ContainerUpdate operation
properties:
Warnings:
description: warnings
items:
type: string
type: array
required:
- Warnings
type: object
x-go-package: github.com/containers/libpod/vendor/github.com/docker/docker/api/types/container
ContainerWaitOKBody:
description: ContainerWaitOKBody OK response to ContainerWait operation
properties:
Error:
$ref: '#/definitions/ContainerWaitOKBodyError'
StatusCode:
description: Exit code of the container
format: int64
type: integer
required:
- Error
- StatusCode
type: object
x-go-package: github.com/containers/libpod/vendor/github.com/docker/docker/api/types/container
ContainerWaitOKBodyError:
description: ContainerWaitOKBodyError container waiting error, if any
properties:
Message:
description: Details of an error
type: string
type: object
x-go-package: github.com/containers/libpod/vendor/github.com/docker/docker/api/types/container
ContainersPruneReport:
properties:
ContainersDeleted:
items:
type: string
type: array
SpaceReclaimed:
format: uint64
type: integer
type: object