k8s.io/kube-openapi@v0.0.0-20240228011516-70dd3763d340/pkg/spec3/testdata/appsv1spec.json (about) 1 { 2 "components": { 3 "schemas": { 4 "io.k8s.api.apps.v1.ControllerRevision": { 5 "description": "ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.", 6 "properties": { 7 "apiVersion": { 8 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", 9 "type": "string" 10 }, 11 "data": { 12 "allOf": [ 13 { 14 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.runtime.RawExtension" 15 } 16 ], 17 "default": {}, 18 "description": "Data is the serialized representation of the state." 19 }, 20 "kind": { 21 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 22 "type": "string" 23 }, 24 "metadata": { 25 "allOf": [ 26 { 27 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" 28 } 29 ], 30 "default": {}, 31 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" 32 }, 33 "revision": { 34 "default": 0, 35 "description": "Revision indicates the revision of the state represented by Data.", 36 "format": "int64", 37 "type": "integer" 38 } 39 }, 40 "required": [ 41 "revision" 42 ], 43 "type": "object", 44 "x-kubernetes-group-version-kind": [ 45 { 46 "group": "apps", 47 "kind": "ControllerRevision", 48 "version": "v1" 49 } 50 ] 51 }, 52 "io.k8s.api.apps.v1.ControllerRevisionList": { 53 "description": "ControllerRevisionList is a resource containing a list of ControllerRevision objects.", 54 "properties": { 55 "apiVersion": { 56 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", 57 "type": "string" 58 }, 59 "items": { 60 "description": "Items is the list of ControllerRevisions", 61 "items": { 62 "allOf": [ 63 { 64 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 65 } 66 ], 67 "default": {} 68 }, 69 "type": "array" 70 }, 71 "kind": { 72 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 73 "type": "string" 74 }, 75 "metadata": { 76 "allOf": [ 77 { 78 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" 79 } 80 ], 81 "default": {}, 82 "description": "More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" 83 } 84 }, 85 "required": [ 86 "items" 87 ], 88 "type": "object", 89 "x-kubernetes-group-version-kind": [ 90 { 91 "group": "apps", 92 "kind": "ControllerRevisionList", 93 "version": "v1" 94 } 95 ] 96 }, 97 "io.k8s.api.apps.v1.DaemonSet": { 98 "description": "DaemonSet represents the configuration of a daemon set.", 99 "properties": { 100 "apiVersion": { 101 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", 102 "type": "string" 103 }, 104 "kind": { 105 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 106 "type": "string" 107 }, 108 "metadata": { 109 "allOf": [ 110 { 111 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" 112 } 113 ], 114 "default": {}, 115 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" 116 }, 117 "spec": { 118 "allOf": [ 119 { 120 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetSpec" 121 } 122 ], 123 "default": {}, 124 "description": "The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" 125 }, 126 "status": { 127 "allOf": [ 128 { 129 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetStatus" 130 } 131 ], 132 "default": {}, 133 "description": "The current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" 134 } 135 }, 136 "type": "object", 137 "x-kubernetes-group-version-kind": [ 138 { 139 "group": "apps", 140 "kind": "DaemonSet", 141 "version": "v1" 142 } 143 ] 144 }, 145 "io.k8s.api.apps.v1.DaemonSetCondition": { 146 "description": "DaemonSetCondition describes the state of a DaemonSet at a certain point.", 147 "properties": { 148 "lastTransitionTime": { 149 "allOf": [ 150 { 151 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" 152 } 153 ], 154 "default": {}, 155 "description": "Last time the condition transitioned from one status to another." 156 }, 157 "message": { 158 "description": "A human readable message indicating details about the transition.", 159 "type": "string" 160 }, 161 "reason": { 162 "description": "The reason for the condition's last transition.", 163 "type": "string" 164 }, 165 "status": { 166 "default": "", 167 "description": "Status of the condition, one of True, False, Unknown.", 168 "type": "string" 169 }, 170 "type": { 171 "default": "", 172 "description": "Type of DaemonSet condition.", 173 "type": "string" 174 } 175 }, 176 "required": [ 177 "type", 178 "status" 179 ], 180 "type": "object" 181 }, 182 "io.k8s.api.apps.v1.DaemonSetList": { 183 "description": "DaemonSetList is a collection of daemon sets.", 184 "properties": { 185 "apiVersion": { 186 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", 187 "type": "string" 188 }, 189 "items": { 190 "description": "A list of daemon sets.", 191 "items": { 192 "allOf": [ 193 { 194 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 195 } 196 ], 197 "default": {} 198 }, 199 "type": "array" 200 }, 201 "kind": { 202 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 203 "type": "string" 204 }, 205 "metadata": { 206 "allOf": [ 207 { 208 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" 209 } 210 ], 211 "default": {}, 212 "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" 213 } 214 }, 215 "required": [ 216 "items" 217 ], 218 "type": "object", 219 "x-kubernetes-group-version-kind": [ 220 { 221 "group": "apps", 222 "kind": "DaemonSetList", 223 "version": "v1" 224 } 225 ] 226 }, 227 "io.k8s.api.apps.v1.DaemonSetSpec": { 228 "description": "DaemonSetSpec is the specification of a daemon set.", 229 "properties": { 230 "minReadySeconds": { 231 "description": "The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).", 232 "format": "int32", 233 "type": "integer" 234 }, 235 "revisionHistoryLimit": { 236 "description": "The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.", 237 "format": "int32", 238 "type": "integer" 239 }, 240 "selector": { 241 "allOf": [ 242 { 243 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" 244 } 245 ], 246 "description": "A label query over pods that are managed by the daemon set. Must match in order to be controlled. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" 247 }, 248 "template": { 249 "allOf": [ 250 { 251 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateSpec" 252 } 253 ], 254 "default": {}, 255 "description": "An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template" 256 }, 257 "updateStrategy": { 258 "allOf": [ 259 { 260 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetUpdateStrategy" 261 } 262 ], 263 "default": {}, 264 "description": "An update strategy to replace existing DaemonSet pods with new pods." 265 } 266 }, 267 "required": [ 268 "selector", 269 "template" 270 ], 271 "type": "object" 272 }, 273 "io.k8s.api.apps.v1.DaemonSetStatus": { 274 "description": "DaemonSetStatus represents the current status of a daemon set.", 275 "properties": { 276 "collisionCount": { 277 "description": "Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.", 278 "format": "int32", 279 "type": "integer" 280 }, 281 "conditions": { 282 "description": "Represents the latest available observations of a DaemonSet's current state.", 283 "items": { 284 "allOf": [ 285 { 286 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetCondition" 287 } 288 ], 289 "default": {} 290 }, 291 "type": "array", 292 "x-kubernetes-patch-merge-key": "type", 293 "x-kubernetes-patch-strategy": "merge" 294 }, 295 "currentNumberScheduled": { 296 "default": 0, 297 "description": "The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", 298 "format": "int32", 299 "type": "integer" 300 }, 301 "desiredNumberScheduled": { 302 "default": 0, 303 "description": "The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", 304 "format": "int32", 305 "type": "integer" 306 }, 307 "numberAvailable": { 308 "description": "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)", 309 "format": "int32", 310 "type": "integer" 311 }, 312 "numberMisscheduled": { 313 "default": 0, 314 "description": "The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", 315 "format": "int32", 316 "type": "integer" 317 }, 318 "numberReady": { 319 "default": 0, 320 "description": "numberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running with a Ready Condition.", 321 "format": "int32", 322 "type": "integer" 323 }, 324 "numberUnavailable": { 325 "description": "The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)", 326 "format": "int32", 327 "type": "integer" 328 }, 329 "observedGeneration": { 330 "description": "The most recent generation observed by the daemon set controller.", 331 "format": "int64", 332 "type": "integer" 333 }, 334 "updatedNumberScheduled": { 335 "description": "The total number of nodes that are running updated daemon pod", 336 "format": "int32", 337 "type": "integer" 338 } 339 }, 340 "required": [ 341 "currentNumberScheduled", 342 "numberMisscheduled", 343 "desiredNumberScheduled", 344 "numberReady" 345 ], 346 "type": "object" 347 }, 348 "io.k8s.api.apps.v1.DaemonSetUpdateStrategy": { 349 "description": "DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.", 350 "properties": { 351 "rollingUpdate": { 352 "allOf": [ 353 { 354 "$ref": "#/components/schemas/io.k8s.api.apps.v1.RollingUpdateDaemonSet" 355 } 356 ], 357 "description": "Rolling update config params. Present only if type = \"RollingUpdate\"." 358 }, 359 "type": { 360 "description": "Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is RollingUpdate.", 361 "type": "string" 362 } 363 }, 364 "type": "object" 365 }, 366 "io.k8s.api.apps.v1.Deployment": { 367 "description": "Deployment enables declarative updates for Pods and ReplicaSets.", 368 "properties": { 369 "apiVersion": { 370 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", 371 "type": "string" 372 }, 373 "kind": { 374 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 375 "type": "string" 376 }, 377 "metadata": { 378 "allOf": [ 379 { 380 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" 381 } 382 ], 383 "default": {}, 384 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" 385 }, 386 "spec": { 387 "allOf": [ 388 { 389 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentSpec" 390 } 391 ], 392 "default": {}, 393 "description": "Specification of the desired behavior of the Deployment." 394 }, 395 "status": { 396 "allOf": [ 397 { 398 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentStatus" 399 } 400 ], 401 "default": {}, 402 "description": "Most recently observed status of the Deployment." 403 } 404 }, 405 "type": "object", 406 "x-kubernetes-group-version-kind": [ 407 { 408 "group": "apps", 409 "kind": "Deployment", 410 "version": "v1" 411 } 412 ] 413 }, 414 "io.k8s.api.apps.v1.DeploymentCondition": { 415 "description": "DeploymentCondition describes the state of a deployment at a certain point.", 416 "properties": { 417 "lastTransitionTime": { 418 "allOf": [ 419 { 420 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" 421 } 422 ], 423 "default": {}, 424 "description": "Last time the condition transitioned from one status to another." 425 }, 426 "lastUpdateTime": { 427 "allOf": [ 428 { 429 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" 430 } 431 ], 432 "default": {}, 433 "description": "The last time this condition was updated." 434 }, 435 "message": { 436 "description": "A human readable message indicating details about the transition.", 437 "type": "string" 438 }, 439 "reason": { 440 "description": "The reason for the condition's last transition.", 441 "type": "string" 442 }, 443 "status": { 444 "default": "", 445 "description": "Status of the condition, one of True, False, Unknown.", 446 "type": "string" 447 }, 448 "type": { 449 "default": "", 450 "description": "Type of deployment condition.", 451 "type": "string" 452 } 453 }, 454 "required": [ 455 "type", 456 "status" 457 ], 458 "type": "object" 459 }, 460 "io.k8s.api.apps.v1.DeploymentList": { 461 "description": "DeploymentList is a list of Deployments.", 462 "properties": { 463 "apiVersion": { 464 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", 465 "type": "string" 466 }, 467 "items": { 468 "description": "Items is the list of Deployments.", 469 "items": { 470 "allOf": [ 471 { 472 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 473 } 474 ], 475 "default": {} 476 }, 477 "type": "array" 478 }, 479 "kind": { 480 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 481 "type": "string" 482 }, 483 "metadata": { 484 "allOf": [ 485 { 486 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" 487 } 488 ], 489 "default": {}, 490 "description": "Standard list metadata." 491 } 492 }, 493 "required": [ 494 "items" 495 ], 496 "type": "object", 497 "x-kubernetes-group-version-kind": [ 498 { 499 "group": "apps", 500 "kind": "DeploymentList", 501 "version": "v1" 502 } 503 ] 504 }, 505 "io.k8s.api.apps.v1.DeploymentSpec": { 506 "description": "DeploymentSpec is the specification of the desired behavior of the Deployment.", 507 "properties": { 508 "minReadySeconds": { 509 "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", 510 "format": "int32", 511 "type": "integer" 512 }, 513 "paused": { 514 "description": "Indicates that the deployment is paused.", 515 "type": "boolean" 516 }, 517 "progressDeadlineSeconds": { 518 "description": "The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.", 519 "format": "int32", 520 "type": "integer" 521 }, 522 "replicas": { 523 "description": "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.", 524 "format": "int32", 525 "type": "integer" 526 }, 527 "revisionHistoryLimit": { 528 "description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.", 529 "format": "int32", 530 "type": "integer" 531 }, 532 "selector": { 533 "allOf": [ 534 { 535 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" 536 } 537 ], 538 "description": "Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels." 539 }, 540 "strategy": { 541 "allOf": [ 542 { 543 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentStrategy" 544 } 545 ], 546 "default": {}, 547 "description": "The deployment strategy to use to replace existing pods with new ones.", 548 "x-kubernetes-patch-strategy": "retainKeys" 549 }, 550 "template": { 551 "allOf": [ 552 { 553 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateSpec" 554 } 555 ], 556 "default": {}, 557 "description": "Template describes the pods that will be created." 558 } 559 }, 560 "required": [ 561 "selector", 562 "template" 563 ], 564 "type": "object" 565 }, 566 "io.k8s.api.apps.v1.DeploymentStatus": { 567 "description": "DeploymentStatus is the most recently observed status of the Deployment.", 568 "properties": { 569 "availableReplicas": { 570 "description": "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.", 571 "format": "int32", 572 "type": "integer" 573 }, 574 "collisionCount": { 575 "description": "Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.", 576 "format": "int32", 577 "type": "integer" 578 }, 579 "conditions": { 580 "description": "Represents the latest available observations of a deployment's current state.", 581 "items": { 582 "allOf": [ 583 { 584 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentCondition" 585 } 586 ], 587 "default": {} 588 }, 589 "type": "array", 590 "x-kubernetes-patch-merge-key": "type", 591 "x-kubernetes-patch-strategy": "merge" 592 }, 593 "observedGeneration": { 594 "description": "The generation observed by the deployment controller.", 595 "format": "int64", 596 "type": "integer" 597 }, 598 "readyReplicas": { 599 "description": "readyReplicas is the number of pods targeted by this Deployment with a Ready Condition.", 600 "format": "int32", 601 "type": "integer" 602 }, 603 "replicas": { 604 "description": "Total number of non-terminated pods targeted by this deployment (their labels match the selector).", 605 "format": "int32", 606 "type": "integer" 607 }, 608 "unavailableReplicas": { 609 "description": "Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.", 610 "format": "int32", 611 "type": "integer" 612 }, 613 "updatedReplicas": { 614 "description": "Total number of non-terminated pods targeted by this deployment that have the desired template spec.", 615 "format": "int32", 616 "type": "integer" 617 } 618 }, 619 "type": "object" 620 }, 621 "io.k8s.api.apps.v1.DeploymentStrategy": { 622 "description": "DeploymentStrategy describes how to replace existing pods with new ones.", 623 "properties": { 624 "rollingUpdate": { 625 "allOf": [ 626 { 627 "$ref": "#/components/schemas/io.k8s.api.apps.v1.RollingUpdateDeployment" 628 } 629 ], 630 "description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate." 631 }, 632 "type": { 633 "description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.", 634 "type": "string" 635 } 636 }, 637 "type": "object" 638 }, 639 "io.k8s.api.apps.v1.ReplicaSet": { 640 "description": "ReplicaSet ensures that a specified number of pod replicas are running at any given time.", 641 "properties": { 642 "apiVersion": { 643 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", 644 "type": "string" 645 }, 646 "kind": { 647 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 648 "type": "string" 649 }, 650 "metadata": { 651 "allOf": [ 652 { 653 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" 654 } 655 ], 656 "default": {}, 657 "description": "If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" 658 }, 659 "spec": { 660 "allOf": [ 661 { 662 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetSpec" 663 } 664 ], 665 "default": {}, 666 "description": "Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" 667 }, 668 "status": { 669 "allOf": [ 670 { 671 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetStatus" 672 } 673 ], 674 "default": {}, 675 "description": "Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" 676 } 677 }, 678 "type": "object", 679 "x-kubernetes-group-version-kind": [ 680 { 681 "group": "apps", 682 "kind": "ReplicaSet", 683 "version": "v1" 684 } 685 ] 686 }, 687 "io.k8s.api.apps.v1.ReplicaSetCondition": { 688 "description": "ReplicaSetCondition describes the state of a replica set at a certain point.", 689 "properties": { 690 "lastTransitionTime": { 691 "allOf": [ 692 { 693 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" 694 } 695 ], 696 "default": {}, 697 "description": "The last time the condition transitioned from one status to another." 698 }, 699 "message": { 700 "description": "A human readable message indicating details about the transition.", 701 "type": "string" 702 }, 703 "reason": { 704 "description": "The reason for the condition's last transition.", 705 "type": "string" 706 }, 707 "status": { 708 "default": "", 709 "description": "Status of the condition, one of True, False, Unknown.", 710 "type": "string" 711 }, 712 "type": { 713 "default": "", 714 "description": "Type of replica set condition.", 715 "type": "string" 716 } 717 }, 718 "required": [ 719 "type", 720 "status" 721 ], 722 "type": "object" 723 }, 724 "io.k8s.api.apps.v1.ReplicaSetList": { 725 "description": "ReplicaSetList is a collection of ReplicaSets.", 726 "properties": { 727 "apiVersion": { 728 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", 729 "type": "string" 730 }, 731 "items": { 732 "description": "List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller", 733 "items": { 734 "allOf": [ 735 { 736 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 737 } 738 ], 739 "default": {} 740 }, 741 "type": "array" 742 }, 743 "kind": { 744 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 745 "type": "string" 746 }, 747 "metadata": { 748 "allOf": [ 749 { 750 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" 751 } 752 ], 753 "default": {}, 754 "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" 755 } 756 }, 757 "required": [ 758 "items" 759 ], 760 "type": "object", 761 "x-kubernetes-group-version-kind": [ 762 { 763 "group": "apps", 764 "kind": "ReplicaSetList", 765 "version": "v1" 766 } 767 ] 768 }, 769 "io.k8s.api.apps.v1.ReplicaSetSpec": { 770 "description": "ReplicaSetSpec is the specification of a ReplicaSet.", 771 "properties": { 772 "minReadySeconds": { 773 "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", 774 "format": "int32", 775 "type": "integer" 776 }, 777 "replicas": { 778 "description": "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller", 779 "format": "int32", 780 "type": "integer" 781 }, 782 "selector": { 783 "allOf": [ 784 { 785 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" 786 } 787 ], 788 "description": "Selector is a label query over pods that should match the replica count. Label keys and values that must match in order to be controlled by this replica set. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" 789 }, 790 "template": { 791 "allOf": [ 792 { 793 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateSpec" 794 } 795 ], 796 "default": {}, 797 "description": "Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template" 798 } 799 }, 800 "required": [ 801 "selector" 802 ], 803 "type": "object" 804 }, 805 "io.k8s.api.apps.v1.ReplicaSetStatus": { 806 "description": "ReplicaSetStatus represents the current status of a ReplicaSet.", 807 "properties": { 808 "availableReplicas": { 809 "description": "The number of available replicas (ready for at least minReadySeconds) for this replica set.", 810 "format": "int32", 811 "type": "integer" 812 }, 813 "conditions": { 814 "description": "Represents the latest available observations of a replica set's current state.", 815 "items": { 816 "allOf": [ 817 { 818 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetCondition" 819 } 820 ], 821 "default": {} 822 }, 823 "type": "array", 824 "x-kubernetes-patch-merge-key": "type", 825 "x-kubernetes-patch-strategy": "merge" 826 }, 827 "fullyLabeledReplicas": { 828 "description": "The number of pods that have labels matching the labels of the pod template of the replicaset.", 829 "format": "int32", 830 "type": "integer" 831 }, 832 "observedGeneration": { 833 "description": "ObservedGeneration reflects the generation of the most recently observed ReplicaSet.", 834 "format": "int64", 835 "type": "integer" 836 }, 837 "readyReplicas": { 838 "description": "readyReplicas is the number of pods targeted by this ReplicaSet with a Ready Condition.", 839 "format": "int32", 840 "type": "integer" 841 }, 842 "replicas": { 843 "default": 0, 844 "description": "Replicas is the most recently observed number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller", 845 "format": "int32", 846 "type": "integer" 847 } 848 }, 849 "required": [ 850 "replicas" 851 ], 852 "type": "object" 853 }, 854 "io.k8s.api.apps.v1.RollingUpdateDaemonSet": { 855 "description": "Spec to control the desired behavior of daemon set rolling update.", 856 "properties": { 857 "maxSurge": { 858 "allOf": [ 859 { 860 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString" 861 } 862 ], 863 "description": "The maximum number of nodes with an existing available DaemonSet pod that can have an updated DaemonSet pod during during an update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up to a minimum of 1. Default value is 0. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their a new pod created before the old pod is marked as deleted. The update starts by launching new pods on 30% of nodes. Once an updated pod is available (Ready for at least minReadySeconds) the old DaemonSet pod on that node is marked deleted. If the old pod becomes unavailable for any reason (Ready transitions to false, is evicted, or is drained) an updated pod is immediatedly created on that node without considering surge limits. Allowing surge implies the possibility that the resources consumed by the daemonset on any given node can double if the readiness check fails, and so resource intensive daemonsets should take into account that they may cause evictions during disruption." 864 }, 865 "maxUnavailable": { 866 "allOf": [ 867 { 868 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString" 869 } 870 ], 871 "description": "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0 if MaxSurge is 0 Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update." 872 } 873 }, 874 "type": "object" 875 }, 876 "io.k8s.api.apps.v1.RollingUpdateDeployment": { 877 "description": "Spec to control the desired behavior of rolling update.", 878 "properties": { 879 "maxSurge": { 880 "allOf": [ 881 { 882 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString" 883 } 884 ], 885 "description": "The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods." 886 }, 887 "maxUnavailable": { 888 "allOf": [ 889 { 890 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString" 891 } 892 ], 893 "description": "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods." 894 } 895 }, 896 "type": "object" 897 }, 898 "io.k8s.api.apps.v1.RollingUpdateStatefulSetStrategy": { 899 "description": "RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.", 900 "properties": { 901 "maxUnavailable": { 902 "allOf": [ 903 { 904 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString" 905 } 906 ], 907 "description": "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding up. This can not be 0. Defaults to 1. This field is alpha-level and is only honored by servers that enable the MaxUnavailableStatefulSet feature. The field applies to all pods in the range 0 to Replicas-1. That means if there is any unavailable pod in the range 0 to Replicas-1, it will be counted towards MaxUnavailable." 908 }, 909 "partition": { 910 "description": "Partition indicates the ordinal at which the StatefulSet should be partitioned for updates. During a rolling update, all pods from ordinal Replicas-1 to Partition are updated. All pods from ordinal Partition-1 to 0 remain untouched. This is helpful in being able to do a canary based deployment. The default value is 0.", 911 "format": "int32", 912 "type": "integer" 913 } 914 }, 915 "type": "object" 916 }, 917 "io.k8s.api.apps.v1.StatefulSet": { 918 "description": "StatefulSet represents a set of pods with consistent identities. Identities are defined as:\n - Network: A single stable DNS and hostname.\n - Storage: As many VolumeClaims as requested.\n\nThe StatefulSet guarantees that a given network identity will always map to the same storage identity.", 919 "properties": { 920 "apiVersion": { 921 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", 922 "type": "string" 923 }, 924 "kind": { 925 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 926 "type": "string" 927 }, 928 "metadata": { 929 "allOf": [ 930 { 931 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" 932 } 933 ], 934 "default": {}, 935 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" 936 }, 937 "spec": { 938 "allOf": [ 939 { 940 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetSpec" 941 } 942 ], 943 "default": {}, 944 "description": "Spec defines the desired identities of pods in this set." 945 }, 946 "status": { 947 "allOf": [ 948 { 949 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetStatus" 950 } 951 ], 952 "default": {}, 953 "description": "Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time." 954 } 955 }, 956 "type": "object", 957 "x-kubernetes-group-version-kind": [ 958 { 959 "group": "apps", 960 "kind": "StatefulSet", 961 "version": "v1" 962 } 963 ] 964 }, 965 "io.k8s.api.apps.v1.StatefulSetCondition": { 966 "description": "StatefulSetCondition describes the state of a statefulset at a certain point.", 967 "properties": { 968 "lastTransitionTime": { 969 "allOf": [ 970 { 971 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" 972 } 973 ], 974 "default": {}, 975 "description": "Last time the condition transitioned from one status to another." 976 }, 977 "message": { 978 "description": "A human readable message indicating details about the transition.", 979 "type": "string" 980 }, 981 "reason": { 982 "description": "The reason for the condition's last transition.", 983 "type": "string" 984 }, 985 "status": { 986 "default": "", 987 "description": "Status of the condition, one of True, False, Unknown.", 988 "type": "string" 989 }, 990 "type": { 991 "default": "", 992 "description": "Type of statefulset condition.", 993 "type": "string" 994 } 995 }, 996 "required": [ 997 "type", 998 "status" 999 ], 1000 "type": "object" 1001 }, 1002 "io.k8s.api.apps.v1.StatefulSetList": { 1003 "description": "StatefulSetList is a collection of StatefulSets.", 1004 "properties": { 1005 "apiVersion": { 1006 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", 1007 "type": "string" 1008 }, 1009 "items": { 1010 "description": "Items is the list of stateful sets.", 1011 "items": { 1012 "allOf": [ 1013 { 1014 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 1015 } 1016 ], 1017 "default": {} 1018 }, 1019 "type": "array" 1020 }, 1021 "kind": { 1022 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 1023 "type": "string" 1024 }, 1025 "metadata": { 1026 "allOf": [ 1027 { 1028 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" 1029 } 1030 ], 1031 "default": {}, 1032 "description": "Standard list's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" 1033 } 1034 }, 1035 "required": [ 1036 "items" 1037 ], 1038 "type": "object", 1039 "x-kubernetes-group-version-kind": [ 1040 { 1041 "group": "apps", 1042 "kind": "StatefulSetList", 1043 "version": "v1" 1044 } 1045 ] 1046 }, 1047 "io.k8s.api.apps.v1.StatefulSetOrdinals": { 1048 "description": "StatefulSetOrdinals describes the policy used for replica ordinal assignment in this StatefulSet.", 1049 "properties": { 1050 "start": { 1051 "default": 0, 1052 "description": "start is the number representing the first replica's index. It may be used to number replicas from an alternate index (eg: 1-indexed) over the default 0-indexed names, or to orchestrate progressive movement of replicas from one StatefulSet to another. If set, replica indices will be in the range:\n [.spec.ordinals.start, .spec.ordinals.start + .spec.replicas).\nIf unset, defaults to 0. Replica indices will be in the range:\n [0, .spec.replicas).", 1053 "format": "int32", 1054 "type": "integer" 1055 } 1056 }, 1057 "type": "object" 1058 }, 1059 "io.k8s.api.apps.v1.StatefulSetPersistentVolumeClaimRetentionPolicy": { 1060 "description": "StatefulSetPersistentVolumeClaimRetentionPolicy describes the policy used for PVCs created from the StatefulSet VolumeClaimTemplates.", 1061 "properties": { 1062 "whenDeleted": { 1063 "description": "WhenDeleted specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is deleted. The default policy of `Retain` causes PVCs to not be affected by StatefulSet deletion. The `Delete` policy causes those PVCs to be deleted.", 1064 "type": "string" 1065 }, 1066 "whenScaled": { 1067 "description": "WhenScaled specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is scaled down. The default policy of `Retain` causes PVCs to not be affected by a scaledown. The `Delete` policy causes the associated PVCs for any excess pods above the replica count to be deleted.", 1068 "type": "string" 1069 } 1070 }, 1071 "type": "object" 1072 }, 1073 "io.k8s.api.apps.v1.StatefulSetSpec": { 1074 "description": "A StatefulSetSpec is the specification of a StatefulSet.", 1075 "properties": { 1076 "minReadySeconds": { 1077 "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", 1078 "format": "int32", 1079 "type": "integer" 1080 }, 1081 "ordinals": { 1082 "allOf": [ 1083 { 1084 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetOrdinals" 1085 } 1086 ], 1087 "description": "ordinals controls the numbering of replica indices in a StatefulSet. The default ordinals behavior assigns a \"0\" index to the first replica and increments the index by one for each additional replica requested. Using the ordinals field requires the StatefulSetStartOrdinal feature gate to be enabled, which is alpha." 1088 }, 1089 "persistentVolumeClaimRetentionPolicy": { 1090 "allOf": [ 1091 { 1092 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetPersistentVolumeClaimRetentionPolicy" 1093 } 1094 ], 1095 "description": "persistentVolumeClaimRetentionPolicy describes the lifecycle of persistent volume claims created from volumeClaimTemplates. By default, all persistent volume claims are created as needed and retained until manually deleted. This policy allows the lifecycle to be altered, for example by deleting persistent volume claims when their stateful set is deleted, or when their pod is scaled down. This requires the StatefulSetAutoDeletePVC feature gate to be enabled, which is alpha. +optional" 1096 }, 1097 "podManagementPolicy": { 1098 "description": "podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once.", 1099 "type": "string" 1100 }, 1101 "replicas": { 1102 "description": "replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.", 1103 "format": "int32", 1104 "type": "integer" 1105 }, 1106 "revisionHistoryLimit": { 1107 "description": "revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10.", 1108 "format": "int32", 1109 "type": "integer" 1110 }, 1111 "selector": { 1112 "allOf": [ 1113 { 1114 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" 1115 } 1116 ], 1117 "description": "selector is a label query over pods that should match the replica count. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors" 1118 }, 1119 "serviceName": { 1120 "default": "", 1121 "description": "serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where \"pod-specific-string\" is managed by the StatefulSet controller.", 1122 "type": "string" 1123 }, 1124 "template": { 1125 "allOf": [ 1126 { 1127 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodTemplateSpec" 1128 } 1129 ], 1130 "default": {}, 1131 "description": "template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet. Each pod will be named with the format <statefulsetname>-<podindex>. For example, a pod in a StatefulSet named \"web\" with index number \"3\" would be named \"web-3\"." 1132 }, 1133 "updateStrategy": { 1134 "allOf": [ 1135 { 1136 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetUpdateStrategy" 1137 } 1138 ], 1139 "default": {}, 1140 "description": "updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template." 1141 }, 1142 "volumeClaimTemplates": { 1143 "description": "volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.", 1144 "items": { 1145 "allOf": [ 1146 { 1147 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaim" 1148 } 1149 ], 1150 "default": {} 1151 }, 1152 "type": "array" 1153 } 1154 }, 1155 "required": [ 1156 "selector", 1157 "template", 1158 "serviceName" 1159 ], 1160 "type": "object" 1161 }, 1162 "io.k8s.api.apps.v1.StatefulSetStatus": { 1163 "description": "StatefulSetStatus represents the current state of a StatefulSet.", 1164 "properties": { 1165 "availableReplicas": { 1166 "default": 0, 1167 "description": "Total number of available pods (ready for at least minReadySeconds) targeted by this statefulset.", 1168 "format": "int32", 1169 "type": "integer" 1170 }, 1171 "collisionCount": { 1172 "description": "collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.", 1173 "format": "int32", 1174 "type": "integer" 1175 }, 1176 "conditions": { 1177 "description": "Represents the latest available observations of a statefulset's current state.", 1178 "items": { 1179 "allOf": [ 1180 { 1181 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetCondition" 1182 } 1183 ], 1184 "default": {} 1185 }, 1186 "type": "array", 1187 "x-kubernetes-patch-merge-key": "type", 1188 "x-kubernetes-patch-strategy": "merge" 1189 }, 1190 "currentReplicas": { 1191 "description": "currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.", 1192 "format": "int32", 1193 "type": "integer" 1194 }, 1195 "currentRevision": { 1196 "description": "currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).", 1197 "type": "string" 1198 }, 1199 "observedGeneration": { 1200 "description": "observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server.", 1201 "format": "int64", 1202 "type": "integer" 1203 }, 1204 "readyReplicas": { 1205 "description": "readyReplicas is the number of pods created for this StatefulSet with a Ready Condition.", 1206 "format": "int32", 1207 "type": "integer" 1208 }, 1209 "replicas": { 1210 "default": 0, 1211 "description": "replicas is the number of Pods created by the StatefulSet controller.", 1212 "format": "int32", 1213 "type": "integer" 1214 }, 1215 "updateRevision": { 1216 "description": "updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)", 1217 "type": "string" 1218 }, 1219 "updatedReplicas": { 1220 "description": "updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.", 1221 "format": "int32", 1222 "type": "integer" 1223 } 1224 }, 1225 "required": [ 1226 "replicas" 1227 ], 1228 "type": "object" 1229 }, 1230 "io.k8s.api.apps.v1.StatefulSetUpdateStrategy": { 1231 "description": "StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.", 1232 "properties": { 1233 "rollingUpdate": { 1234 "allOf": [ 1235 { 1236 "$ref": "#/components/schemas/io.k8s.api.apps.v1.RollingUpdateStatefulSetStrategy" 1237 } 1238 ], 1239 "description": "RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType." 1240 }, 1241 "type": { 1242 "description": "Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.", 1243 "type": "string" 1244 } 1245 }, 1246 "type": "object" 1247 }, 1248 "io.k8s.api.autoscaling.v1.Scale": { 1249 "description": "Scale represents a scaling request for a resource.", 1250 "properties": { 1251 "apiVersion": { 1252 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", 1253 "type": "string" 1254 }, 1255 "kind": { 1256 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 1257 "type": "string" 1258 }, 1259 "metadata": { 1260 "allOf": [ 1261 { 1262 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" 1263 } 1264 ], 1265 "default": {}, 1266 "description": "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata." 1267 }, 1268 "spec": { 1269 "allOf": [ 1270 { 1271 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.ScaleSpec" 1272 } 1273 ], 1274 "default": {}, 1275 "description": "defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status." 1276 }, 1277 "status": { 1278 "allOf": [ 1279 { 1280 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.ScaleStatus" 1281 } 1282 ], 1283 "default": {}, 1284 "description": "current status of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status. Read-only." 1285 } 1286 }, 1287 "type": "object", 1288 "x-kubernetes-group-version-kind": [ 1289 { 1290 "group": "autoscaling", 1291 "kind": "Scale", 1292 "version": "v1" 1293 } 1294 ] 1295 }, 1296 "io.k8s.api.autoscaling.v1.ScaleSpec": { 1297 "description": "ScaleSpec describes the attributes of a scale subresource.", 1298 "properties": { 1299 "replicas": { 1300 "description": "desired number of instances for the scaled object.", 1301 "format": "int32", 1302 "type": "integer" 1303 } 1304 }, 1305 "type": "object" 1306 }, 1307 "io.k8s.api.autoscaling.v1.ScaleStatus": { 1308 "description": "ScaleStatus represents the current status of a scale subresource.", 1309 "properties": { 1310 "replicas": { 1311 "default": 0, 1312 "description": "actual number of observed instances of the scaled object.", 1313 "format": "int32", 1314 "type": "integer" 1315 }, 1316 "selector": { 1317 "description": "label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: http://kubernetes.io/docs/user-guide/labels#label-selectors", 1318 "type": "string" 1319 } 1320 }, 1321 "required": [ 1322 "replicas" 1323 ], 1324 "type": "object" 1325 }, 1326 "io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource": { 1327 "description": "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.", 1328 "properties": { 1329 "fsType": { 1330 "description": "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", 1331 "type": "string" 1332 }, 1333 "partition": { 1334 "description": "partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).", 1335 "format": "int32", 1336 "type": "integer" 1337 }, 1338 "readOnly": { 1339 "description": "readOnly value true will force the readOnly setting in VolumeMounts. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", 1340 "type": "boolean" 1341 }, 1342 "volumeID": { 1343 "default": "", 1344 "description": "volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", 1345 "type": "string" 1346 } 1347 }, 1348 "required": [ 1349 "volumeID" 1350 ], 1351 "type": "object" 1352 }, 1353 "io.k8s.api.core.v1.Affinity": { 1354 "description": "Affinity is a group of affinity scheduling rules.", 1355 "properties": { 1356 "nodeAffinity": { 1357 "allOf": [ 1358 { 1359 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeAffinity" 1360 } 1361 ], 1362 "description": "Describes node affinity scheduling rules for the pod." 1363 }, 1364 "podAffinity": { 1365 "allOf": [ 1366 { 1367 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodAffinity" 1368 } 1369 ], 1370 "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))." 1371 }, 1372 "podAntiAffinity": { 1373 "allOf": [ 1374 { 1375 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodAntiAffinity" 1376 } 1377 ], 1378 "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))." 1379 } 1380 }, 1381 "type": "object" 1382 }, 1383 "io.k8s.api.core.v1.AzureDiskVolumeSource": { 1384 "description": "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", 1385 "properties": { 1386 "cachingMode": { 1387 "description": "cachingMode is the Host Caching mode: None, Read Only, Read Write.", 1388 "type": "string" 1389 }, 1390 "diskName": { 1391 "default": "", 1392 "description": "diskName is the Name of the data disk in the blob storage", 1393 "type": "string" 1394 }, 1395 "diskURI": { 1396 "default": "", 1397 "description": "diskURI is the URI of data disk in the blob storage", 1398 "type": "string" 1399 }, 1400 "fsType": { 1401 "description": "fsType is Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", 1402 "type": "string" 1403 }, 1404 "kind": { 1405 "description": "kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared", 1406 "type": "string" 1407 }, 1408 "readOnly": { 1409 "description": "readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", 1410 "type": "boolean" 1411 } 1412 }, 1413 "required": [ 1414 "diskName", 1415 "diskURI" 1416 ], 1417 "type": "object" 1418 }, 1419 "io.k8s.api.core.v1.AzureFileVolumeSource": { 1420 "description": "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", 1421 "properties": { 1422 "readOnly": { 1423 "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", 1424 "type": "boolean" 1425 }, 1426 "secretName": { 1427 "default": "", 1428 "description": "secretName is the name of secret that contains Azure Storage Account Name and Key", 1429 "type": "string" 1430 }, 1431 "shareName": { 1432 "default": "", 1433 "description": "shareName is the azure share Name", 1434 "type": "string" 1435 } 1436 }, 1437 "required": [ 1438 "secretName", 1439 "shareName" 1440 ], 1441 "type": "object" 1442 }, 1443 "io.k8s.api.core.v1.CSIVolumeSource": { 1444 "description": "Represents a source location of a volume to mount, managed by an external CSI driver", 1445 "properties": { 1446 "driver": { 1447 "default": "", 1448 "description": "driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.", 1449 "type": "string" 1450 }, 1451 "fsType": { 1452 "description": "fsType to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.", 1453 "type": "string" 1454 }, 1455 "nodePublishSecretRef": { 1456 "allOf": [ 1457 { 1458 "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference" 1459 } 1460 ], 1461 "description": "nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secret references are passed." 1462 }, 1463 "readOnly": { 1464 "description": "readOnly specifies a read-only configuration for the volume. Defaults to false (read/write).", 1465 "type": "boolean" 1466 }, 1467 "volumeAttributes": { 1468 "additionalProperties": { 1469 "default": "", 1470 "type": "string" 1471 }, 1472 "description": "volumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.", 1473 "type": "object" 1474 } 1475 }, 1476 "required": [ 1477 "driver" 1478 ], 1479 "type": "object" 1480 }, 1481 "io.k8s.api.core.v1.Capabilities": { 1482 "description": "Adds and removes POSIX capabilities from running containers.", 1483 "properties": { 1484 "add": { 1485 "description": "Added capabilities", 1486 "items": { 1487 "default": "", 1488 "type": "string" 1489 }, 1490 "type": "array" 1491 }, 1492 "drop": { 1493 "description": "Removed capabilities", 1494 "items": { 1495 "default": "", 1496 "type": "string" 1497 }, 1498 "type": "array" 1499 } 1500 }, 1501 "type": "object" 1502 }, 1503 "io.k8s.api.core.v1.CephFSVolumeSource": { 1504 "description": "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.", 1505 "properties": { 1506 "monitors": { 1507 "description": "monitors is Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", 1508 "items": { 1509 "default": "", 1510 "type": "string" 1511 }, 1512 "type": "array" 1513 }, 1514 "path": { 1515 "description": "path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /", 1516 "type": "string" 1517 }, 1518 "readOnly": { 1519 "description": "readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", 1520 "type": "boolean" 1521 }, 1522 "secretFile": { 1523 "description": "secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", 1524 "type": "string" 1525 }, 1526 "secretRef": { 1527 "allOf": [ 1528 { 1529 "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference" 1530 } 1531 ], 1532 "description": "secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it" 1533 }, 1534 "user": { 1535 "description": "user is optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it", 1536 "type": "string" 1537 } 1538 }, 1539 "required": [ 1540 "monitors" 1541 ], 1542 "type": "object" 1543 }, 1544 "io.k8s.api.core.v1.CinderVolumeSource": { 1545 "description": "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.", 1546 "properties": { 1547 "fsType": { 1548 "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", 1549 "type": "string" 1550 }, 1551 "readOnly": { 1552 "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", 1553 "type": "boolean" 1554 }, 1555 "secretRef": { 1556 "allOf": [ 1557 { 1558 "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference" 1559 } 1560 ], 1561 "description": "secretRef is optional: points to a secret object containing parameters used to connect to OpenStack." 1562 }, 1563 "volumeID": { 1564 "default": "", 1565 "description": "volumeID used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md", 1566 "type": "string" 1567 } 1568 }, 1569 "required": [ 1570 "volumeID" 1571 ], 1572 "type": "object" 1573 }, 1574 "io.k8s.api.core.v1.ClaimSource": { 1575 "description": "ClaimSource describes a reference to a ResourceClaim.\n\nExactly one of these fields should be set. Consumers of this type must treat an empty object as if it has an unknown value.", 1576 "properties": { 1577 "resourceClaimName": { 1578 "description": "ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod.", 1579 "type": "string" 1580 }, 1581 "resourceClaimTemplateName": { 1582 "description": "ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this pod.\n\nThe template will be used to create a new ResourceClaim, which will be bound to this pod. When this pod is deleted, the ResourceClaim will also be deleted. The name of the ResourceClaim will be <pod name>-<resource name>, where <resource name> is the PodResourceClaim.Name. Pod validation will reject the pod if the concatenated name is not valid for a ResourceClaim (e.g. too long).\n\nAn existing ResourceClaim with that name that is not owned by the pod will not be used for the pod to avoid using an unrelated resource by mistake. Scheduling and pod startup are then blocked until the unrelated ResourceClaim is removed.\n\nThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim.", 1583 "type": "string" 1584 } 1585 }, 1586 "type": "object" 1587 }, 1588 "io.k8s.api.core.v1.ConfigMapEnvSource": { 1589 "description": "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.", 1590 "properties": { 1591 "name": { 1592 "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", 1593 "type": "string" 1594 }, 1595 "optional": { 1596 "description": "Specify whether the ConfigMap must be defined", 1597 "type": "boolean" 1598 } 1599 }, 1600 "type": "object" 1601 }, 1602 "io.k8s.api.core.v1.ConfigMapKeySelector": { 1603 "description": "Selects a key from a ConfigMap.", 1604 "properties": { 1605 "key": { 1606 "default": "", 1607 "description": "The key to select.", 1608 "type": "string" 1609 }, 1610 "name": { 1611 "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", 1612 "type": "string" 1613 }, 1614 "optional": { 1615 "description": "Specify whether the ConfigMap or its key must be defined", 1616 "type": "boolean" 1617 } 1618 }, 1619 "required": [ 1620 "key" 1621 ], 1622 "type": "object", 1623 "x-kubernetes-map-type": "atomic" 1624 }, 1625 "io.k8s.api.core.v1.ConfigMapProjection": { 1626 "description": "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.", 1627 "properties": { 1628 "items": { 1629 "description": "items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", 1630 "items": { 1631 "allOf": [ 1632 { 1633 "$ref": "#/components/schemas/io.k8s.api.core.v1.KeyToPath" 1634 } 1635 ], 1636 "default": {} 1637 }, 1638 "type": "array" 1639 }, 1640 "name": { 1641 "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", 1642 "type": "string" 1643 }, 1644 "optional": { 1645 "description": "optional specify whether the ConfigMap or its keys must be defined", 1646 "type": "boolean" 1647 } 1648 }, 1649 "type": "object" 1650 }, 1651 "io.k8s.api.core.v1.ConfigMapVolumeSource": { 1652 "description": "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.", 1653 "properties": { 1654 "defaultMode": { 1655 "description": "defaultMode is optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", 1656 "format": "int32", 1657 "type": "integer" 1658 }, 1659 "items": { 1660 "description": "items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", 1661 "items": { 1662 "allOf": [ 1663 { 1664 "$ref": "#/components/schemas/io.k8s.api.core.v1.KeyToPath" 1665 } 1666 ], 1667 "default": {} 1668 }, 1669 "type": "array" 1670 }, 1671 "name": { 1672 "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", 1673 "type": "string" 1674 }, 1675 "optional": { 1676 "description": "optional specify whether the ConfigMap or its keys must be defined", 1677 "type": "boolean" 1678 } 1679 }, 1680 "type": "object" 1681 }, 1682 "io.k8s.api.core.v1.Container": { 1683 "description": "A single application container that you want to run within a pod.", 1684 "properties": { 1685 "args": { 1686 "description": "Arguments to the entrypoint. The container image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", 1687 "items": { 1688 "default": "", 1689 "type": "string" 1690 }, 1691 "type": "array" 1692 }, 1693 "command": { 1694 "description": "Entrypoint array. Not executed within a shell. The container image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", 1695 "items": { 1696 "default": "", 1697 "type": "string" 1698 }, 1699 "type": "array" 1700 }, 1701 "env": { 1702 "description": "List of environment variables to set in the container. Cannot be updated.", 1703 "items": { 1704 "allOf": [ 1705 { 1706 "$ref": "#/components/schemas/io.k8s.api.core.v1.EnvVar" 1707 } 1708 ], 1709 "default": {} 1710 }, 1711 "type": "array", 1712 "x-kubernetes-patch-merge-key": "name", 1713 "x-kubernetes-patch-strategy": "merge" 1714 }, 1715 "envFrom": { 1716 "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", 1717 "items": { 1718 "allOf": [ 1719 { 1720 "$ref": "#/components/schemas/io.k8s.api.core.v1.EnvFromSource" 1721 } 1722 ], 1723 "default": {} 1724 }, 1725 "type": "array" 1726 }, 1727 "image": { 1728 "description": "Container image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.", 1729 "type": "string" 1730 }, 1731 "imagePullPolicy": { 1732 "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images", 1733 "type": "string" 1734 }, 1735 "lifecycle": { 1736 "allOf": [ 1737 { 1738 "$ref": "#/components/schemas/io.k8s.api.core.v1.Lifecycle" 1739 } 1740 ], 1741 "description": "Actions that the management system should take in response to container lifecycle events. Cannot be updated." 1742 }, 1743 "livenessProbe": { 1744 "allOf": [ 1745 { 1746 "$ref": "#/components/schemas/io.k8s.api.core.v1.Probe" 1747 } 1748 ], 1749 "description": "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" 1750 }, 1751 "name": { 1752 "default": "", 1753 "description": "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.", 1754 "type": "string" 1755 }, 1756 "ports": { 1757 "description": "List of ports to expose from the container. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Modifying this array with strategic merge patch may corrupt the data. For more information See https://github.com/kubernetes/kubernetes/issues/108255. Cannot be updated.", 1758 "items": { 1759 "allOf": [ 1760 { 1761 "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerPort" 1762 } 1763 ], 1764 "default": {} 1765 }, 1766 "type": "array", 1767 "x-kubernetes-list-map-keys": [ 1768 "containerPort", 1769 "protocol" 1770 ], 1771 "x-kubernetes-list-type": "map", 1772 "x-kubernetes-patch-merge-key": "containerPort", 1773 "x-kubernetes-patch-strategy": "merge" 1774 }, 1775 "readinessProbe": { 1776 "allOf": [ 1777 { 1778 "$ref": "#/components/schemas/io.k8s.api.core.v1.Probe" 1779 } 1780 ], 1781 "description": "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" 1782 }, 1783 "resources": { 1784 "allOf": [ 1785 { 1786 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceRequirements" 1787 } 1788 ], 1789 "default": {}, 1790 "description": "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/" 1791 }, 1792 "securityContext": { 1793 "allOf": [ 1794 { 1795 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecurityContext" 1796 } 1797 ], 1798 "description": "SecurityContext defines the security options the container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/" 1799 }, 1800 "startupProbe": { 1801 "allOf": [ 1802 { 1803 "$ref": "#/components/schemas/io.k8s.api.core.v1.Probe" 1804 } 1805 ], 1806 "description": "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes" 1807 }, 1808 "stdin": { 1809 "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", 1810 "type": "boolean" 1811 }, 1812 "stdinOnce": { 1813 "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", 1814 "type": "boolean" 1815 }, 1816 "terminationMessagePath": { 1817 "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", 1818 "type": "string" 1819 }, 1820 "terminationMessagePolicy": { 1821 "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", 1822 "type": "string" 1823 }, 1824 "tty": { 1825 "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", 1826 "type": "boolean" 1827 }, 1828 "volumeDevices": { 1829 "description": "volumeDevices is the list of block devices to be used by the container.", 1830 "items": { 1831 "allOf": [ 1832 { 1833 "$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeDevice" 1834 } 1835 ], 1836 "default": {} 1837 }, 1838 "type": "array", 1839 "x-kubernetes-patch-merge-key": "devicePath", 1840 "x-kubernetes-patch-strategy": "merge" 1841 }, 1842 "volumeMounts": { 1843 "description": "Pod volumes to mount into the container's filesystem. Cannot be updated.", 1844 "items": { 1845 "allOf": [ 1846 { 1847 "$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeMount" 1848 } 1849 ], 1850 "default": {} 1851 }, 1852 "type": "array", 1853 "x-kubernetes-patch-merge-key": "mountPath", 1854 "x-kubernetes-patch-strategy": "merge" 1855 }, 1856 "workingDir": { 1857 "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", 1858 "type": "string" 1859 } 1860 }, 1861 "required": [ 1862 "name" 1863 ], 1864 "type": "object" 1865 }, 1866 "io.k8s.api.core.v1.ContainerPort": { 1867 "description": "ContainerPort represents a network port in a single container.", 1868 "properties": { 1869 "containerPort": { 1870 "default": 0, 1871 "description": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.", 1872 "format": "int32", 1873 "type": "integer" 1874 }, 1875 "hostIP": { 1876 "description": "What host IP to bind the external port to.", 1877 "type": "string" 1878 }, 1879 "hostPort": { 1880 "description": "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.", 1881 "format": "int32", 1882 "type": "integer" 1883 }, 1884 "name": { 1885 "description": "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.", 1886 "type": "string" 1887 }, 1888 "protocol": { 1889 "default": "TCP", 1890 "description": "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".", 1891 "type": "string" 1892 } 1893 }, 1894 "required": [ 1895 "containerPort" 1896 ], 1897 "type": "object" 1898 }, 1899 "io.k8s.api.core.v1.DownwardAPIProjection": { 1900 "description": "Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.", 1901 "properties": { 1902 "items": { 1903 "description": "Items is a list of DownwardAPIVolume file", 1904 "items": { 1905 "allOf": [ 1906 { 1907 "$ref": "#/components/schemas/io.k8s.api.core.v1.DownwardAPIVolumeFile" 1908 } 1909 ], 1910 "default": {} 1911 }, 1912 "type": "array" 1913 } 1914 }, 1915 "type": "object" 1916 }, 1917 "io.k8s.api.core.v1.DownwardAPIVolumeFile": { 1918 "description": "DownwardAPIVolumeFile represents information to create the file containing the pod field", 1919 "properties": { 1920 "fieldRef": { 1921 "allOf": [ 1922 { 1923 "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectFieldSelector" 1924 } 1925 ], 1926 "description": "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported." 1927 }, 1928 "mode": { 1929 "description": "Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", 1930 "format": "int32", 1931 "type": "integer" 1932 }, 1933 "path": { 1934 "default": "", 1935 "description": "Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'", 1936 "type": "string" 1937 }, 1938 "resourceFieldRef": { 1939 "allOf": [ 1940 { 1941 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceFieldSelector" 1942 } 1943 ], 1944 "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported." 1945 } 1946 }, 1947 "required": [ 1948 "path" 1949 ], 1950 "type": "object" 1951 }, 1952 "io.k8s.api.core.v1.DownwardAPIVolumeSource": { 1953 "description": "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.", 1954 "properties": { 1955 "defaultMode": { 1956 "description": "Optional: mode bits to use on created files by default. Must be a Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", 1957 "format": "int32", 1958 "type": "integer" 1959 }, 1960 "items": { 1961 "description": "Items is a list of downward API volume file", 1962 "items": { 1963 "allOf": [ 1964 { 1965 "$ref": "#/components/schemas/io.k8s.api.core.v1.DownwardAPIVolumeFile" 1966 } 1967 ], 1968 "default": {} 1969 }, 1970 "type": "array" 1971 } 1972 }, 1973 "type": "object" 1974 }, 1975 "io.k8s.api.core.v1.EmptyDirVolumeSource": { 1976 "description": "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.", 1977 "properties": { 1978 "medium": { 1979 "description": "medium represents what type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir", 1980 "type": "string" 1981 }, 1982 "sizeLimit": { 1983 "allOf": [ 1984 { 1985 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" 1986 } 1987 ], 1988 "description": "sizeLimit is the total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir" 1989 } 1990 }, 1991 "type": "object" 1992 }, 1993 "io.k8s.api.core.v1.EnvFromSource": { 1994 "description": "EnvFromSource represents the source of a set of ConfigMaps", 1995 "properties": { 1996 "configMapRef": { 1997 "allOf": [ 1998 { 1999 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapEnvSource" 2000 } 2001 ], 2002 "description": "The ConfigMap to select from" 2003 }, 2004 "prefix": { 2005 "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.", 2006 "type": "string" 2007 }, 2008 "secretRef": { 2009 "allOf": [ 2010 { 2011 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretEnvSource" 2012 } 2013 ], 2014 "description": "The Secret to select from" 2015 } 2016 }, 2017 "type": "object" 2018 }, 2019 "io.k8s.api.core.v1.EnvVar": { 2020 "description": "EnvVar represents an environment variable present in a Container.", 2021 "properties": { 2022 "name": { 2023 "default": "", 2024 "description": "Name of the environment variable. Must be a C_IDENTIFIER.", 2025 "type": "string" 2026 }, 2027 "value": { 2028 "description": "Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".", 2029 "type": "string" 2030 }, 2031 "valueFrom": { 2032 "allOf": [ 2033 { 2034 "$ref": "#/components/schemas/io.k8s.api.core.v1.EnvVarSource" 2035 } 2036 ], 2037 "description": "Source for the environment variable's value. Cannot be used if value is not empty." 2038 } 2039 }, 2040 "required": [ 2041 "name" 2042 ], 2043 "type": "object" 2044 }, 2045 "io.k8s.api.core.v1.EnvVarSource": { 2046 "description": "EnvVarSource represents a source for the value of an EnvVar.", 2047 "properties": { 2048 "configMapKeyRef": { 2049 "allOf": [ 2050 { 2051 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapKeySelector" 2052 } 2053 ], 2054 "description": "Selects a key of a ConfigMap." 2055 }, 2056 "fieldRef": { 2057 "allOf": [ 2058 { 2059 "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectFieldSelector" 2060 } 2061 ], 2062 "description": "Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['<KEY>']`, `metadata.annotations['<KEY>']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs." 2063 }, 2064 "resourceFieldRef": { 2065 "allOf": [ 2066 { 2067 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceFieldSelector" 2068 } 2069 ], 2070 "description": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported." 2071 }, 2072 "secretKeyRef": { 2073 "allOf": [ 2074 { 2075 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretKeySelector" 2076 } 2077 ], 2078 "description": "Selects a key of a secret in the pod's namespace" 2079 } 2080 }, 2081 "type": "object" 2082 }, 2083 "io.k8s.api.core.v1.EphemeralContainer": { 2084 "description": "An EphemeralContainer is a temporary container that you may add to an existing Pod for user-initiated activities such as debugging. Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a Pod is removed or restarted. The kubelet may evict a Pod if an ephemeral container causes the Pod to exceed its resource allocation.\n\nTo add an ephemeral container, use the ephemeralcontainers subresource of an existing Pod. Ephemeral containers may not be removed or restarted.", 2085 "properties": { 2086 "args": { 2087 "description": "Arguments to the entrypoint. The image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", 2088 "items": { 2089 "default": "", 2090 "type": "string" 2091 }, 2092 "type": "array" 2093 }, 2094 "command": { 2095 "description": "Entrypoint array. Not executed within a shell. The image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. \"$$(VAR_NAME)\" will produce the string literal \"$(VAR_NAME)\". Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", 2096 "items": { 2097 "default": "", 2098 "type": "string" 2099 }, 2100 "type": "array" 2101 }, 2102 "env": { 2103 "description": "List of environment variables to set in the container. Cannot be updated.", 2104 "items": { 2105 "allOf": [ 2106 { 2107 "$ref": "#/components/schemas/io.k8s.api.core.v1.EnvVar" 2108 } 2109 ], 2110 "default": {} 2111 }, 2112 "type": "array", 2113 "x-kubernetes-patch-merge-key": "name", 2114 "x-kubernetes-patch-strategy": "merge" 2115 }, 2116 "envFrom": { 2117 "description": "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", 2118 "items": { 2119 "allOf": [ 2120 { 2121 "$ref": "#/components/schemas/io.k8s.api.core.v1.EnvFromSource" 2122 } 2123 ], 2124 "default": {} 2125 }, 2126 "type": "array" 2127 }, 2128 "image": { 2129 "description": "Container image name. More info: https://kubernetes.io/docs/concepts/containers/images", 2130 "type": "string" 2131 }, 2132 "imagePullPolicy": { 2133 "description": "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images", 2134 "type": "string" 2135 }, 2136 "lifecycle": { 2137 "allOf": [ 2138 { 2139 "$ref": "#/components/schemas/io.k8s.api.core.v1.Lifecycle" 2140 } 2141 ], 2142 "description": "Lifecycle is not allowed for ephemeral containers." 2143 }, 2144 "livenessProbe": { 2145 "allOf": [ 2146 { 2147 "$ref": "#/components/schemas/io.k8s.api.core.v1.Probe" 2148 } 2149 ], 2150 "description": "Probes are not allowed for ephemeral containers." 2151 }, 2152 "name": { 2153 "default": "", 2154 "description": "Name of the ephemeral container specified as a DNS_LABEL. This name must be unique among all containers, init containers and ephemeral containers.", 2155 "type": "string" 2156 }, 2157 "ports": { 2158 "description": "Ports are not allowed for ephemeral containers.", 2159 "items": { 2160 "allOf": [ 2161 { 2162 "$ref": "#/components/schemas/io.k8s.api.core.v1.ContainerPort" 2163 } 2164 ], 2165 "default": {} 2166 }, 2167 "type": "array", 2168 "x-kubernetes-list-map-keys": [ 2169 "containerPort", 2170 "protocol" 2171 ], 2172 "x-kubernetes-list-type": "map", 2173 "x-kubernetes-patch-merge-key": "containerPort", 2174 "x-kubernetes-patch-strategy": "merge" 2175 }, 2176 "readinessProbe": { 2177 "allOf": [ 2178 { 2179 "$ref": "#/components/schemas/io.k8s.api.core.v1.Probe" 2180 } 2181 ], 2182 "description": "Probes are not allowed for ephemeral containers." 2183 }, 2184 "resources": { 2185 "allOf": [ 2186 { 2187 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceRequirements" 2188 } 2189 ], 2190 "default": {}, 2191 "description": "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod." 2192 }, 2193 "securityContext": { 2194 "allOf": [ 2195 { 2196 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecurityContext" 2197 } 2198 ], 2199 "description": "Optional: SecurityContext defines the security options the ephemeral container should be run with. If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext." 2200 }, 2201 "startupProbe": { 2202 "allOf": [ 2203 { 2204 "$ref": "#/components/schemas/io.k8s.api.core.v1.Probe" 2205 } 2206 ], 2207 "description": "Probes are not allowed for ephemeral containers." 2208 }, 2209 "stdin": { 2210 "description": "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", 2211 "type": "boolean" 2212 }, 2213 "stdinOnce": { 2214 "description": "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", 2215 "type": "boolean" 2216 }, 2217 "targetContainerName": { 2218 "description": "If set, the name of the container from PodSpec that this ephemeral container targets. The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. If not set then the ephemeral container uses the namespaces configured in the Pod spec.\n\nThe container runtime must implement support for this feature. If the runtime does not support namespace targeting then the result of setting this field is undefined.", 2219 "type": "string" 2220 }, 2221 "terminationMessagePath": { 2222 "description": "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", 2223 "type": "string" 2224 }, 2225 "terminationMessagePolicy": { 2226 "description": "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", 2227 "type": "string" 2228 }, 2229 "tty": { 2230 "description": "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", 2231 "type": "boolean" 2232 }, 2233 "volumeDevices": { 2234 "description": "volumeDevices is the list of block devices to be used by the container.", 2235 "items": { 2236 "allOf": [ 2237 { 2238 "$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeDevice" 2239 } 2240 ], 2241 "default": {} 2242 }, 2243 "type": "array", 2244 "x-kubernetes-patch-merge-key": "devicePath", 2245 "x-kubernetes-patch-strategy": "merge" 2246 }, 2247 "volumeMounts": { 2248 "description": "Pod volumes to mount into the container's filesystem. Subpath mounts are not allowed for ephemeral containers. Cannot be updated.", 2249 "items": { 2250 "allOf": [ 2251 { 2252 "$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeMount" 2253 } 2254 ], 2255 "default": {} 2256 }, 2257 "type": "array", 2258 "x-kubernetes-patch-merge-key": "mountPath", 2259 "x-kubernetes-patch-strategy": "merge" 2260 }, 2261 "workingDir": { 2262 "description": "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", 2263 "type": "string" 2264 } 2265 }, 2266 "required": [ 2267 "name" 2268 ], 2269 "type": "object" 2270 }, 2271 "io.k8s.api.core.v1.EphemeralVolumeSource": { 2272 "description": "Represents an ephemeral volume that is handled by a normal storage driver.", 2273 "properties": { 2274 "volumeClaimTemplate": { 2275 "allOf": [ 2276 { 2277 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimTemplate" 2278 } 2279 ], 2280 "description": "Will be used to create a stand-alone PVC to provision the volume. The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, i.e. the PVC will be deleted together with the pod. The name of the PVC will be `<pod name>-<volume name>` where `<volume name>` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long).\n\nAn existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the pod is then blocked until the unrelated PVC is removed. If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists. Normally this should not be necessary, but it may be useful when manually reconstructing a broken cluster.\n\nThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been created.\n\nRequired, must not be nil." 2281 } 2282 }, 2283 "type": "object" 2284 }, 2285 "io.k8s.api.core.v1.ExecAction": { 2286 "description": "ExecAction describes a \"run in container\" action.", 2287 "properties": { 2288 "command": { 2289 "description": "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", 2290 "items": { 2291 "default": "", 2292 "type": "string" 2293 }, 2294 "type": "array" 2295 } 2296 }, 2297 "type": "object" 2298 }, 2299 "io.k8s.api.core.v1.FCVolumeSource": { 2300 "description": "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.", 2301 "properties": { 2302 "fsType": { 2303 "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", 2304 "type": "string" 2305 }, 2306 "lun": { 2307 "description": "lun is Optional: FC target lun number", 2308 "format": "int32", 2309 "type": "integer" 2310 }, 2311 "readOnly": { 2312 "description": "readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", 2313 "type": "boolean" 2314 }, 2315 "targetWWNs": { 2316 "description": "targetWWNs is Optional: FC target worldwide names (WWNs)", 2317 "items": { 2318 "default": "", 2319 "type": "string" 2320 }, 2321 "type": "array" 2322 }, 2323 "wwids": { 2324 "description": "wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.", 2325 "items": { 2326 "default": "", 2327 "type": "string" 2328 }, 2329 "type": "array" 2330 } 2331 }, 2332 "type": "object" 2333 }, 2334 "io.k8s.api.core.v1.FlexVolumeSource": { 2335 "description": "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.", 2336 "properties": { 2337 "driver": { 2338 "default": "", 2339 "description": "driver is the name of the driver to use for this volume.", 2340 "type": "string" 2341 }, 2342 "fsType": { 2343 "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", 2344 "type": "string" 2345 }, 2346 "options": { 2347 "additionalProperties": { 2348 "default": "", 2349 "type": "string" 2350 }, 2351 "description": "options is Optional: this field holds extra command options if any.", 2352 "type": "object" 2353 }, 2354 "readOnly": { 2355 "description": "readOnly is Optional: defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", 2356 "type": "boolean" 2357 }, 2358 "secretRef": { 2359 "allOf": [ 2360 { 2361 "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference" 2362 } 2363 ], 2364 "description": "secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts." 2365 } 2366 }, 2367 "required": [ 2368 "driver" 2369 ], 2370 "type": "object" 2371 }, 2372 "io.k8s.api.core.v1.FlockerVolumeSource": { 2373 "description": "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.", 2374 "properties": { 2375 "datasetName": { 2376 "description": "datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated", 2377 "type": "string" 2378 }, 2379 "datasetUUID": { 2380 "description": "datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset", 2381 "type": "string" 2382 } 2383 }, 2384 "type": "object" 2385 }, 2386 "io.k8s.api.core.v1.GCEPersistentDiskVolumeSource": { 2387 "description": "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.", 2388 "properties": { 2389 "fsType": { 2390 "description": "fsType is filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", 2391 "type": "string" 2392 }, 2393 "partition": { 2394 "description": "partition is the partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", 2395 "format": "int32", 2396 "type": "integer" 2397 }, 2398 "pdName": { 2399 "default": "", 2400 "description": "pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", 2401 "type": "string" 2402 }, 2403 "readOnly": { 2404 "description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", 2405 "type": "boolean" 2406 } 2407 }, 2408 "required": [ 2409 "pdName" 2410 ], 2411 "type": "object" 2412 }, 2413 "io.k8s.api.core.v1.GRPCAction": { 2414 "properties": { 2415 "port": { 2416 "default": 0, 2417 "description": "Port number of the gRPC service. Number must be in the range 1 to 65535.", 2418 "format": "int32", 2419 "type": "integer" 2420 }, 2421 "service": { 2422 "default": "", 2423 "description": "Service is the name of the service to place in the gRPC HealthCheckRequest (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md).\n\nIf this is not specified, the default behavior is defined by gRPC.", 2424 "type": "string" 2425 } 2426 }, 2427 "required": [ 2428 "port" 2429 ], 2430 "type": "object" 2431 }, 2432 "io.k8s.api.core.v1.GitRepoVolumeSource": { 2433 "description": "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.\n\nDEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.", 2434 "properties": { 2435 "directory": { 2436 "description": "directory is the target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.", 2437 "type": "string" 2438 }, 2439 "repository": { 2440 "default": "", 2441 "description": "repository is the URL", 2442 "type": "string" 2443 }, 2444 "revision": { 2445 "description": "revision is the commit hash for the specified revision.", 2446 "type": "string" 2447 } 2448 }, 2449 "required": [ 2450 "repository" 2451 ], 2452 "type": "object" 2453 }, 2454 "io.k8s.api.core.v1.GlusterfsVolumeSource": { 2455 "description": "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", 2456 "properties": { 2457 "endpoints": { 2458 "default": "", 2459 "description": "endpoints is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", 2460 "type": "string" 2461 }, 2462 "path": { 2463 "default": "", 2464 "description": "path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", 2465 "type": "string" 2466 }, 2467 "readOnly": { 2468 "description": "readOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod", 2469 "type": "boolean" 2470 } 2471 }, 2472 "required": [ 2473 "endpoints", 2474 "path" 2475 ], 2476 "type": "object" 2477 }, 2478 "io.k8s.api.core.v1.HTTPGetAction": { 2479 "description": "HTTPGetAction describes an action based on HTTP Get requests.", 2480 "properties": { 2481 "host": { 2482 "description": "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.", 2483 "type": "string" 2484 }, 2485 "httpHeaders": { 2486 "description": "Custom headers to set in the request. HTTP allows repeated headers.", 2487 "items": { 2488 "allOf": [ 2489 { 2490 "$ref": "#/components/schemas/io.k8s.api.core.v1.HTTPHeader" 2491 } 2492 ], 2493 "default": {} 2494 }, 2495 "type": "array" 2496 }, 2497 "path": { 2498 "description": "Path to access on the HTTP server.", 2499 "type": "string" 2500 }, 2501 "port": { 2502 "allOf": [ 2503 { 2504 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString" 2505 } 2506 ], 2507 "default": {}, 2508 "description": "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." 2509 }, 2510 "scheme": { 2511 "description": "Scheme to use for connecting to the host. Defaults to HTTP.", 2512 "type": "string" 2513 } 2514 }, 2515 "required": [ 2516 "port" 2517 ], 2518 "type": "object" 2519 }, 2520 "io.k8s.api.core.v1.HTTPHeader": { 2521 "description": "HTTPHeader describes a custom header to be used in HTTP probes", 2522 "properties": { 2523 "name": { 2524 "default": "", 2525 "description": "The header field name", 2526 "type": "string" 2527 }, 2528 "value": { 2529 "default": "", 2530 "description": "The header field value", 2531 "type": "string" 2532 } 2533 }, 2534 "required": [ 2535 "name", 2536 "value" 2537 ], 2538 "type": "object" 2539 }, 2540 "io.k8s.api.core.v1.HostAlias": { 2541 "description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.", 2542 "properties": { 2543 "hostnames": { 2544 "description": "Hostnames for the above IP address.", 2545 "items": { 2546 "default": "", 2547 "type": "string" 2548 }, 2549 "type": "array" 2550 }, 2551 "ip": { 2552 "description": "IP address of the host file entry.", 2553 "type": "string" 2554 } 2555 }, 2556 "type": "object" 2557 }, 2558 "io.k8s.api.core.v1.HostPathVolumeSource": { 2559 "description": "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.", 2560 "properties": { 2561 "path": { 2562 "default": "", 2563 "description": "path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", 2564 "type": "string" 2565 }, 2566 "type": { 2567 "description": "type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", 2568 "type": "string" 2569 } 2570 }, 2571 "required": [ 2572 "path" 2573 ], 2574 "type": "object" 2575 }, 2576 "io.k8s.api.core.v1.ISCSIVolumeSource": { 2577 "description": "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.", 2578 "properties": { 2579 "chapAuthDiscovery": { 2580 "description": "chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication", 2581 "type": "boolean" 2582 }, 2583 "chapAuthSession": { 2584 "description": "chapAuthSession defines whether support iSCSI Session CHAP authentication", 2585 "type": "boolean" 2586 }, 2587 "fsType": { 2588 "description": "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", 2589 "type": "string" 2590 }, 2591 "initiatorName": { 2592 "description": "initiatorName is the custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.", 2593 "type": "string" 2594 }, 2595 "iqn": { 2596 "default": "", 2597 "description": "iqn is the target iSCSI Qualified Name.", 2598 "type": "string" 2599 }, 2600 "iscsiInterface": { 2601 "description": "iscsiInterface is the interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).", 2602 "type": "string" 2603 }, 2604 "lun": { 2605 "default": 0, 2606 "description": "lun represents iSCSI Target Lun number.", 2607 "format": "int32", 2608 "type": "integer" 2609 }, 2610 "portals": { 2611 "description": "portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", 2612 "items": { 2613 "default": "", 2614 "type": "string" 2615 }, 2616 "type": "array" 2617 }, 2618 "readOnly": { 2619 "description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", 2620 "type": "boolean" 2621 }, 2622 "secretRef": { 2623 "allOf": [ 2624 { 2625 "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference" 2626 } 2627 ], 2628 "description": "secretRef is the CHAP Secret for iSCSI target and initiator authentication" 2629 }, 2630 "targetPortal": { 2631 "default": "", 2632 "description": "targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", 2633 "type": "string" 2634 } 2635 }, 2636 "required": [ 2637 "targetPortal", 2638 "iqn", 2639 "lun" 2640 ], 2641 "type": "object" 2642 }, 2643 "io.k8s.api.core.v1.KeyToPath": { 2644 "description": "Maps a string key to a path within a volume.", 2645 "properties": { 2646 "key": { 2647 "default": "", 2648 "description": "key is the key to project.", 2649 "type": "string" 2650 }, 2651 "mode": { 2652 "description": "mode is Optional: mode bits used to set permissions on this file. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", 2653 "format": "int32", 2654 "type": "integer" 2655 }, 2656 "path": { 2657 "default": "", 2658 "description": "path is the relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.", 2659 "type": "string" 2660 } 2661 }, 2662 "required": [ 2663 "key", 2664 "path" 2665 ], 2666 "type": "object" 2667 }, 2668 "io.k8s.api.core.v1.Lifecycle": { 2669 "description": "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.", 2670 "properties": { 2671 "postStart": { 2672 "allOf": [ 2673 { 2674 "$ref": "#/components/schemas/io.k8s.api.core.v1.LifecycleHandler" 2675 } 2676 ], 2677 "description": "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" 2678 }, 2679 "preStop": { 2680 "allOf": [ 2681 { 2682 "$ref": "#/components/schemas/io.k8s.api.core.v1.LifecycleHandler" 2683 } 2684 ], 2685 "description": "PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The Pod's termination grace period countdown begins before the PreStop hook is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod's termination grace period (unless delayed by finalizers). Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks" 2686 } 2687 }, 2688 "type": "object" 2689 }, 2690 "io.k8s.api.core.v1.LifecycleHandler": { 2691 "description": "LifecycleHandler defines a specific action that should be taken in a lifecycle hook. One and only one of the fields, except TCPSocket must be specified.", 2692 "properties": { 2693 "exec": { 2694 "allOf": [ 2695 { 2696 "$ref": "#/components/schemas/io.k8s.api.core.v1.ExecAction" 2697 } 2698 ], 2699 "description": "Exec specifies the action to take." 2700 }, 2701 "httpGet": { 2702 "allOf": [ 2703 { 2704 "$ref": "#/components/schemas/io.k8s.api.core.v1.HTTPGetAction" 2705 } 2706 ], 2707 "description": "HTTPGet specifies the http request to perform." 2708 }, 2709 "tcpSocket": { 2710 "allOf": [ 2711 { 2712 "$ref": "#/components/schemas/io.k8s.api.core.v1.TCPSocketAction" 2713 } 2714 ], 2715 "description": "Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility. There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified." 2716 } 2717 }, 2718 "type": "object" 2719 }, 2720 "io.k8s.api.core.v1.LocalObjectReference": { 2721 "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.", 2722 "properties": { 2723 "name": { 2724 "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", 2725 "type": "string" 2726 } 2727 }, 2728 "type": "object", 2729 "x-kubernetes-map-type": "atomic" 2730 }, 2731 "io.k8s.api.core.v1.NFSVolumeSource": { 2732 "description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.", 2733 "properties": { 2734 "path": { 2735 "default": "", 2736 "description": "path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", 2737 "type": "string" 2738 }, 2739 "readOnly": { 2740 "description": "readOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", 2741 "type": "boolean" 2742 }, 2743 "server": { 2744 "default": "", 2745 "description": "server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", 2746 "type": "string" 2747 } 2748 }, 2749 "required": [ 2750 "server", 2751 "path" 2752 ], 2753 "type": "object" 2754 }, 2755 "io.k8s.api.core.v1.NodeAffinity": { 2756 "description": "Node affinity is a group of node affinity scheduling rules.", 2757 "properties": { 2758 "preferredDuringSchedulingIgnoredDuringExecution": { 2759 "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.", 2760 "items": { 2761 "allOf": [ 2762 { 2763 "$ref": "#/components/schemas/io.k8s.api.core.v1.PreferredSchedulingTerm" 2764 } 2765 ], 2766 "default": {} 2767 }, 2768 "type": "array" 2769 }, 2770 "requiredDuringSchedulingIgnoredDuringExecution": { 2771 "allOf": [ 2772 { 2773 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelector" 2774 } 2775 ], 2776 "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node." 2777 } 2778 }, 2779 "type": "object" 2780 }, 2781 "io.k8s.api.core.v1.NodeSelector": { 2782 "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", 2783 "properties": { 2784 "nodeSelectorTerms": { 2785 "description": "Required. A list of node selector terms. The terms are ORed.", 2786 "items": { 2787 "allOf": [ 2788 { 2789 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelectorTerm" 2790 } 2791 ], 2792 "default": {} 2793 }, 2794 "type": "array" 2795 } 2796 }, 2797 "required": [ 2798 "nodeSelectorTerms" 2799 ], 2800 "type": "object", 2801 "x-kubernetes-map-type": "atomic" 2802 }, 2803 "io.k8s.api.core.v1.NodeSelectorRequirement": { 2804 "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", 2805 "properties": { 2806 "key": { 2807 "default": "", 2808 "description": "The label key that the selector applies to.", 2809 "type": "string" 2810 }, 2811 "operator": { 2812 "default": "", 2813 "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.", 2814 "type": "string" 2815 }, 2816 "values": { 2817 "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.", 2818 "items": { 2819 "default": "", 2820 "type": "string" 2821 }, 2822 "type": "array" 2823 } 2824 }, 2825 "required": [ 2826 "key", 2827 "operator" 2828 ], 2829 "type": "object" 2830 }, 2831 "io.k8s.api.core.v1.NodeSelectorTerm": { 2832 "description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.", 2833 "properties": { 2834 "matchExpressions": { 2835 "description": "A list of node selector requirements by node's labels.", 2836 "items": { 2837 "allOf": [ 2838 { 2839 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelectorRequirement" 2840 } 2841 ], 2842 "default": {} 2843 }, 2844 "type": "array" 2845 }, 2846 "matchFields": { 2847 "description": "A list of node selector requirements by node's fields.", 2848 "items": { 2849 "allOf": [ 2850 { 2851 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelectorRequirement" 2852 } 2853 ], 2854 "default": {} 2855 }, 2856 "type": "array" 2857 } 2858 }, 2859 "type": "object", 2860 "x-kubernetes-map-type": "atomic" 2861 }, 2862 "io.k8s.api.core.v1.ObjectFieldSelector": { 2863 "description": "ObjectFieldSelector selects an APIVersioned field of an object.", 2864 "properties": { 2865 "apiVersion": { 2866 "description": "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".", 2867 "type": "string" 2868 }, 2869 "fieldPath": { 2870 "default": "", 2871 "description": "Path of the field to select in the specified API version.", 2872 "type": "string" 2873 } 2874 }, 2875 "required": [ 2876 "fieldPath" 2877 ], 2878 "type": "object", 2879 "x-kubernetes-map-type": "atomic" 2880 }, 2881 "io.k8s.api.core.v1.PersistentVolumeClaim": { 2882 "description": "PersistentVolumeClaim is a user's request for and claim to a persistent volume", 2883 "properties": { 2884 "apiVersion": { 2885 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", 2886 "type": "string" 2887 }, 2888 "kind": { 2889 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 2890 "type": "string" 2891 }, 2892 "metadata": { 2893 "allOf": [ 2894 { 2895 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" 2896 } 2897 ], 2898 "default": {}, 2899 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" 2900 }, 2901 "spec": { 2902 "allOf": [ 2903 { 2904 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimSpec" 2905 } 2906 ], 2907 "default": {}, 2908 "description": "spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" 2909 }, 2910 "status": { 2911 "allOf": [ 2912 { 2913 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimStatus" 2914 } 2915 ], 2916 "default": {}, 2917 "description": "status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" 2918 } 2919 }, 2920 "type": "object", 2921 "x-kubernetes-group-version-kind": [ 2922 { 2923 "group": "", 2924 "kind": "PersistentVolumeClaim", 2925 "version": "v1" 2926 } 2927 ] 2928 }, 2929 "io.k8s.api.core.v1.PersistentVolumeClaimCondition": { 2930 "description": "PersistentVolumeClaimCondition contails details about state of pvc", 2931 "properties": { 2932 "lastProbeTime": { 2933 "allOf": [ 2934 { 2935 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" 2936 } 2937 ], 2938 "default": {}, 2939 "description": "lastProbeTime is the time we probed the condition." 2940 }, 2941 "lastTransitionTime": { 2942 "allOf": [ 2943 { 2944 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" 2945 } 2946 ], 2947 "default": {}, 2948 "description": "lastTransitionTime is the time the condition transitioned from one status to another." 2949 }, 2950 "message": { 2951 "description": "message is the human-readable message indicating details about last transition.", 2952 "type": "string" 2953 }, 2954 "reason": { 2955 "description": "reason is a unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports \"ResizeStarted\" that means the underlying persistent volume is being resized.", 2956 "type": "string" 2957 }, 2958 "status": { 2959 "default": "", 2960 "type": "string" 2961 }, 2962 "type": { 2963 "default": "", 2964 "type": "string" 2965 } 2966 }, 2967 "required": [ 2968 "type", 2969 "status" 2970 ], 2971 "type": "object" 2972 }, 2973 "io.k8s.api.core.v1.PersistentVolumeClaimSpec": { 2974 "description": "PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes", 2975 "properties": { 2976 "accessModes": { 2977 "description": "accessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1", 2978 "items": { 2979 "default": "", 2980 "type": "string" 2981 }, 2982 "type": "array" 2983 }, 2984 "dataSource": { 2985 "allOf": [ 2986 { 2987 "$ref": "#/components/schemas/io.k8s.api.core.v1.TypedLocalObjectReference" 2988 } 2989 ], 2990 "description": "dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. If the namespace is specified, then dataSourceRef will not be copied to dataSource." 2991 }, 2992 "dataSourceRef": { 2993 "allOf": [ 2994 { 2995 "$ref": "#/components/schemas/io.k8s.api.core.v1.TypedObjectReference" 2996 } 2997 ], 2998 "description": "dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired. This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object. When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner. This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value. For backwards compatibility, when namespace isn't specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty. When namespace is specified in dataSourceRef, dataSource isn't set to the same value and must be empty. There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef\n allows any non-core object, as well as PersistentVolumeClaim objects.\n* While dataSource ignores disallowed values (dropping them), dataSourceRef\n preserves all values, and generates an error if a disallowed value is\n specified.\n* While dataSource only allows local objects, dataSourceRef allows objects\n in any namespaces.\n(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled." 2999 }, 3000 "resources": { 3001 "allOf": [ 3002 { 3003 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceRequirements" 3004 } 3005 ], 3006 "default": {}, 3007 "description": "resources represents the minimum resources the volume should have. If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources" 3008 }, 3009 "selector": { 3010 "allOf": [ 3011 { 3012 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" 3013 } 3014 ], 3015 "description": "selector is a label query over volumes to consider for binding." 3016 }, 3017 "storageClassName": { 3018 "description": "storageClassName is the name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1", 3019 "type": "string" 3020 }, 3021 "volumeMode": { 3022 "description": "volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.", 3023 "type": "string" 3024 }, 3025 "volumeName": { 3026 "description": "volumeName is the binding reference to the PersistentVolume backing this claim.", 3027 "type": "string" 3028 } 3029 }, 3030 "type": "object" 3031 }, 3032 "io.k8s.api.core.v1.PersistentVolumeClaimStatus": { 3033 "description": "PersistentVolumeClaimStatus is the current status of a persistent volume claim.", 3034 "properties": { 3035 "accessModes": { 3036 "description": "accessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1", 3037 "items": { 3038 "default": "", 3039 "type": "string" 3040 }, 3041 "type": "array" 3042 }, 3043 "allocatedResources": { 3044 "additionalProperties": { 3045 "allOf": [ 3046 { 3047 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" 3048 } 3049 ], 3050 "default": {} 3051 }, 3052 "description": "allocatedResources is the storage resource within AllocatedResources tracks the capacity allocated to a PVC. It may be larger than the actual capacity when a volume expansion operation is requested. For storage quota, the larger value from allocatedResources and PVC.spec.resources is used. If allocatedResources is not set, PVC.spec.resources alone is used for quota calculation. If a volume expansion capacity request is lowered, allocatedResources is only lowered if there are no expansion operations in progress and if the actual volume capacity is equal or lower than the requested capacity. This is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.", 3053 "type": "object" 3054 }, 3055 "capacity": { 3056 "additionalProperties": { 3057 "allOf": [ 3058 { 3059 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" 3060 } 3061 ], 3062 "default": {} 3063 }, 3064 "description": "capacity represents the actual resources of the underlying volume.", 3065 "type": "object" 3066 }, 3067 "conditions": { 3068 "description": "conditions is the current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'.", 3069 "items": { 3070 "allOf": [ 3071 { 3072 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimCondition" 3073 } 3074 ], 3075 "default": {} 3076 }, 3077 "type": "array", 3078 "x-kubernetes-patch-merge-key": "type", 3079 "x-kubernetes-patch-strategy": "merge" 3080 }, 3081 "phase": { 3082 "description": "phase represents the current phase of PersistentVolumeClaim.", 3083 "type": "string" 3084 }, 3085 "resizeStatus": { 3086 "description": "resizeStatus stores status of resize operation. ResizeStatus is not set by default but when expansion is complete resizeStatus is set to empty string by resize controller or kubelet. This is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.", 3087 "type": "string" 3088 } 3089 }, 3090 "type": "object" 3091 }, 3092 "io.k8s.api.core.v1.PersistentVolumeClaimTemplate": { 3093 "description": "PersistentVolumeClaimTemplate is used to produce PersistentVolumeClaim objects as part of an EphemeralVolumeSource.", 3094 "properties": { 3095 "metadata": { 3096 "allOf": [ 3097 { 3098 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" 3099 } 3100 ], 3101 "default": {}, 3102 "description": "May contain labels and annotations that will be copied into the PVC when creating it. No other fields are allowed and will be rejected during validation." 3103 }, 3104 "spec": { 3105 "allOf": [ 3106 { 3107 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimSpec" 3108 } 3109 ], 3110 "default": {}, 3111 "description": "The specification for the PersistentVolumeClaim. The entire content is copied unchanged into the PVC that gets created from this template. The same fields as in a PersistentVolumeClaim are also valid here." 3112 } 3113 }, 3114 "required": [ 3115 "spec" 3116 ], 3117 "type": "object" 3118 }, 3119 "io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource": { 3120 "description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).", 3121 "properties": { 3122 "claimName": { 3123 "default": "", 3124 "description": "claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", 3125 "type": "string" 3126 }, 3127 "readOnly": { 3128 "description": "readOnly Will force the ReadOnly setting in VolumeMounts. Default false.", 3129 "type": "boolean" 3130 } 3131 }, 3132 "required": [ 3133 "claimName" 3134 ], 3135 "type": "object" 3136 }, 3137 "io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource": { 3138 "description": "Represents a Photon Controller persistent disk resource.", 3139 "properties": { 3140 "fsType": { 3141 "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", 3142 "type": "string" 3143 }, 3144 "pdID": { 3145 "default": "", 3146 "description": "pdID is the ID that identifies Photon Controller persistent disk", 3147 "type": "string" 3148 } 3149 }, 3150 "required": [ 3151 "pdID" 3152 ], 3153 "type": "object" 3154 }, 3155 "io.k8s.api.core.v1.PodAffinity": { 3156 "description": "Pod affinity is a group of inter pod affinity scheduling rules.", 3157 "properties": { 3158 "preferredDuringSchedulingIgnoredDuringExecution": { 3159 "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", 3160 "items": { 3161 "allOf": [ 3162 { 3163 "$ref": "#/components/schemas/io.k8s.api.core.v1.WeightedPodAffinityTerm" 3164 } 3165 ], 3166 "default": {} 3167 }, 3168 "type": "array" 3169 }, 3170 "requiredDuringSchedulingIgnoredDuringExecution": { 3171 "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", 3172 "items": { 3173 "allOf": [ 3174 { 3175 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodAffinityTerm" 3176 } 3177 ], 3178 "default": {} 3179 }, 3180 "type": "array" 3181 } 3182 }, 3183 "type": "object" 3184 }, 3185 "io.k8s.api.core.v1.PodAffinityTerm": { 3186 "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running", 3187 "properties": { 3188 "labelSelector": { 3189 "allOf": [ 3190 { 3191 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" 3192 } 3193 ], 3194 "description": "A label query over a set of resources, in this case pods." 3195 }, 3196 "namespaceSelector": { 3197 "allOf": [ 3198 { 3199 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" 3200 } 3201 ], 3202 "description": "A label query over the set of namespaces that the term applies to. The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field. null selector and null or empty namespaces list means \"this pod's namespace\". An empty selector ({}) matches all namespaces." 3203 }, 3204 "namespaces": { 3205 "description": "namespaces specifies a static list of namespace names that the term applies to. The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector. null or empty namespaces list and null namespaceSelector means \"this pod's namespace\".", 3206 "items": { 3207 "default": "", 3208 "type": "string" 3209 }, 3210 "type": "array" 3211 }, 3212 "topologyKey": { 3213 "default": "", 3214 "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.", 3215 "type": "string" 3216 } 3217 }, 3218 "required": [ 3219 "topologyKey" 3220 ], 3221 "type": "object" 3222 }, 3223 "io.k8s.api.core.v1.PodAntiAffinity": { 3224 "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", 3225 "properties": { 3226 "preferredDuringSchedulingIgnoredDuringExecution": { 3227 "description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", 3228 "items": { 3229 "allOf": [ 3230 { 3231 "$ref": "#/components/schemas/io.k8s.api.core.v1.WeightedPodAffinityTerm" 3232 } 3233 ], 3234 "default": {} 3235 }, 3236 "type": "array" 3237 }, 3238 "requiredDuringSchedulingIgnoredDuringExecution": { 3239 "description": "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", 3240 "items": { 3241 "allOf": [ 3242 { 3243 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodAffinityTerm" 3244 } 3245 ], 3246 "default": {} 3247 }, 3248 "type": "array" 3249 } 3250 }, 3251 "type": "object" 3252 }, 3253 "io.k8s.api.core.v1.PodDNSConfig": { 3254 "description": "PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.", 3255 "properties": { 3256 "nameservers": { 3257 "description": "A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed.", 3258 "items": { 3259 "default": "", 3260 "type": "string" 3261 }, 3262 "type": "array" 3263 }, 3264 "options": { 3265 "description": "A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy.", 3266 "items": { 3267 "allOf": [ 3268 { 3269 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodDNSConfigOption" 3270 } 3271 ], 3272 "default": {} 3273 }, 3274 "type": "array" 3275 }, 3276 "searches": { 3277 "description": "A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed.", 3278 "items": { 3279 "default": "", 3280 "type": "string" 3281 }, 3282 "type": "array" 3283 } 3284 }, 3285 "type": "object" 3286 }, 3287 "io.k8s.api.core.v1.PodDNSConfigOption": { 3288 "description": "PodDNSConfigOption defines DNS resolver options of a pod.", 3289 "properties": { 3290 "name": { 3291 "description": "Required.", 3292 "type": "string" 3293 }, 3294 "value": { 3295 "type": "string" 3296 } 3297 }, 3298 "type": "object" 3299 }, 3300 "io.k8s.api.core.v1.PodOS": { 3301 "description": "PodOS defines the OS parameters of a pod.", 3302 "properties": { 3303 "name": { 3304 "default": "", 3305 "description": "Name is the name of the operating system. The currently supported values are linux and windows. Additional value may be defined in future and can be one of: https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null", 3306 "type": "string" 3307 } 3308 }, 3309 "required": [ 3310 "name" 3311 ], 3312 "type": "object" 3313 }, 3314 "io.k8s.api.core.v1.PodReadinessGate": { 3315 "description": "PodReadinessGate contains the reference to a pod condition", 3316 "properties": { 3317 "conditionType": { 3318 "default": "", 3319 "description": "ConditionType refers to a condition in the pod's condition list with matching type.", 3320 "type": "string" 3321 } 3322 }, 3323 "required": [ 3324 "conditionType" 3325 ], 3326 "type": "object" 3327 }, 3328 "io.k8s.api.core.v1.PodResourceClaim": { 3329 "description": "PodResourceClaim references exactly one ResourceClaim through a ClaimSource. It adds a name to it that uniquely identifies the ResourceClaim inside the Pod. Containers that need access to the ResourceClaim reference it with this name.", 3330 "properties": { 3331 "name": { 3332 "default": "", 3333 "description": "Name uniquely identifies this resource claim inside the pod. This must be a DNS_LABEL.", 3334 "type": "string" 3335 }, 3336 "source": { 3337 "allOf": [ 3338 { 3339 "$ref": "#/components/schemas/io.k8s.api.core.v1.ClaimSource" 3340 } 3341 ], 3342 "default": {}, 3343 "description": "Source describes where to find the ResourceClaim." 3344 } 3345 }, 3346 "required": [ 3347 "name" 3348 ], 3349 "type": "object" 3350 }, 3351 "io.k8s.api.core.v1.PodSchedulingGate": { 3352 "description": "PodSchedulingGate is associated to a Pod to guard its scheduling.", 3353 "properties": { 3354 "name": { 3355 "default": "", 3356 "description": "Name of the scheduling gate. Each scheduling gate must have a unique name field.", 3357 "type": "string" 3358 } 3359 }, 3360 "required": [ 3361 "name" 3362 ], 3363 "type": "object" 3364 }, 3365 "io.k8s.api.core.v1.PodSecurityContext": { 3366 "description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.", 3367 "properties": { 3368 "fsGroup": { 3369 "description": "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume. Note that this field cannot be set when spec.os.name is windows.", 3370 "format": "int64", 3371 "type": "integer" 3372 }, 3373 "fsGroupChangePolicy": { 3374 "description": "fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod. This field will only apply to volume types which support fsGroup based ownership(and permissions). It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir. Valid values are \"OnRootMismatch\" and \"Always\". If not specified, \"Always\" is used. Note that this field cannot be set when spec.os.name is windows.", 3375 "type": "string" 3376 }, 3377 "runAsGroup": { 3378 "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.", 3379 "format": "int64", 3380 "type": "integer" 3381 }, 3382 "runAsNonRoot": { 3383 "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", 3384 "type": "boolean" 3385 }, 3386 "runAsUser": { 3387 "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows.", 3388 "format": "int64", 3389 "type": "integer" 3390 }, 3391 "seLinuxOptions": { 3392 "allOf": [ 3393 { 3394 "$ref": "#/components/schemas/io.k8s.api.core.v1.SELinuxOptions" 3395 } 3396 ], 3397 "description": "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container. Note that this field cannot be set when spec.os.name is windows." 3398 }, 3399 "seccompProfile": { 3400 "allOf": [ 3401 { 3402 "$ref": "#/components/schemas/io.k8s.api.core.v1.SeccompProfile" 3403 } 3404 ], 3405 "description": "The seccomp options to use by the containers in this pod. Note that this field cannot be set when spec.os.name is windows." 3406 }, 3407 "supplementalGroups": { 3408 "description": "A list of groups applied to the first process run in each container, in addition to the container's primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process. If unspecified, no additional groups are added to any container. Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list. Note that this field cannot be set when spec.os.name is windows.", 3409 "items": { 3410 "default": 0, 3411 "format": "int64", 3412 "type": "integer" 3413 }, 3414 "type": "array" 3415 }, 3416 "sysctls": { 3417 "description": "Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch. Note that this field cannot be set when spec.os.name is windows.", 3418 "items": { 3419 "allOf": [ 3420 { 3421 "$ref": "#/components/schemas/io.k8s.api.core.v1.Sysctl" 3422 } 3423 ], 3424 "default": {} 3425 }, 3426 "type": "array" 3427 }, 3428 "windowsOptions": { 3429 "allOf": [ 3430 { 3431 "$ref": "#/components/schemas/io.k8s.api.core.v1.WindowsSecurityContextOptions" 3432 } 3433 ], 3434 "description": "The Windows specific settings applied to all containers. If unspecified, the options within a container's SecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux." 3435 } 3436 }, 3437 "type": "object" 3438 }, 3439 "io.k8s.api.core.v1.PodSpec": { 3440 "description": "PodSpec is a description of a pod.", 3441 "properties": { 3442 "activeDeadlineSeconds": { 3443 "description": "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.", 3444 "format": "int64", 3445 "type": "integer" 3446 }, 3447 "affinity": { 3448 "allOf": [ 3449 { 3450 "$ref": "#/components/schemas/io.k8s.api.core.v1.Affinity" 3451 } 3452 ], 3453 "description": "If specified, the pod's scheduling constraints" 3454 }, 3455 "automountServiceAccountToken": { 3456 "description": "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.", 3457 "type": "boolean" 3458 }, 3459 "containers": { 3460 "description": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.", 3461 "items": { 3462 "allOf": [ 3463 { 3464 "$ref": "#/components/schemas/io.k8s.api.core.v1.Container" 3465 } 3466 ], 3467 "default": {} 3468 }, 3469 "type": "array", 3470 "x-kubernetes-patch-merge-key": "name", 3471 "x-kubernetes-patch-strategy": "merge" 3472 }, 3473 "dnsConfig": { 3474 "allOf": [ 3475 { 3476 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodDNSConfig" 3477 } 3478 ], 3479 "description": "Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy." 3480 }, 3481 "dnsPolicy": { 3482 "description": "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.", 3483 "type": "string" 3484 }, 3485 "enableServiceLinks": { 3486 "description": "EnableServiceLinks indicates whether information about services should be injected into pod's environment variables, matching the syntax of Docker links. Optional: Defaults to true.", 3487 "type": "boolean" 3488 }, 3489 "ephemeralContainers": { 3490 "description": "List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging. This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec. In order to add an ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource.", 3491 "items": { 3492 "allOf": [ 3493 { 3494 "$ref": "#/components/schemas/io.k8s.api.core.v1.EphemeralContainer" 3495 } 3496 ], 3497 "default": {} 3498 }, 3499 "type": "array", 3500 "x-kubernetes-patch-merge-key": "name", 3501 "x-kubernetes-patch-strategy": "merge" 3502 }, 3503 "hostAliases": { 3504 "description": "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.", 3505 "items": { 3506 "allOf": [ 3507 { 3508 "$ref": "#/components/schemas/io.k8s.api.core.v1.HostAlias" 3509 } 3510 ], 3511 "default": {} 3512 }, 3513 "type": "array", 3514 "x-kubernetes-patch-merge-key": "ip", 3515 "x-kubernetes-patch-strategy": "merge" 3516 }, 3517 "hostIPC": { 3518 "description": "Use the host's ipc namespace. Optional: Default to false.", 3519 "type": "boolean" 3520 }, 3521 "hostNetwork": { 3522 "description": "Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.", 3523 "type": "boolean" 3524 }, 3525 "hostPID": { 3526 "description": "Use the host's pid namespace. Optional: Default to false.", 3527 "type": "boolean" 3528 }, 3529 "hostUsers": { 3530 "description": "Use the host's user namespace. Optional: Default to true. If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE. When set to false, a new userns is created for the pod. Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host. This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature.", 3531 "type": "boolean" 3532 }, 3533 "hostname": { 3534 "description": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.", 3535 "type": "string" 3536 }, 3537 "imagePullSecrets": { 3538 "description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod", 3539 "items": { 3540 "allOf": [ 3541 { 3542 "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference" 3543 } 3544 ], 3545 "default": {} 3546 }, 3547 "type": "array", 3548 "x-kubernetes-patch-merge-key": "name", 3549 "x-kubernetes-patch-strategy": "merge" 3550 }, 3551 "initContainers": { 3552 "description": "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/", 3553 "items": { 3554 "allOf": [ 3555 { 3556 "$ref": "#/components/schemas/io.k8s.api.core.v1.Container" 3557 } 3558 ], 3559 "default": {} 3560 }, 3561 "type": "array", 3562 "x-kubernetes-patch-merge-key": "name", 3563 "x-kubernetes-patch-strategy": "merge" 3564 }, 3565 "nodeName": { 3566 "description": "NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.", 3567 "type": "string" 3568 }, 3569 "nodeSelector": { 3570 "additionalProperties": { 3571 "default": "", 3572 "type": "string" 3573 }, 3574 "description": "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/", 3575 "type": "object", 3576 "x-kubernetes-map-type": "atomic" 3577 }, 3578 "os": { 3579 "allOf": [ 3580 { 3581 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodOS" 3582 } 3583 ], 3584 "description": "Specifies the OS of the containers in the pod. Some pod and container fields are restricted if this is set.\n\nIf the OS field is set to linux, the following fields must be unset: -securityContext.windowsOptions\n\nIf the OS field is set to windows, following fields must be unset: - spec.hostPID - spec.hostIPC - spec.hostUsers - spec.securityContext.seLinuxOptions - spec.securityContext.seccompProfile - spec.securityContext.fsGroup - spec.securityContext.fsGroupChangePolicy - spec.securityContext.sysctls - spec.shareProcessNamespace - spec.securityContext.runAsUser - spec.securityContext.runAsGroup - spec.securityContext.supplementalGroups - spec.containers[*].securityContext.seLinuxOptions - spec.containers[*].securityContext.seccompProfile - spec.containers[*].securityContext.capabilities - spec.containers[*].securityContext.readOnlyRootFilesystem - spec.containers[*].securityContext.privileged - spec.containers[*].securityContext.allowPrivilegeEscalation - spec.containers[*].securityContext.procMount - spec.containers[*].securityContext.runAsUser - spec.containers[*].securityContext.runAsGroup" 3585 }, 3586 "overhead": { 3587 "additionalProperties": { 3588 "allOf": [ 3589 { 3590 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" 3591 } 3592 ], 3593 "default": {} 3594 }, 3595 "description": "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. More info: https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md", 3596 "type": "object" 3597 }, 3598 "preemptionPolicy": { 3599 "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset.", 3600 "type": "string" 3601 }, 3602 "priority": { 3603 "description": "The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.", 3604 "format": "int32", 3605 "type": "integer" 3606 }, 3607 "priorityClassName": { 3608 "description": "If specified, indicates the pod's priority. \"system-node-critical\" and \"system-cluster-critical\" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.", 3609 "type": "string" 3610 }, 3611 "readinessGates": { 3612 "description": "If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to \"True\" More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates", 3613 "items": { 3614 "allOf": [ 3615 { 3616 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodReadinessGate" 3617 } 3618 ], 3619 "default": {} 3620 }, 3621 "type": "array" 3622 }, 3623 "resourceClaims": { 3624 "description": "ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start. The resources will be made available to those containers which consume them by name.\n\nThis is an alpha field and requires enabling the DynamicResourceAllocation feature gate.\n\nThis field is immutable.", 3625 "items": { 3626 "allOf": [ 3627 { 3628 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodResourceClaim" 3629 } 3630 ], 3631 "default": {} 3632 }, 3633 "type": "array", 3634 "x-kubernetes-list-map-keys": [ 3635 "name" 3636 ], 3637 "x-kubernetes-list-type": "map", 3638 "x-kubernetes-patch-merge-key": "name", 3639 "x-kubernetes-patch-strategy": "merge,retainKeys" 3640 }, 3641 "restartPolicy": { 3642 "description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy", 3643 "type": "string" 3644 }, 3645 "runtimeClassName": { 3646 "description": "RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the \"legacy\" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class", 3647 "type": "string" 3648 }, 3649 "schedulerName": { 3650 "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.", 3651 "type": "string" 3652 }, 3653 "schedulingGates": { 3654 "description": "SchedulingGates is an opaque list of values that if specified will block scheduling the pod. More info: https://git.k8s.io/enhancements/keps/sig-scheduling/3521-pod-scheduling-readiness.\n\nThis is an alpha-level feature enabled by PodSchedulingReadiness feature gate.", 3655 "items": { 3656 "allOf": [ 3657 { 3658 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodSchedulingGate" 3659 } 3660 ], 3661 "default": {} 3662 }, 3663 "type": "array", 3664 "x-kubernetes-list-map-keys": [ 3665 "name" 3666 ], 3667 "x-kubernetes-list-type": "map", 3668 "x-kubernetes-patch-merge-key": "name", 3669 "x-kubernetes-patch-strategy": "merge" 3670 }, 3671 "securityContext": { 3672 "allOf": [ 3673 { 3674 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodSecurityContext" 3675 } 3676 ], 3677 "description": "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field." 3678 }, 3679 "serviceAccount": { 3680 "description": "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.", 3681 "type": "string" 3682 }, 3683 "serviceAccountName": { 3684 "description": "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/", 3685 "type": "string" 3686 }, 3687 "setHostnameAsFQDN": { 3688 "description": "If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN. If a pod does not have FQDN, this has no effect. Default to false.", 3689 "type": "boolean" 3690 }, 3691 "shareProcessNamespace": { 3692 "description": "Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false.", 3693 "type": "boolean" 3694 }, 3695 "subdomain": { 3696 "description": "If specified, the fully qualified Pod hostname will be \"<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>\". If not specified, the pod will not have a domainname at all.", 3697 "type": "string" 3698 }, 3699 "terminationGracePeriodSeconds": { 3700 "description": "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.", 3701 "format": "int64", 3702 "type": "integer" 3703 }, 3704 "tolerations": { 3705 "description": "If specified, the pod's tolerations.", 3706 "items": { 3707 "allOf": [ 3708 { 3709 "$ref": "#/components/schemas/io.k8s.api.core.v1.Toleration" 3710 } 3711 ], 3712 "default": {} 3713 }, 3714 "type": "array" 3715 }, 3716 "topologySpreadConstraints": { 3717 "description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. All topologySpreadConstraints are ANDed.", 3718 "items": { 3719 "allOf": [ 3720 { 3721 "$ref": "#/components/schemas/io.k8s.api.core.v1.TopologySpreadConstraint" 3722 } 3723 ], 3724 "default": {} 3725 }, 3726 "type": "array", 3727 "x-kubernetes-list-map-keys": [ 3728 "topologyKey", 3729 "whenUnsatisfiable" 3730 ], 3731 "x-kubernetes-list-type": "map", 3732 "x-kubernetes-patch-merge-key": "topologyKey", 3733 "x-kubernetes-patch-strategy": "merge" 3734 }, 3735 "volumes": { 3736 "description": "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes", 3737 "items": { 3738 "allOf": [ 3739 { 3740 "$ref": "#/components/schemas/io.k8s.api.core.v1.Volume" 3741 } 3742 ], 3743 "default": {} 3744 }, 3745 "type": "array", 3746 "x-kubernetes-patch-merge-key": "name", 3747 "x-kubernetes-patch-strategy": "merge,retainKeys" 3748 } 3749 }, 3750 "required": [ 3751 "containers" 3752 ], 3753 "type": "object" 3754 }, 3755 "io.k8s.api.core.v1.PodTemplateSpec": { 3756 "description": "PodTemplateSpec describes the data a pod should have when created from a template", 3757 "properties": { 3758 "metadata": { 3759 "allOf": [ 3760 { 3761 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta" 3762 } 3763 ], 3764 "default": {}, 3765 "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" 3766 }, 3767 "spec": { 3768 "allOf": [ 3769 { 3770 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodSpec" 3771 } 3772 ], 3773 "default": {}, 3774 "description": "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status" 3775 } 3776 }, 3777 "type": "object" 3778 }, 3779 "io.k8s.api.core.v1.PortworxVolumeSource": { 3780 "description": "PortworxVolumeSource represents a Portworx volume resource.", 3781 "properties": { 3782 "fsType": { 3783 "description": "fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.", 3784 "type": "string" 3785 }, 3786 "readOnly": { 3787 "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", 3788 "type": "boolean" 3789 }, 3790 "volumeID": { 3791 "default": "", 3792 "description": "volumeID uniquely identifies a Portworx volume", 3793 "type": "string" 3794 } 3795 }, 3796 "required": [ 3797 "volumeID" 3798 ], 3799 "type": "object" 3800 }, 3801 "io.k8s.api.core.v1.PreferredSchedulingTerm": { 3802 "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).", 3803 "properties": { 3804 "preference": { 3805 "allOf": [ 3806 { 3807 "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelectorTerm" 3808 } 3809 ], 3810 "default": {}, 3811 "description": "A node selector term, associated with the corresponding weight." 3812 }, 3813 "weight": { 3814 "default": 0, 3815 "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.", 3816 "format": "int32", 3817 "type": "integer" 3818 } 3819 }, 3820 "required": [ 3821 "weight", 3822 "preference" 3823 ], 3824 "type": "object" 3825 }, 3826 "io.k8s.api.core.v1.Probe": { 3827 "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", 3828 "properties": { 3829 "exec": { 3830 "allOf": [ 3831 { 3832 "$ref": "#/components/schemas/io.k8s.api.core.v1.ExecAction" 3833 } 3834 ], 3835 "description": "Exec specifies the action to take." 3836 }, 3837 "failureThreshold": { 3838 "description": "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", 3839 "format": "int32", 3840 "type": "integer" 3841 }, 3842 "grpc": { 3843 "allOf": [ 3844 { 3845 "$ref": "#/components/schemas/io.k8s.api.core.v1.GRPCAction" 3846 } 3847 ], 3848 "description": "GRPC specifies an action involving a GRPC port. This is a beta field and requires enabling GRPCContainerProbe feature gate." 3849 }, 3850 "httpGet": { 3851 "allOf": [ 3852 { 3853 "$ref": "#/components/schemas/io.k8s.api.core.v1.HTTPGetAction" 3854 } 3855 ], 3856 "description": "HTTPGet specifies the http request to perform." 3857 }, 3858 "initialDelaySeconds": { 3859 "description": "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", 3860 "format": "int32", 3861 "type": "integer" 3862 }, 3863 "periodSeconds": { 3864 "description": "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", 3865 "format": "int32", 3866 "type": "integer" 3867 }, 3868 "successThreshold": { 3869 "description": "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1.", 3870 "format": "int32", 3871 "type": "integer" 3872 }, 3873 "tcpSocket": { 3874 "allOf": [ 3875 { 3876 "$ref": "#/components/schemas/io.k8s.api.core.v1.TCPSocketAction" 3877 } 3878 ], 3879 "description": "TCPSocket specifies an action involving a TCP port." 3880 }, 3881 "terminationGracePeriodSeconds": { 3882 "description": "Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset.", 3883 "format": "int64", 3884 "type": "integer" 3885 }, 3886 "timeoutSeconds": { 3887 "description": "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", 3888 "format": "int32", 3889 "type": "integer" 3890 } 3891 }, 3892 "type": "object" 3893 }, 3894 "io.k8s.api.core.v1.ProjectedVolumeSource": { 3895 "description": "Represents a projected volume source", 3896 "properties": { 3897 "defaultMode": { 3898 "description": "defaultMode are the mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", 3899 "format": "int32", 3900 "type": "integer" 3901 }, 3902 "sources": { 3903 "description": "sources is the list of volume projections", 3904 "items": { 3905 "allOf": [ 3906 { 3907 "$ref": "#/components/schemas/io.k8s.api.core.v1.VolumeProjection" 3908 } 3909 ], 3910 "default": {} 3911 }, 3912 "type": "array" 3913 } 3914 }, 3915 "type": "object" 3916 }, 3917 "io.k8s.api.core.v1.QuobyteVolumeSource": { 3918 "description": "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.", 3919 "properties": { 3920 "group": { 3921 "description": "group to map volume access to Default is no group", 3922 "type": "string" 3923 }, 3924 "readOnly": { 3925 "description": "readOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.", 3926 "type": "boolean" 3927 }, 3928 "registry": { 3929 "default": "", 3930 "description": "registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes", 3931 "type": "string" 3932 }, 3933 "tenant": { 3934 "description": "tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin", 3935 "type": "string" 3936 }, 3937 "user": { 3938 "description": "user to map volume access to Defaults to serivceaccount user", 3939 "type": "string" 3940 }, 3941 "volume": { 3942 "default": "", 3943 "description": "volume is a string that references an already created Quobyte volume by name.", 3944 "type": "string" 3945 } 3946 }, 3947 "required": [ 3948 "registry", 3949 "volume" 3950 ], 3951 "type": "object" 3952 }, 3953 "io.k8s.api.core.v1.RBDVolumeSource": { 3954 "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.", 3955 "properties": { 3956 "fsType": { 3957 "description": "fsType is the filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", 3958 "type": "string" 3959 }, 3960 "image": { 3961 "default": "", 3962 "description": "image is the rados image name. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", 3963 "type": "string" 3964 }, 3965 "keyring": { 3966 "description": "keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", 3967 "type": "string" 3968 }, 3969 "monitors": { 3970 "description": "monitors is a collection of Ceph monitors. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", 3971 "items": { 3972 "default": "", 3973 "type": "string" 3974 }, 3975 "type": "array" 3976 }, 3977 "pool": { 3978 "description": "pool is the rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", 3979 "type": "string" 3980 }, 3981 "readOnly": { 3982 "description": "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", 3983 "type": "boolean" 3984 }, 3985 "secretRef": { 3986 "allOf": [ 3987 { 3988 "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference" 3989 } 3990 ], 3991 "description": "secretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it" 3992 }, 3993 "user": { 3994 "description": "user is the rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it", 3995 "type": "string" 3996 } 3997 }, 3998 "required": [ 3999 "monitors", 4000 "image" 4001 ], 4002 "type": "object" 4003 }, 4004 "io.k8s.api.core.v1.ResourceClaim": { 4005 "description": "ResourceClaim references one entry in PodSpec.ResourceClaims.", 4006 "properties": { 4007 "name": { 4008 "default": "", 4009 "description": "Name must match the name of one entry in pod.spec.resourceClaims of the Pod where this field is used. It makes that resource available inside a container.", 4010 "type": "string" 4011 } 4012 }, 4013 "required": [ 4014 "name" 4015 ], 4016 "type": "object" 4017 }, 4018 "io.k8s.api.core.v1.ResourceFieldSelector": { 4019 "description": "ResourceFieldSelector represents container resources (cpu, memory) and their output format", 4020 "properties": { 4021 "containerName": { 4022 "description": "Container name: required for volumes, optional for env vars", 4023 "type": "string" 4024 }, 4025 "divisor": { 4026 "allOf": [ 4027 { 4028 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" 4029 } 4030 ], 4031 "default": {}, 4032 "description": "Specifies the output format of the exposed resources, defaults to \"1\"" 4033 }, 4034 "resource": { 4035 "default": "", 4036 "description": "Required: resource to select", 4037 "type": "string" 4038 } 4039 }, 4040 "required": [ 4041 "resource" 4042 ], 4043 "type": "object", 4044 "x-kubernetes-map-type": "atomic" 4045 }, 4046 "io.k8s.api.core.v1.ResourceRequirements": { 4047 "description": "ResourceRequirements describes the compute resource requirements.", 4048 "properties": { 4049 "claims": { 4050 "description": "Claims lists the names of resources, defined in spec.resourceClaims, that are used by this container.\n\nThis is an alpha field and requires enabling the DynamicResourceAllocation feature gate.\n\nThis field is immutable.", 4051 "items": { 4052 "allOf": [ 4053 { 4054 "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceClaim" 4055 } 4056 ], 4057 "default": {} 4058 }, 4059 "type": "array", 4060 "x-kubernetes-list-map-keys": [ 4061 "name" 4062 ], 4063 "x-kubernetes-list-type": "map" 4064 }, 4065 "limits": { 4066 "additionalProperties": { 4067 "allOf": [ 4068 { 4069 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" 4070 } 4071 ], 4072 "default": {} 4073 }, 4074 "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", 4075 "type": "object" 4076 }, 4077 "requests": { 4078 "additionalProperties": { 4079 "allOf": [ 4080 { 4081 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.api.resource.Quantity" 4082 } 4083 ], 4084 "default": {} 4085 }, 4086 "description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", 4087 "type": "object" 4088 } 4089 }, 4090 "type": "object" 4091 }, 4092 "io.k8s.api.core.v1.SELinuxOptions": { 4093 "description": "SELinuxOptions are the labels to be applied to the container", 4094 "properties": { 4095 "level": { 4096 "description": "Level is SELinux level label that applies to the container.", 4097 "type": "string" 4098 }, 4099 "role": { 4100 "description": "Role is a SELinux role label that applies to the container.", 4101 "type": "string" 4102 }, 4103 "type": { 4104 "description": "Type is a SELinux type label that applies to the container.", 4105 "type": "string" 4106 }, 4107 "user": { 4108 "description": "User is a SELinux user label that applies to the container.", 4109 "type": "string" 4110 } 4111 }, 4112 "type": "object" 4113 }, 4114 "io.k8s.api.core.v1.ScaleIOVolumeSource": { 4115 "description": "ScaleIOVolumeSource represents a persistent ScaleIO volume", 4116 "properties": { 4117 "fsType": { 4118 "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Default is \"xfs\".", 4119 "type": "string" 4120 }, 4121 "gateway": { 4122 "default": "", 4123 "description": "gateway is the host address of the ScaleIO API Gateway.", 4124 "type": "string" 4125 }, 4126 "protectionDomain": { 4127 "description": "protectionDomain is the name of the ScaleIO Protection Domain for the configured storage.", 4128 "type": "string" 4129 }, 4130 "readOnly": { 4131 "description": "readOnly Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", 4132 "type": "boolean" 4133 }, 4134 "secretRef": { 4135 "allOf": [ 4136 { 4137 "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference" 4138 } 4139 ], 4140 "description": "secretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail." 4141 }, 4142 "sslEnabled": { 4143 "description": "sslEnabled Flag enable/disable SSL communication with Gateway, default false", 4144 "type": "boolean" 4145 }, 4146 "storageMode": { 4147 "description": "storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.", 4148 "type": "string" 4149 }, 4150 "storagePool": { 4151 "description": "storagePool is the ScaleIO Storage Pool associated with the protection domain.", 4152 "type": "string" 4153 }, 4154 "system": { 4155 "default": "", 4156 "description": "system is the name of the storage system as configured in ScaleIO.", 4157 "type": "string" 4158 }, 4159 "volumeName": { 4160 "description": "volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source.", 4161 "type": "string" 4162 } 4163 }, 4164 "required": [ 4165 "gateway", 4166 "system", 4167 "secretRef" 4168 ], 4169 "type": "object" 4170 }, 4171 "io.k8s.api.core.v1.SeccompProfile": { 4172 "description": "SeccompProfile defines a pod/container's seccomp profile settings. Only one profile source may be set.", 4173 "properties": { 4174 "localhostProfile": { 4175 "description": "localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is \"Localhost\".", 4176 "type": "string" 4177 }, 4178 "type": { 4179 "default": "", 4180 "description": "type indicates which kind of seccomp profile will be applied. Valid options are:\n\nLocalhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.", 4181 "type": "string" 4182 } 4183 }, 4184 "required": [ 4185 "type" 4186 ], 4187 "type": "object", 4188 "x-kubernetes-unions": [ 4189 { 4190 "discriminator": "type", 4191 "fields-to-discriminateBy": { 4192 "localhostProfile": "LocalhostProfile" 4193 } 4194 } 4195 ] 4196 }, 4197 "io.k8s.api.core.v1.SecretEnvSource": { 4198 "description": "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.", 4199 "properties": { 4200 "name": { 4201 "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", 4202 "type": "string" 4203 }, 4204 "optional": { 4205 "description": "Specify whether the Secret must be defined", 4206 "type": "boolean" 4207 } 4208 }, 4209 "type": "object" 4210 }, 4211 "io.k8s.api.core.v1.SecretKeySelector": { 4212 "description": "SecretKeySelector selects a key of a Secret.", 4213 "properties": { 4214 "key": { 4215 "default": "", 4216 "description": "The key of the secret to select from. Must be a valid secret key.", 4217 "type": "string" 4218 }, 4219 "name": { 4220 "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", 4221 "type": "string" 4222 }, 4223 "optional": { 4224 "description": "Specify whether the Secret or its key must be defined", 4225 "type": "boolean" 4226 } 4227 }, 4228 "required": [ 4229 "key" 4230 ], 4231 "type": "object", 4232 "x-kubernetes-map-type": "atomic" 4233 }, 4234 "io.k8s.api.core.v1.SecretProjection": { 4235 "description": "Adapts a secret into a projected volume.\n\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.", 4236 "properties": { 4237 "items": { 4238 "description": "items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", 4239 "items": { 4240 "allOf": [ 4241 { 4242 "$ref": "#/components/schemas/io.k8s.api.core.v1.KeyToPath" 4243 } 4244 ], 4245 "default": {} 4246 }, 4247 "type": "array" 4248 }, 4249 "name": { 4250 "description": "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", 4251 "type": "string" 4252 }, 4253 "optional": { 4254 "description": "optional field specify whether the Secret or its key must be defined", 4255 "type": "boolean" 4256 } 4257 }, 4258 "type": "object" 4259 }, 4260 "io.k8s.api.core.v1.SecretVolumeSource": { 4261 "description": "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.", 4262 "properties": { 4263 "defaultMode": { 4264 "description": "defaultMode is Optional: mode bits used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", 4265 "format": "int32", 4266 "type": "integer" 4267 }, 4268 "items": { 4269 "description": "items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", 4270 "items": { 4271 "allOf": [ 4272 { 4273 "$ref": "#/components/schemas/io.k8s.api.core.v1.KeyToPath" 4274 } 4275 ], 4276 "default": {} 4277 }, 4278 "type": "array" 4279 }, 4280 "optional": { 4281 "description": "optional field specify whether the Secret or its keys must be defined", 4282 "type": "boolean" 4283 }, 4284 "secretName": { 4285 "description": "secretName is the name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret", 4286 "type": "string" 4287 } 4288 }, 4289 "type": "object" 4290 }, 4291 "io.k8s.api.core.v1.SecurityContext": { 4292 "description": "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.", 4293 "properties": { 4294 "allowPrivilegeEscalation": { 4295 "description": "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when spec.os.name is windows.", 4296 "type": "boolean" 4297 }, 4298 "capabilities": { 4299 "allOf": [ 4300 { 4301 "$ref": "#/components/schemas/io.k8s.api.core.v1.Capabilities" 4302 } 4303 ], 4304 "description": "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. Note that this field cannot be set when spec.os.name is windows." 4305 }, 4306 "privileged": { 4307 "description": "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. Note that this field cannot be set when spec.os.name is windows.", 4308 "type": "boolean" 4309 }, 4310 "procMount": { 4311 "description": "procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. Note that this field cannot be set when spec.os.name is windows.", 4312 "type": "string" 4313 }, 4314 "readOnlyRootFilesystem": { 4315 "description": "Whether this container has a read-only root filesystem. Default is false. Note that this field cannot be set when spec.os.name is windows.", 4316 "type": "boolean" 4317 }, 4318 "runAsGroup": { 4319 "description": "The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.", 4320 "format": "int64", 4321 "type": "integer" 4322 }, 4323 "runAsNonRoot": { 4324 "description": "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", 4325 "type": "boolean" 4326 }, 4327 "runAsUser": { 4328 "description": "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows.", 4329 "format": "int64", 4330 "type": "integer" 4331 }, 4332 "seLinuxOptions": { 4333 "allOf": [ 4334 { 4335 "$ref": "#/components/schemas/io.k8s.api.core.v1.SELinuxOptions" 4336 } 4337 ], 4338 "description": "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is windows." 4339 }, 4340 "seccompProfile": { 4341 "allOf": [ 4342 { 4343 "$ref": "#/components/schemas/io.k8s.api.core.v1.SeccompProfile" 4344 } 4345 ], 4346 "description": "The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options. Note that this field cannot be set when spec.os.name is windows." 4347 }, 4348 "windowsOptions": { 4349 "allOf": [ 4350 { 4351 "$ref": "#/components/schemas/io.k8s.api.core.v1.WindowsSecurityContextOptions" 4352 } 4353 ], 4354 "description": "The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. Note that this field cannot be set when spec.os.name is linux." 4355 } 4356 }, 4357 "type": "object" 4358 }, 4359 "io.k8s.api.core.v1.ServiceAccountTokenProjection": { 4360 "description": "ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).", 4361 "properties": { 4362 "audience": { 4363 "description": "audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.", 4364 "type": "string" 4365 }, 4366 "expirationSeconds": { 4367 "description": "expirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.", 4368 "format": "int64", 4369 "type": "integer" 4370 }, 4371 "path": { 4372 "default": "", 4373 "description": "path is the path relative to the mount point of the file to project the token into.", 4374 "type": "string" 4375 } 4376 }, 4377 "required": [ 4378 "path" 4379 ], 4380 "type": "object" 4381 }, 4382 "io.k8s.api.core.v1.StorageOSVolumeSource": { 4383 "description": "Represents a StorageOS persistent volume resource.", 4384 "properties": { 4385 "fsType": { 4386 "description": "fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", 4387 "type": "string" 4388 }, 4389 "readOnly": { 4390 "description": "readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", 4391 "type": "boolean" 4392 }, 4393 "secretRef": { 4394 "allOf": [ 4395 { 4396 "$ref": "#/components/schemas/io.k8s.api.core.v1.LocalObjectReference" 4397 } 4398 ], 4399 "description": "secretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted." 4400 }, 4401 "volumeName": { 4402 "description": "volumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", 4403 "type": "string" 4404 }, 4405 "volumeNamespace": { 4406 "description": "volumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", 4407 "type": "string" 4408 } 4409 }, 4410 "type": "object" 4411 }, 4412 "io.k8s.api.core.v1.Sysctl": { 4413 "description": "Sysctl defines a kernel parameter to be set", 4414 "properties": { 4415 "name": { 4416 "default": "", 4417 "description": "Name of a property to set", 4418 "type": "string" 4419 }, 4420 "value": { 4421 "default": "", 4422 "description": "Value of a property to set", 4423 "type": "string" 4424 } 4425 }, 4426 "required": [ 4427 "name", 4428 "value" 4429 ], 4430 "type": "object" 4431 }, 4432 "io.k8s.api.core.v1.TCPSocketAction": { 4433 "description": "TCPSocketAction describes an action based on opening a socket", 4434 "properties": { 4435 "host": { 4436 "description": "Optional: Host name to connect to, defaults to the pod IP.", 4437 "type": "string" 4438 }, 4439 "port": { 4440 "allOf": [ 4441 { 4442 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.util.intstr.IntOrString" 4443 } 4444 ], 4445 "default": {}, 4446 "description": "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME." 4447 } 4448 }, 4449 "required": [ 4450 "port" 4451 ], 4452 "type": "object" 4453 }, 4454 "io.k8s.api.core.v1.Toleration": { 4455 "description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.", 4456 "properties": { 4457 "effect": { 4458 "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.", 4459 "type": "string" 4460 }, 4461 "key": { 4462 "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.", 4463 "type": "string" 4464 }, 4465 "operator": { 4466 "description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.", 4467 "type": "string" 4468 }, 4469 "tolerationSeconds": { 4470 "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.", 4471 "format": "int64", 4472 "type": "integer" 4473 }, 4474 "value": { 4475 "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.", 4476 "type": "string" 4477 } 4478 }, 4479 "type": "object" 4480 }, 4481 "io.k8s.api.core.v1.TopologySpreadConstraint": { 4482 "description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.", 4483 "properties": { 4484 "labelSelector": { 4485 "allOf": [ 4486 { 4487 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector" 4488 } 4489 ], 4490 "description": "LabelSelector is used to find matching pods. Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain." 4491 }, 4492 "matchLabelKeys": { 4493 "description": "MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated. The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod. Keys that don't exist in the incoming pod labels will be ignored. A null or empty list means only match against labelSelector.", 4494 "items": { 4495 "default": "", 4496 "type": "string" 4497 }, 4498 "type": "array", 4499 "x-kubernetes-list-type": "atomic" 4500 }, 4501 "maxSkew": { 4502 "default": 0, 4503 "description": "MaxSkew describes the degree to which pods may be unevenly distributed. When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum. The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1. | zone1 | zone2 | zone3 | | P P | P P | P | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone. When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence to topologies that satisfy it. It's a required field. Default value is 1 and 0 is not allowed.", 4504 "format": "int32", 4505 "type": "integer" 4506 }, 4507 "minDomains": { 4508 "description": "MinDomains indicates a minimum number of eligible domains. When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats \"global minimum\" as 0, and then the calculation of Skew is performed. And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling. As a result, when the number of eligible domains is less than minDomains, scheduler won't schedule more than maxSkew Pods to those domains. If value is nil, the constraint behaves as if MinDomains is equal to 1. Valid values are integers greater than 0. When value is not nil, WhenUnsatisfiable must be DoNotSchedule.\n\nFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | | P P | P P | P P | The number of domains is less than 5(MinDomains), so \"global minimum\" is treated as 0. In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew.\n\nThis is a beta field and requires the MinDomainsInPodTopologySpread feature gate to be enabled (enabled by default).", 4509 "format": "int32", 4510 "type": "integer" 4511 }, 4512 "nodeAffinityPolicy": { 4513 "description": "NodeAffinityPolicy indicates how we will treat Pod's nodeAffinity/nodeSelector when calculating pod topology spread skew. Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations. - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations.\n\nIf this value is nil, the behavior is equivalent to the Honor policy. This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.", 4514 "type": "string" 4515 }, 4516 "nodeTaintsPolicy": { 4517 "description": "NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew. Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included. - Ignore: node taints are ignored. All nodes are included.\n\nIf this value is nil, the behavior is equivalent to the Ignore policy. This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.", 4518 "type": "string" 4519 }, 4520 "topologyKey": { 4521 "default": "", 4522 "description": "TopologyKey is the key of node labels. Nodes that have a label with this key and identical values are considered to be in the same topology. We consider each <key, value> as a \"bucket\", and try to put balanced number of pods into each bucket. We define a domain as a particular instance of a topology. Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy. e.g. If TopologyKey is \"kubernetes.io/hostname\", each Node is a domain of that topology. And, if TopologyKey is \"topology.kubernetes.io/zone\", each zone is a domain of that topology. It's a required field.", 4523 "type": "string" 4524 }, 4525 "whenUnsatisfiable": { 4526 "default": "", 4527 "description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it. - ScheduleAnyway tells the scheduler to schedule the pod in any location,\n but giving higher precedence to topologies that would help reduce the\n skew.\nA constraint is considered \"Unsatisfiable\" for an incoming pod if and only if every possible node assignment for that pod would violate \"MaxSkew\" on some topology. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P | P | P | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler won't make it *more* imbalanced. It's a required field.", 4528 "type": "string" 4529 } 4530 }, 4531 "required": [ 4532 "maxSkew", 4533 "topologyKey", 4534 "whenUnsatisfiable" 4535 ], 4536 "type": "object" 4537 }, 4538 "io.k8s.api.core.v1.TypedLocalObjectReference": { 4539 "description": "TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.", 4540 "properties": { 4541 "apiGroup": { 4542 "description": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.", 4543 "type": "string" 4544 }, 4545 "kind": { 4546 "default": "", 4547 "description": "Kind is the type of resource being referenced", 4548 "type": "string" 4549 }, 4550 "name": { 4551 "default": "", 4552 "description": "Name is the name of resource being referenced", 4553 "type": "string" 4554 } 4555 }, 4556 "required": [ 4557 "kind", 4558 "name" 4559 ], 4560 "type": "object", 4561 "x-kubernetes-map-type": "atomic" 4562 }, 4563 "io.k8s.api.core.v1.TypedObjectReference": { 4564 "properties": { 4565 "apiGroup": { 4566 "description": "APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.", 4567 "type": "string" 4568 }, 4569 "kind": { 4570 "default": "", 4571 "description": "Kind is the type of resource being referenced", 4572 "type": "string" 4573 }, 4574 "name": { 4575 "default": "", 4576 "description": "Name is the name of resource being referenced", 4577 "type": "string" 4578 }, 4579 "namespace": { 4580 "description": "Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled.", 4581 "type": "string" 4582 } 4583 }, 4584 "required": [ 4585 "kind", 4586 "name" 4587 ], 4588 "type": "object" 4589 }, 4590 "io.k8s.api.core.v1.Volume": { 4591 "description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.", 4592 "properties": { 4593 "awsElasticBlockStore": { 4594 "allOf": [ 4595 { 4596 "$ref": "#/components/schemas/io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource" 4597 } 4598 ], 4599 "description": "awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore" 4600 }, 4601 "azureDisk": { 4602 "allOf": [ 4603 { 4604 "$ref": "#/components/schemas/io.k8s.api.core.v1.AzureDiskVolumeSource" 4605 } 4606 ], 4607 "description": "azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod." 4608 }, 4609 "azureFile": { 4610 "allOf": [ 4611 { 4612 "$ref": "#/components/schemas/io.k8s.api.core.v1.AzureFileVolumeSource" 4613 } 4614 ], 4615 "description": "azureFile represents an Azure File Service mount on the host and bind mount to the pod." 4616 }, 4617 "cephfs": { 4618 "allOf": [ 4619 { 4620 "$ref": "#/components/schemas/io.k8s.api.core.v1.CephFSVolumeSource" 4621 } 4622 ], 4623 "description": "cephFS represents a Ceph FS mount on the host that shares a pod's lifetime" 4624 }, 4625 "cinder": { 4626 "allOf": [ 4627 { 4628 "$ref": "#/components/schemas/io.k8s.api.core.v1.CinderVolumeSource" 4629 } 4630 ], 4631 "description": "cinder represents a cinder volume attached and mounted on kubelets host machine. More info: https://examples.k8s.io/mysql-cinder-pd/README.md" 4632 }, 4633 "configMap": { 4634 "allOf": [ 4635 { 4636 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapVolumeSource" 4637 } 4638 ], 4639 "description": "configMap represents a configMap that should populate this volume" 4640 }, 4641 "csi": { 4642 "allOf": [ 4643 { 4644 "$ref": "#/components/schemas/io.k8s.api.core.v1.CSIVolumeSource" 4645 } 4646 ], 4647 "description": "csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)." 4648 }, 4649 "downwardAPI": { 4650 "allOf": [ 4651 { 4652 "$ref": "#/components/schemas/io.k8s.api.core.v1.DownwardAPIVolumeSource" 4653 } 4654 ], 4655 "description": "downwardAPI represents downward API about the pod that should populate this volume" 4656 }, 4657 "emptyDir": { 4658 "allOf": [ 4659 { 4660 "$ref": "#/components/schemas/io.k8s.api.core.v1.EmptyDirVolumeSource" 4661 } 4662 ], 4663 "description": "emptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir" 4664 }, 4665 "ephemeral": { 4666 "allOf": [ 4667 { 4668 "$ref": "#/components/schemas/io.k8s.api.core.v1.EphemeralVolumeSource" 4669 } 4670 ], 4671 "description": "ephemeral represents a volume that is handled by a cluster storage driver. The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removed.\n\nUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity\n tracking are needed,\nc) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through\n a PersistentVolumeClaim (see EphemeralVolumeSource for more\n information on the connection between this volume type\n and PersistentVolumeClaim).\n\nUse PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual pod.\n\nUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more information.\n\nA pod can use both types of ephemeral volumes and persistent volumes at the same time." 4672 }, 4673 "fc": { 4674 "allOf": [ 4675 { 4676 "$ref": "#/components/schemas/io.k8s.api.core.v1.FCVolumeSource" 4677 } 4678 ], 4679 "description": "fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod." 4680 }, 4681 "flexVolume": { 4682 "allOf": [ 4683 { 4684 "$ref": "#/components/schemas/io.k8s.api.core.v1.FlexVolumeSource" 4685 } 4686 ], 4687 "description": "flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin." 4688 }, 4689 "flocker": { 4690 "allOf": [ 4691 { 4692 "$ref": "#/components/schemas/io.k8s.api.core.v1.FlockerVolumeSource" 4693 } 4694 ], 4695 "description": "flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running" 4696 }, 4697 "gcePersistentDisk": { 4698 "allOf": [ 4699 { 4700 "$ref": "#/components/schemas/io.k8s.api.core.v1.GCEPersistentDiskVolumeSource" 4701 } 4702 ], 4703 "description": "gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk" 4704 }, 4705 "gitRepo": { 4706 "allOf": [ 4707 { 4708 "$ref": "#/components/schemas/io.k8s.api.core.v1.GitRepoVolumeSource" 4709 } 4710 ], 4711 "description": "gitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container." 4712 }, 4713 "glusterfs": { 4714 "allOf": [ 4715 { 4716 "$ref": "#/components/schemas/io.k8s.api.core.v1.GlusterfsVolumeSource" 4717 } 4718 ], 4719 "description": "glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/glusterfs/README.md" 4720 }, 4721 "hostPath": { 4722 "allOf": [ 4723 { 4724 "$ref": "#/components/schemas/io.k8s.api.core.v1.HostPathVolumeSource" 4725 } 4726 ], 4727 "description": "hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath" 4728 }, 4729 "iscsi": { 4730 "allOf": [ 4731 { 4732 "$ref": "#/components/schemas/io.k8s.api.core.v1.ISCSIVolumeSource" 4733 } 4734 ], 4735 "description": "iscsi represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://examples.k8s.io/volumes/iscsi/README.md" 4736 }, 4737 "name": { 4738 "default": "", 4739 "description": "name of the volume. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", 4740 "type": "string" 4741 }, 4742 "nfs": { 4743 "allOf": [ 4744 { 4745 "$ref": "#/components/schemas/io.k8s.api.core.v1.NFSVolumeSource" 4746 } 4747 ], 4748 "description": "nfs represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs" 4749 }, 4750 "persistentVolumeClaim": { 4751 "allOf": [ 4752 { 4753 "$ref": "#/components/schemas/io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource" 4754 } 4755 ], 4756 "description": "persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims" 4757 }, 4758 "photonPersistentDisk": { 4759 "allOf": [ 4760 { 4761 "$ref": "#/components/schemas/io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource" 4762 } 4763 ], 4764 "description": "photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine" 4765 }, 4766 "portworxVolume": { 4767 "allOf": [ 4768 { 4769 "$ref": "#/components/schemas/io.k8s.api.core.v1.PortworxVolumeSource" 4770 } 4771 ], 4772 "description": "portworxVolume represents a portworx volume attached and mounted on kubelets host machine" 4773 }, 4774 "projected": { 4775 "allOf": [ 4776 { 4777 "$ref": "#/components/schemas/io.k8s.api.core.v1.ProjectedVolumeSource" 4778 } 4779 ], 4780 "description": "projected items for all in one resources secrets, configmaps, and downward API" 4781 }, 4782 "quobyte": { 4783 "allOf": [ 4784 { 4785 "$ref": "#/components/schemas/io.k8s.api.core.v1.QuobyteVolumeSource" 4786 } 4787 ], 4788 "description": "quobyte represents a Quobyte mount on the host that shares a pod's lifetime" 4789 }, 4790 "rbd": { 4791 "allOf": [ 4792 { 4793 "$ref": "#/components/schemas/io.k8s.api.core.v1.RBDVolumeSource" 4794 } 4795 ], 4796 "description": "rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://examples.k8s.io/volumes/rbd/README.md" 4797 }, 4798 "scaleIO": { 4799 "allOf": [ 4800 { 4801 "$ref": "#/components/schemas/io.k8s.api.core.v1.ScaleIOVolumeSource" 4802 } 4803 ], 4804 "description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes." 4805 }, 4806 "secret": { 4807 "allOf": [ 4808 { 4809 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretVolumeSource" 4810 } 4811 ], 4812 "description": "secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret" 4813 }, 4814 "storageos": { 4815 "allOf": [ 4816 { 4817 "$ref": "#/components/schemas/io.k8s.api.core.v1.StorageOSVolumeSource" 4818 } 4819 ], 4820 "description": "storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes." 4821 }, 4822 "vsphereVolume": { 4823 "allOf": [ 4824 { 4825 "$ref": "#/components/schemas/io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource" 4826 } 4827 ], 4828 "description": "vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine" 4829 } 4830 }, 4831 "required": [ 4832 "name" 4833 ], 4834 "type": "object" 4835 }, 4836 "io.k8s.api.core.v1.VolumeDevice": { 4837 "description": "volumeDevice describes a mapping of a raw block device within a container.", 4838 "properties": { 4839 "devicePath": { 4840 "default": "", 4841 "description": "devicePath is the path inside of the container that the device will be mapped to.", 4842 "type": "string" 4843 }, 4844 "name": { 4845 "default": "", 4846 "description": "name must match the name of a persistentVolumeClaim in the pod", 4847 "type": "string" 4848 } 4849 }, 4850 "required": [ 4851 "name", 4852 "devicePath" 4853 ], 4854 "type": "object" 4855 }, 4856 "io.k8s.api.core.v1.VolumeMount": { 4857 "description": "VolumeMount describes a mounting of a Volume within a container.", 4858 "properties": { 4859 "mountPath": { 4860 "default": "", 4861 "description": "Path within the container at which the volume should be mounted. Must not contain ':'.", 4862 "type": "string" 4863 }, 4864 "mountPropagation": { 4865 "description": "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.", 4866 "type": "string" 4867 }, 4868 "name": { 4869 "default": "", 4870 "description": "This must match the Name of a Volume.", 4871 "type": "string" 4872 }, 4873 "readOnly": { 4874 "description": "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.", 4875 "type": "boolean" 4876 }, 4877 "subPath": { 4878 "description": "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).", 4879 "type": "string" 4880 }, 4881 "subPathExpr": { 4882 "description": "Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to \"\" (volume's root). SubPathExpr and SubPath are mutually exclusive.", 4883 "type": "string" 4884 } 4885 }, 4886 "required": [ 4887 "name", 4888 "mountPath" 4889 ], 4890 "type": "object" 4891 }, 4892 "io.k8s.api.core.v1.VolumeProjection": { 4893 "description": "Projection that may be projected along with other supported volume types", 4894 "properties": { 4895 "configMap": { 4896 "allOf": [ 4897 { 4898 "$ref": "#/components/schemas/io.k8s.api.core.v1.ConfigMapProjection" 4899 } 4900 ], 4901 "description": "configMap information about the configMap data to project" 4902 }, 4903 "downwardAPI": { 4904 "allOf": [ 4905 { 4906 "$ref": "#/components/schemas/io.k8s.api.core.v1.DownwardAPIProjection" 4907 } 4908 ], 4909 "description": "downwardAPI information about the downwardAPI data to project" 4910 }, 4911 "secret": { 4912 "allOf": [ 4913 { 4914 "$ref": "#/components/schemas/io.k8s.api.core.v1.SecretProjection" 4915 } 4916 ], 4917 "description": "secret information about the secret data to project" 4918 }, 4919 "serviceAccountToken": { 4920 "allOf": [ 4921 { 4922 "$ref": "#/components/schemas/io.k8s.api.core.v1.ServiceAccountTokenProjection" 4923 } 4924 ], 4925 "description": "serviceAccountToken is information about the serviceAccountToken data to project" 4926 } 4927 }, 4928 "type": "object" 4929 }, 4930 "io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource": { 4931 "description": "Represents a vSphere volume resource.", 4932 "properties": { 4933 "fsType": { 4934 "description": "fsType is filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", 4935 "type": "string" 4936 }, 4937 "storagePolicyID": { 4938 "description": "storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.", 4939 "type": "string" 4940 }, 4941 "storagePolicyName": { 4942 "description": "storagePolicyName is the storage Policy Based Management (SPBM) profile name.", 4943 "type": "string" 4944 }, 4945 "volumePath": { 4946 "default": "", 4947 "description": "volumePath is the path that identifies vSphere volume vmdk", 4948 "type": "string" 4949 } 4950 }, 4951 "required": [ 4952 "volumePath" 4953 ], 4954 "type": "object" 4955 }, 4956 "io.k8s.api.core.v1.WeightedPodAffinityTerm": { 4957 "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", 4958 "properties": { 4959 "podAffinityTerm": { 4960 "allOf": [ 4961 { 4962 "$ref": "#/components/schemas/io.k8s.api.core.v1.PodAffinityTerm" 4963 } 4964 ], 4965 "default": {}, 4966 "description": "Required. A pod affinity term, associated with the corresponding weight." 4967 }, 4968 "weight": { 4969 "default": 0, 4970 "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.", 4971 "format": "int32", 4972 "type": "integer" 4973 } 4974 }, 4975 "required": [ 4976 "weight", 4977 "podAffinityTerm" 4978 ], 4979 "type": "object" 4980 }, 4981 "io.k8s.api.core.v1.WindowsSecurityContextOptions": { 4982 "description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.", 4983 "properties": { 4984 "gmsaCredentialSpec": { 4985 "description": "GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field.", 4986 "type": "string" 4987 }, 4988 "gmsaCredentialSpecName": { 4989 "description": "GMSACredentialSpecName is the name of the GMSA credential spec to use.", 4990 "type": "string" 4991 }, 4992 "hostProcess": { 4993 "description": "HostProcess determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the WindowsHostProcessContainers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.", 4994 "type": "boolean" 4995 }, 4996 "runAsUserName": { 4997 "description": "The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", 4998 "type": "string" 4999 } 5000 }, 5001 "type": "object" 5002 }, 5003 "io.k8s.apimachinery.pkg.api.resource.Quantity": { 5004 "description": "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` <quantity> ::= <signedNumber><suffix>\n\n\t(Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n\n<digit> ::= 0 | 1 | ... | 9 <digits> ::= <digit> | <digit><digits> <number> ::= <digits> | <digits>.<digits> | <digits>. | .<digits> <sign> ::= \"+\" | \"-\" <signedNumber> ::= <number> | <sign><number> <suffix> ::= <binarySI> | <decimalExponent> | <decimalSI> <binarySI> ::= Ki | Mi | Gi | Ti | Pi | Ei\n\n\t(International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n\n<decimalSI> ::= m | \"\" | k | M | G | T | P | E\n\n\t(Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n\n<decimalExponent> ::= \"e\" <signedNumber> | \"E\" <signedNumber> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", 5005 "oneOf": [ 5006 { 5007 "type": "string" 5008 }, 5009 { 5010 "type": "number" 5011 } 5012 ] 5013 }, 5014 "io.k8s.apimachinery.pkg.apis.meta.v1.APIResource": { 5015 "description": "APIResource specifies the name of a resource and whether it is namespaced.", 5016 "properties": { 5017 "categories": { 5018 "description": "categories is a list of the grouped resources this resource belongs to (e.g. 'all')", 5019 "items": { 5020 "default": "", 5021 "type": "string" 5022 }, 5023 "type": "array" 5024 }, 5025 "group": { 5026 "description": "group is the preferred group of the resource. Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale\".", 5027 "type": "string" 5028 }, 5029 "kind": { 5030 "default": "", 5031 "description": "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')", 5032 "type": "string" 5033 }, 5034 "name": { 5035 "default": "", 5036 "description": "name is the plural name of the resource.", 5037 "type": "string" 5038 }, 5039 "namespaced": { 5040 "default": false, 5041 "description": "namespaced indicates if a resource is namespaced or not.", 5042 "type": "boolean" 5043 }, 5044 "shortNames": { 5045 "description": "shortNames is a list of suggested short names of the resource.", 5046 "items": { 5047 "default": "", 5048 "type": "string" 5049 }, 5050 "type": "array" 5051 }, 5052 "singularName": { 5053 "default": "", 5054 "description": "singularName is the singular name of the resource. This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.", 5055 "type": "string" 5056 }, 5057 "storageVersionHash": { 5058 "description": "The hash value of the storage version, the version this resource is converted to when written to the data store. Value must be treated as opaque by clients. Only equality comparison on the value is valid. This is an alpha feature and may change or be removed in the future. The field is populated by the apiserver only if the StorageVersionHash feature gate is enabled. This field will remain optional even if it graduates.", 5059 "type": "string" 5060 }, 5061 "verbs": { 5062 "description": "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)", 5063 "items": { 5064 "default": "", 5065 "type": "string" 5066 }, 5067 "type": "array" 5068 }, 5069 "version": { 5070 "description": "version is the preferred version of the resource. Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)\".", 5071 "type": "string" 5072 } 5073 }, 5074 "required": [ 5075 "name", 5076 "singularName", 5077 "namespaced", 5078 "kind", 5079 "verbs" 5080 ], 5081 "type": "object" 5082 }, 5083 "io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList": { 5084 "description": "APIResourceList is a list of APIResource, it is used to expose the name of the resources supported in a specific group and version, and if the resource is namespaced.", 5085 "properties": { 5086 "apiVersion": { 5087 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", 5088 "type": "string" 5089 }, 5090 "groupVersion": { 5091 "default": "", 5092 "description": "groupVersion is the group and version this APIResourceList is for.", 5093 "type": "string" 5094 }, 5095 "kind": { 5096 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 5097 "type": "string" 5098 }, 5099 "resources": { 5100 "description": "resources contains the name of the resources and if they are namespaced.", 5101 "items": { 5102 "allOf": [ 5103 { 5104 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResource" 5105 } 5106 ], 5107 "default": {} 5108 }, 5109 "type": "array" 5110 } 5111 }, 5112 "required": [ 5113 "groupVersion", 5114 "resources" 5115 ], 5116 "type": "object", 5117 "x-kubernetes-group-version-kind": [ 5118 { 5119 "group": "", 5120 "kind": "APIResourceList", 5121 "version": "v1" 5122 } 5123 ] 5124 }, 5125 "io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions": { 5126 "description": "DeleteOptions may be provided when deleting an API object.", 5127 "properties": { 5128 "apiVersion": { 5129 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", 5130 "type": "string" 5131 }, 5132 "dryRun": { 5133 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 5134 "items": { 5135 "default": "", 5136 "type": "string" 5137 }, 5138 "type": "array" 5139 }, 5140 "gracePeriodSeconds": { 5141 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 5142 "format": "int64", 5143 "type": "integer" 5144 }, 5145 "kind": { 5146 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 5147 "type": "string" 5148 }, 5149 "orphanDependents": { 5150 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 5151 "type": "boolean" 5152 }, 5153 "preconditions": { 5154 "allOf": [ 5155 { 5156 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions" 5157 } 5158 ], 5159 "description": "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned." 5160 }, 5161 "propagationPolicy": { 5162 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 5163 "type": "string" 5164 } 5165 }, 5166 "type": "object", 5167 "x-kubernetes-group-version-kind": [ 5168 { 5169 "group": "", 5170 "kind": "DeleteOptions", 5171 "version": "v1" 5172 }, 5173 { 5174 "group": "admission.k8s.io", 5175 "kind": "DeleteOptions", 5176 "version": "v1" 5177 }, 5178 { 5179 "group": "admission.k8s.io", 5180 "kind": "DeleteOptions", 5181 "version": "v1beta1" 5182 }, 5183 { 5184 "group": "admissionregistration.k8s.io", 5185 "kind": "DeleteOptions", 5186 "version": "v1" 5187 }, 5188 { 5189 "group": "admissionregistration.k8s.io", 5190 "kind": "DeleteOptions", 5191 "version": "v1alpha1" 5192 }, 5193 { 5194 "group": "admissionregistration.k8s.io", 5195 "kind": "DeleteOptions", 5196 "version": "v1beta1" 5197 }, 5198 { 5199 "group": "apiextensions.k8s.io", 5200 "kind": "DeleteOptions", 5201 "version": "v1" 5202 }, 5203 { 5204 "group": "apiextensions.k8s.io", 5205 "kind": "DeleteOptions", 5206 "version": "v1beta1" 5207 }, 5208 { 5209 "group": "apiregistration.k8s.io", 5210 "kind": "DeleteOptions", 5211 "version": "v1" 5212 }, 5213 { 5214 "group": "apiregistration.k8s.io", 5215 "kind": "DeleteOptions", 5216 "version": "v1beta1" 5217 }, 5218 { 5219 "group": "apps", 5220 "kind": "DeleteOptions", 5221 "version": "v1" 5222 }, 5223 { 5224 "group": "apps", 5225 "kind": "DeleteOptions", 5226 "version": "v1beta1" 5227 }, 5228 { 5229 "group": "apps", 5230 "kind": "DeleteOptions", 5231 "version": "v1beta2" 5232 }, 5233 { 5234 "group": "authentication.k8s.io", 5235 "kind": "DeleteOptions", 5236 "version": "v1" 5237 }, 5238 { 5239 "group": "authentication.k8s.io", 5240 "kind": "DeleteOptions", 5241 "version": "v1alpha1" 5242 }, 5243 { 5244 "group": "authentication.k8s.io", 5245 "kind": "DeleteOptions", 5246 "version": "v1beta1" 5247 }, 5248 { 5249 "group": "authorization.k8s.io", 5250 "kind": "DeleteOptions", 5251 "version": "v1" 5252 }, 5253 { 5254 "group": "authorization.k8s.io", 5255 "kind": "DeleteOptions", 5256 "version": "v1beta1" 5257 }, 5258 { 5259 "group": "autoscaling", 5260 "kind": "DeleteOptions", 5261 "version": "v1" 5262 }, 5263 { 5264 "group": "autoscaling", 5265 "kind": "DeleteOptions", 5266 "version": "v2" 5267 }, 5268 { 5269 "group": "autoscaling", 5270 "kind": "DeleteOptions", 5271 "version": "v2beta1" 5272 }, 5273 { 5274 "group": "autoscaling", 5275 "kind": "DeleteOptions", 5276 "version": "v2beta2" 5277 }, 5278 { 5279 "group": "batch", 5280 "kind": "DeleteOptions", 5281 "version": "v1" 5282 }, 5283 { 5284 "group": "batch", 5285 "kind": "DeleteOptions", 5286 "version": "v1beta1" 5287 }, 5288 { 5289 "group": "certificates.k8s.io", 5290 "kind": "DeleteOptions", 5291 "version": "v1" 5292 }, 5293 { 5294 "group": "certificates.k8s.io", 5295 "kind": "DeleteOptions", 5296 "version": "v1beta1" 5297 }, 5298 { 5299 "group": "coordination.k8s.io", 5300 "kind": "DeleteOptions", 5301 "version": "v1" 5302 }, 5303 { 5304 "group": "coordination.k8s.io", 5305 "kind": "DeleteOptions", 5306 "version": "v1beta1" 5307 }, 5308 { 5309 "group": "discovery.k8s.io", 5310 "kind": "DeleteOptions", 5311 "version": "v1" 5312 }, 5313 { 5314 "group": "discovery.k8s.io", 5315 "kind": "DeleteOptions", 5316 "version": "v1beta1" 5317 }, 5318 { 5319 "group": "events.k8s.io", 5320 "kind": "DeleteOptions", 5321 "version": "v1" 5322 }, 5323 { 5324 "group": "events.k8s.io", 5325 "kind": "DeleteOptions", 5326 "version": "v1beta1" 5327 }, 5328 { 5329 "group": "extensions", 5330 "kind": "DeleteOptions", 5331 "version": "v1beta1" 5332 }, 5333 { 5334 "group": "flowcontrol.apiserver.k8s.io", 5335 "kind": "DeleteOptions", 5336 "version": "v1alpha1" 5337 }, 5338 { 5339 "group": "flowcontrol.apiserver.k8s.io", 5340 "kind": "DeleteOptions", 5341 "version": "v1beta1" 5342 }, 5343 { 5344 "group": "flowcontrol.apiserver.k8s.io", 5345 "kind": "DeleteOptions", 5346 "version": "v1beta2" 5347 }, 5348 { 5349 "group": "flowcontrol.apiserver.k8s.io", 5350 "kind": "DeleteOptions", 5351 "version": "v1beta3" 5352 }, 5353 { 5354 "group": "imagepolicy.k8s.io", 5355 "kind": "DeleteOptions", 5356 "version": "v1alpha1" 5357 }, 5358 { 5359 "group": "internal.apiserver.k8s.io", 5360 "kind": "DeleteOptions", 5361 "version": "v1alpha1" 5362 }, 5363 { 5364 "group": "networking.k8s.io", 5365 "kind": "DeleteOptions", 5366 "version": "v1" 5367 }, 5368 { 5369 "group": "networking.k8s.io", 5370 "kind": "DeleteOptions", 5371 "version": "v1alpha1" 5372 }, 5373 { 5374 "group": "networking.k8s.io", 5375 "kind": "DeleteOptions", 5376 "version": "v1beta1" 5377 }, 5378 { 5379 "group": "node.k8s.io", 5380 "kind": "DeleteOptions", 5381 "version": "v1" 5382 }, 5383 { 5384 "group": "node.k8s.io", 5385 "kind": "DeleteOptions", 5386 "version": "v1alpha1" 5387 }, 5388 { 5389 "group": "node.k8s.io", 5390 "kind": "DeleteOptions", 5391 "version": "v1beta1" 5392 }, 5393 { 5394 "group": "policy", 5395 "kind": "DeleteOptions", 5396 "version": "v1" 5397 }, 5398 { 5399 "group": "policy", 5400 "kind": "DeleteOptions", 5401 "version": "v1beta1" 5402 }, 5403 { 5404 "group": "rbac.authorization.k8s.io", 5405 "kind": "DeleteOptions", 5406 "version": "v1" 5407 }, 5408 { 5409 "group": "rbac.authorization.k8s.io", 5410 "kind": "DeleteOptions", 5411 "version": "v1alpha1" 5412 }, 5413 { 5414 "group": "rbac.authorization.k8s.io", 5415 "kind": "DeleteOptions", 5416 "version": "v1beta1" 5417 }, 5418 { 5419 "group": "resource.k8s.io", 5420 "kind": "DeleteOptions", 5421 "version": "v1alpha1" 5422 }, 5423 { 5424 "group": "scheduling.k8s.io", 5425 "kind": "DeleteOptions", 5426 "version": "v1" 5427 }, 5428 { 5429 "group": "scheduling.k8s.io", 5430 "kind": "DeleteOptions", 5431 "version": "v1alpha1" 5432 }, 5433 { 5434 "group": "scheduling.k8s.io", 5435 "kind": "DeleteOptions", 5436 "version": "v1beta1" 5437 }, 5438 { 5439 "group": "storage.k8s.io", 5440 "kind": "DeleteOptions", 5441 "version": "v1" 5442 }, 5443 { 5444 "group": "storage.k8s.io", 5445 "kind": "DeleteOptions", 5446 "version": "v1alpha1" 5447 }, 5448 { 5449 "group": "storage.k8s.io", 5450 "kind": "DeleteOptions", 5451 "version": "v1beta1" 5452 } 5453 ] 5454 }, 5455 "io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1": { 5456 "description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff", 5457 "type": "object" 5458 }, 5459 "io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector": { 5460 "description": "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", 5461 "properties": { 5462 "matchExpressions": { 5463 "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.", 5464 "items": { 5465 "allOf": [ 5466 { 5467 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement" 5468 } 5469 ], 5470 "default": {} 5471 }, 5472 "type": "array" 5473 }, 5474 "matchLabels": { 5475 "additionalProperties": { 5476 "default": "", 5477 "type": "string" 5478 }, 5479 "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", 5480 "type": "object" 5481 } 5482 }, 5483 "type": "object", 5484 "x-kubernetes-map-type": "atomic" 5485 }, 5486 "io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement": { 5487 "description": "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", 5488 "properties": { 5489 "key": { 5490 "default": "", 5491 "description": "key is the label key that the selector applies to.", 5492 "type": "string", 5493 "x-kubernetes-patch-merge-key": "key", 5494 "x-kubernetes-patch-strategy": "merge" 5495 }, 5496 "operator": { 5497 "default": "", 5498 "description": "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", 5499 "type": "string" 5500 }, 5501 "values": { 5502 "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", 5503 "items": { 5504 "default": "", 5505 "type": "string" 5506 }, 5507 "type": "array" 5508 } 5509 }, 5510 "required": [ 5511 "key", 5512 "operator" 5513 ], 5514 "type": "object" 5515 }, 5516 "io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta": { 5517 "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.", 5518 "properties": { 5519 "continue": { 5520 "description": "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.", 5521 "type": "string" 5522 }, 5523 "remainingItemCount": { 5524 "description": "remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.", 5525 "format": "int64", 5526 "type": "integer" 5527 }, 5528 "resourceVersion": { 5529 "description": "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", 5530 "type": "string" 5531 }, 5532 "selfLink": { 5533 "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.", 5534 "type": "string" 5535 } 5536 }, 5537 "type": "object" 5538 }, 5539 "io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry": { 5540 "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.", 5541 "properties": { 5542 "apiVersion": { 5543 "description": "APIVersion defines the version of this resource that this field set applies to. The format is \"group/version\" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.", 5544 "type": "string" 5545 }, 5546 "fieldsType": { 5547 "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"", 5548 "type": "string" 5549 }, 5550 "fieldsV1": { 5551 "allOf": [ 5552 { 5553 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1" 5554 } 5555 ], 5556 "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type." 5557 }, 5558 "manager": { 5559 "description": "Manager is an identifier of the workflow managing these fields.", 5560 "type": "string" 5561 }, 5562 "operation": { 5563 "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.", 5564 "type": "string" 5565 }, 5566 "subresource": { 5567 "description": "Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.", 5568 "type": "string" 5569 }, 5570 "time": { 5571 "allOf": [ 5572 { 5573 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" 5574 } 5575 ], 5576 "description": "Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over." 5577 } 5578 }, 5579 "type": "object" 5580 }, 5581 "io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta": { 5582 "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", 5583 "properties": { 5584 "annotations": { 5585 "additionalProperties": { 5586 "default": "", 5587 "type": "string" 5588 }, 5589 "description": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", 5590 "type": "object" 5591 }, 5592 "creationTimestamp": { 5593 "allOf": [ 5594 { 5595 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" 5596 } 5597 ], 5598 "default": {}, 5599 "description": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" 5600 }, 5601 "deletionGracePeriodSeconds": { 5602 "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", 5603 "format": "int64", 5604 "type": "integer" 5605 }, 5606 "deletionTimestamp": { 5607 "allOf": [ 5608 { 5609 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time" 5610 } 5611 ], 5612 "description": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata" 5613 }, 5614 "finalizers": { 5615 "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.", 5616 "items": { 5617 "default": "", 5618 "type": "string" 5619 }, 5620 "type": "array", 5621 "x-kubernetes-patch-strategy": "merge" 5622 }, 5623 "generateName": { 5624 "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will return a 409.\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency", 5625 "type": "string" 5626 }, 5627 "generation": { 5628 "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", 5629 "format": "int64", 5630 "type": "integer" 5631 }, 5632 "labels": { 5633 "additionalProperties": { 5634 "default": "", 5635 "type": "string" 5636 }, 5637 "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", 5638 "type": "object" 5639 }, 5640 "managedFields": { 5641 "description": "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like \"ci-cd\". The set of fields is always in the version that the workflow used when modifying the object.", 5642 "items": { 5643 "allOf": [ 5644 { 5645 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry" 5646 } 5647 ], 5648 "default": {} 5649 }, 5650 "type": "array" 5651 }, 5652 "name": { 5653 "description": "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", 5654 "type": "string" 5655 }, 5656 "namespace": { 5657 "description": "Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", 5658 "type": "string" 5659 }, 5660 "ownerReferences": { 5661 "description": "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", 5662 "items": { 5663 "allOf": [ 5664 { 5665 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference" 5666 } 5667 ], 5668 "default": {} 5669 }, 5670 "type": "array", 5671 "x-kubernetes-patch-merge-key": "uid", 5672 "x-kubernetes-patch-strategy": "merge" 5673 }, 5674 "resourceVersion": { 5675 "description": "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency", 5676 "type": "string" 5677 }, 5678 "selfLink": { 5679 "description": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.", 5680 "type": "string" 5681 }, 5682 "uid": { 5683 "description": "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", 5684 "type": "string" 5685 } 5686 }, 5687 "type": "object" 5688 }, 5689 "io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference": { 5690 "description": "OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.", 5691 "properties": { 5692 "apiVersion": { 5693 "default": "", 5694 "description": "API version of the referent.", 5695 "type": "string" 5696 }, 5697 "blockOwnerDeletion": { 5698 "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", 5699 "type": "boolean" 5700 }, 5701 "controller": { 5702 "description": "If true, this reference points to the managing controller.", 5703 "type": "boolean" 5704 }, 5705 "kind": { 5706 "default": "", 5707 "description": "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 5708 "type": "string" 5709 }, 5710 "name": { 5711 "default": "", 5712 "description": "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", 5713 "type": "string" 5714 }, 5715 "uid": { 5716 "default": "", 5717 "description": "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", 5718 "type": "string" 5719 } 5720 }, 5721 "required": [ 5722 "apiVersion", 5723 "kind", 5724 "name", 5725 "uid" 5726 ], 5727 "type": "object", 5728 "x-kubernetes-map-type": "atomic" 5729 }, 5730 "io.k8s.apimachinery.pkg.apis.meta.v1.Patch": { 5731 "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", 5732 "type": "object" 5733 }, 5734 "io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions": { 5735 "description": "Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.", 5736 "properties": { 5737 "resourceVersion": { 5738 "description": "Specifies the target ResourceVersion", 5739 "type": "string" 5740 }, 5741 "uid": { 5742 "description": "Specifies the target UID.", 5743 "type": "string" 5744 } 5745 }, 5746 "type": "object" 5747 }, 5748 "io.k8s.apimachinery.pkg.apis.meta.v1.Status": { 5749 "description": "Status is a return value for calls that don't return other objects.", 5750 "properties": { 5751 "apiVersion": { 5752 "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", 5753 "type": "string" 5754 }, 5755 "code": { 5756 "description": "Suggested HTTP return code for this status, 0 if not set.", 5757 "format": "int32", 5758 "type": "integer" 5759 }, 5760 "details": { 5761 "allOf": [ 5762 { 5763 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails" 5764 } 5765 ], 5766 "description": "Extended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type." 5767 }, 5768 "kind": { 5769 "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 5770 "type": "string" 5771 }, 5772 "message": { 5773 "description": "A human-readable description of the status of this operation.", 5774 "type": "string" 5775 }, 5776 "metadata": { 5777 "allOf": [ 5778 { 5779 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta" 5780 } 5781 ], 5782 "default": {}, 5783 "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds" 5784 }, 5785 "reason": { 5786 "description": "A machine-readable description of why this operation is in the \"Failure\" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.", 5787 "type": "string" 5788 }, 5789 "status": { 5790 "description": "Status of the operation. One of: \"Success\" or \"Failure\". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status", 5791 "type": "string" 5792 } 5793 }, 5794 "type": "object", 5795 "x-kubernetes-group-version-kind": [ 5796 { 5797 "group": "", 5798 "kind": "Status", 5799 "version": "v1" 5800 }, 5801 { 5802 "group": "resource.k8s.io", 5803 "kind": "Status", 5804 "version": "v1alpha1" 5805 } 5806 ] 5807 }, 5808 "io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause": { 5809 "description": "StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.", 5810 "properties": { 5811 "field": { 5812 "description": "The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.\n\nExamples:\n \"name\" - the field \"name\" on the current resource\n \"items[0].name\" - the field \"name\" on the first array entry in \"items\"", 5813 "type": "string" 5814 }, 5815 "message": { 5816 "description": "A human-readable description of the cause of the error. This field may be presented as-is to a reader.", 5817 "type": "string" 5818 }, 5819 "reason": { 5820 "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.", 5821 "type": "string" 5822 } 5823 }, 5824 "type": "object" 5825 }, 5826 "io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails": { 5827 "description": "StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.", 5828 "properties": { 5829 "causes": { 5830 "description": "The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.", 5831 "items": { 5832 "allOf": [ 5833 { 5834 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause" 5835 } 5836 ], 5837 "default": {} 5838 }, 5839 "type": "array" 5840 }, 5841 "group": { 5842 "description": "The group attribute of the resource associated with the status StatusReason.", 5843 "type": "string" 5844 }, 5845 "kind": { 5846 "description": "The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", 5847 "type": "string" 5848 }, 5849 "name": { 5850 "description": "The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).", 5851 "type": "string" 5852 }, 5853 "retryAfterSeconds": { 5854 "description": "If specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action.", 5855 "format": "int32", 5856 "type": "integer" 5857 }, 5858 "uid": { 5859 "description": "UID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids", 5860 "type": "string" 5861 } 5862 }, 5863 "type": "object" 5864 }, 5865 "io.k8s.apimachinery.pkg.apis.meta.v1.Time": { 5866 "description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.", 5867 "format": "date-time", 5868 "type": "string" 5869 }, 5870 "io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent": { 5871 "description": "Event represents a single event to a watched resource.", 5872 "properties": { 5873 "object": { 5874 "allOf": [ 5875 { 5876 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.runtime.RawExtension" 5877 } 5878 ], 5879 "default": {}, 5880 "description": "Object is:\n * If Type is Added or Modified: the new state of the object.\n * If Type is Deleted: the state of the object immediately before deletion.\n * If Type is Error: *Status is recommended; other types may make sense\n depending on context." 5881 }, 5882 "type": { 5883 "default": "", 5884 "type": "string" 5885 } 5886 }, 5887 "required": [ 5888 "type", 5889 "object" 5890 ], 5891 "type": "object", 5892 "x-kubernetes-group-version-kind": [ 5893 { 5894 "group": "", 5895 "kind": "WatchEvent", 5896 "version": "v1" 5897 }, 5898 { 5899 "group": "admission.k8s.io", 5900 "kind": "WatchEvent", 5901 "version": "v1" 5902 }, 5903 { 5904 "group": "admission.k8s.io", 5905 "kind": "WatchEvent", 5906 "version": "v1beta1" 5907 }, 5908 { 5909 "group": "admissionregistration.k8s.io", 5910 "kind": "WatchEvent", 5911 "version": "v1" 5912 }, 5913 { 5914 "group": "admissionregistration.k8s.io", 5915 "kind": "WatchEvent", 5916 "version": "v1alpha1" 5917 }, 5918 { 5919 "group": "admissionregistration.k8s.io", 5920 "kind": "WatchEvent", 5921 "version": "v1beta1" 5922 }, 5923 { 5924 "group": "apiextensions.k8s.io", 5925 "kind": "WatchEvent", 5926 "version": "v1" 5927 }, 5928 { 5929 "group": "apiextensions.k8s.io", 5930 "kind": "WatchEvent", 5931 "version": "v1beta1" 5932 }, 5933 { 5934 "group": "apiregistration.k8s.io", 5935 "kind": "WatchEvent", 5936 "version": "v1" 5937 }, 5938 { 5939 "group": "apiregistration.k8s.io", 5940 "kind": "WatchEvent", 5941 "version": "v1beta1" 5942 }, 5943 { 5944 "group": "apps", 5945 "kind": "WatchEvent", 5946 "version": "v1" 5947 }, 5948 { 5949 "group": "apps", 5950 "kind": "WatchEvent", 5951 "version": "v1beta1" 5952 }, 5953 { 5954 "group": "apps", 5955 "kind": "WatchEvent", 5956 "version": "v1beta2" 5957 }, 5958 { 5959 "group": "authentication.k8s.io", 5960 "kind": "WatchEvent", 5961 "version": "v1" 5962 }, 5963 { 5964 "group": "authentication.k8s.io", 5965 "kind": "WatchEvent", 5966 "version": "v1alpha1" 5967 }, 5968 { 5969 "group": "authentication.k8s.io", 5970 "kind": "WatchEvent", 5971 "version": "v1beta1" 5972 }, 5973 { 5974 "group": "authorization.k8s.io", 5975 "kind": "WatchEvent", 5976 "version": "v1" 5977 }, 5978 { 5979 "group": "authorization.k8s.io", 5980 "kind": "WatchEvent", 5981 "version": "v1beta1" 5982 }, 5983 { 5984 "group": "autoscaling", 5985 "kind": "WatchEvent", 5986 "version": "v1" 5987 }, 5988 { 5989 "group": "autoscaling", 5990 "kind": "WatchEvent", 5991 "version": "v2" 5992 }, 5993 { 5994 "group": "autoscaling", 5995 "kind": "WatchEvent", 5996 "version": "v2beta1" 5997 }, 5998 { 5999 "group": "autoscaling", 6000 "kind": "WatchEvent", 6001 "version": "v2beta2" 6002 }, 6003 { 6004 "group": "batch", 6005 "kind": "WatchEvent", 6006 "version": "v1" 6007 }, 6008 { 6009 "group": "batch", 6010 "kind": "WatchEvent", 6011 "version": "v1beta1" 6012 }, 6013 { 6014 "group": "certificates.k8s.io", 6015 "kind": "WatchEvent", 6016 "version": "v1" 6017 }, 6018 { 6019 "group": "certificates.k8s.io", 6020 "kind": "WatchEvent", 6021 "version": "v1beta1" 6022 }, 6023 { 6024 "group": "coordination.k8s.io", 6025 "kind": "WatchEvent", 6026 "version": "v1" 6027 }, 6028 { 6029 "group": "coordination.k8s.io", 6030 "kind": "WatchEvent", 6031 "version": "v1beta1" 6032 }, 6033 { 6034 "group": "discovery.k8s.io", 6035 "kind": "WatchEvent", 6036 "version": "v1" 6037 }, 6038 { 6039 "group": "discovery.k8s.io", 6040 "kind": "WatchEvent", 6041 "version": "v1beta1" 6042 }, 6043 { 6044 "group": "events.k8s.io", 6045 "kind": "WatchEvent", 6046 "version": "v1" 6047 }, 6048 { 6049 "group": "events.k8s.io", 6050 "kind": "WatchEvent", 6051 "version": "v1beta1" 6052 }, 6053 { 6054 "group": "extensions", 6055 "kind": "WatchEvent", 6056 "version": "v1beta1" 6057 }, 6058 { 6059 "group": "flowcontrol.apiserver.k8s.io", 6060 "kind": "WatchEvent", 6061 "version": "v1alpha1" 6062 }, 6063 { 6064 "group": "flowcontrol.apiserver.k8s.io", 6065 "kind": "WatchEvent", 6066 "version": "v1beta1" 6067 }, 6068 { 6069 "group": "flowcontrol.apiserver.k8s.io", 6070 "kind": "WatchEvent", 6071 "version": "v1beta2" 6072 }, 6073 { 6074 "group": "flowcontrol.apiserver.k8s.io", 6075 "kind": "WatchEvent", 6076 "version": "v1beta3" 6077 }, 6078 { 6079 "group": "imagepolicy.k8s.io", 6080 "kind": "WatchEvent", 6081 "version": "v1alpha1" 6082 }, 6083 { 6084 "group": "internal.apiserver.k8s.io", 6085 "kind": "WatchEvent", 6086 "version": "v1alpha1" 6087 }, 6088 { 6089 "group": "networking.k8s.io", 6090 "kind": "WatchEvent", 6091 "version": "v1" 6092 }, 6093 { 6094 "group": "networking.k8s.io", 6095 "kind": "WatchEvent", 6096 "version": "v1alpha1" 6097 }, 6098 { 6099 "group": "networking.k8s.io", 6100 "kind": "WatchEvent", 6101 "version": "v1beta1" 6102 }, 6103 { 6104 "group": "node.k8s.io", 6105 "kind": "WatchEvent", 6106 "version": "v1" 6107 }, 6108 { 6109 "group": "node.k8s.io", 6110 "kind": "WatchEvent", 6111 "version": "v1alpha1" 6112 }, 6113 { 6114 "group": "node.k8s.io", 6115 "kind": "WatchEvent", 6116 "version": "v1beta1" 6117 }, 6118 { 6119 "group": "policy", 6120 "kind": "WatchEvent", 6121 "version": "v1" 6122 }, 6123 { 6124 "group": "policy", 6125 "kind": "WatchEvent", 6126 "version": "v1beta1" 6127 }, 6128 { 6129 "group": "rbac.authorization.k8s.io", 6130 "kind": "WatchEvent", 6131 "version": "v1" 6132 }, 6133 { 6134 "group": "rbac.authorization.k8s.io", 6135 "kind": "WatchEvent", 6136 "version": "v1alpha1" 6137 }, 6138 { 6139 "group": "rbac.authorization.k8s.io", 6140 "kind": "WatchEvent", 6141 "version": "v1beta1" 6142 }, 6143 { 6144 "group": "resource.k8s.io", 6145 "kind": "WatchEvent", 6146 "version": "v1alpha1" 6147 }, 6148 { 6149 "group": "scheduling.k8s.io", 6150 "kind": "WatchEvent", 6151 "version": "v1" 6152 }, 6153 { 6154 "group": "scheduling.k8s.io", 6155 "kind": "WatchEvent", 6156 "version": "v1alpha1" 6157 }, 6158 { 6159 "group": "scheduling.k8s.io", 6160 "kind": "WatchEvent", 6161 "version": "v1beta1" 6162 }, 6163 { 6164 "group": "storage.k8s.io", 6165 "kind": "WatchEvent", 6166 "version": "v1" 6167 }, 6168 { 6169 "group": "storage.k8s.io", 6170 "kind": "WatchEvent", 6171 "version": "v1alpha1" 6172 }, 6173 { 6174 "group": "storage.k8s.io", 6175 "kind": "WatchEvent", 6176 "version": "v1beta1" 6177 } 6178 ] 6179 }, 6180 "io.k8s.apimachinery.pkg.runtime.RawExtension": { 6181 "description": "RawExtension is used to hold extensions in external versions.\n\nTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types.\n\n// Internal package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.Object `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// External package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.RawExtension `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// On the wire, the JSON will look something like this:\n\n\t{\n\t\t\"kind\":\"MyAPIObject\",\n\t\t\"apiVersion\":\"v1\",\n\t\t\"myPlugin\": {\n\t\t\t\"kind\":\"PluginA\",\n\t\t\t\"aOption\":\"foo\",\n\t\t},\n\t}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.)", 6182 "type": "object" 6183 }, 6184 "io.k8s.apimachinery.pkg.util.intstr.IntOrString": { 6185 "description": "IntOrString is a type that can hold an int32 or a string. When used in JSON or YAML marshalling and unmarshalling, it produces or consumes the inner type. This allows you to have, for example, a JSON field that can accept a name or number.", 6186 "format": "int-or-string", 6187 "oneOf": [ 6188 { 6189 "type": "integer" 6190 }, 6191 { 6192 "type": "string" 6193 } 6194 ] 6195 } 6196 }, 6197 "securitySchemes": { 6198 "BearerToken": { 6199 "description": "Bearer Token authentication", 6200 "in": "header", 6201 "name": "authorization", 6202 "type": "apiKey" 6203 } 6204 } 6205 }, 6206 "info": { 6207 "title": "Kubernetes", 6208 "version": "unversioned" 6209 }, 6210 "openapi": "3.0.0", 6211 "paths": { 6212 "/apis/apps/v1/": { 6213 "get": { 6214 "description": "get available resources", 6215 "operationId": "getAppsV1APIResources", 6216 "responses": { 6217 "200": { 6218 "content": { 6219 "application/json": { 6220 "schema": { 6221 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" 6222 } 6223 }, 6224 "application/vnd.kubernetes.protobuf": { 6225 "schema": { 6226 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" 6227 } 6228 }, 6229 "application/yaml": { 6230 "schema": { 6231 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList" 6232 } 6233 } 6234 }, 6235 "description": "OK" 6236 }, 6237 "401": { 6238 "description": "Unauthorized" 6239 } 6240 }, 6241 "tags": [ 6242 "apps_v1" 6243 ] 6244 } 6245 }, 6246 "/apis/apps/v1/controllerrevisions": { 6247 "get": { 6248 "description": "list or watch objects of kind ControllerRevision", 6249 "operationId": "listAppsV1ControllerRevisionForAllNamespaces", 6250 "responses": { 6251 "200": { 6252 "content": { 6253 "application/json": { 6254 "schema": { 6255 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevisionList" 6256 } 6257 }, 6258 "application/json;stream=watch": { 6259 "schema": { 6260 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevisionList" 6261 } 6262 }, 6263 "application/vnd.kubernetes.protobuf": { 6264 "schema": { 6265 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevisionList" 6266 } 6267 }, 6268 "application/vnd.kubernetes.protobuf;stream=watch": { 6269 "schema": { 6270 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevisionList" 6271 } 6272 }, 6273 "application/yaml": { 6274 "schema": { 6275 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevisionList" 6276 } 6277 } 6278 }, 6279 "description": "OK" 6280 }, 6281 "401": { 6282 "description": "Unauthorized" 6283 } 6284 }, 6285 "tags": [ 6286 "apps_v1" 6287 ], 6288 "x-kubernetes-action": "list", 6289 "x-kubernetes-group-version-kind": { 6290 "group": "apps", 6291 "kind": "ControllerRevision", 6292 "version": "v1" 6293 } 6294 }, 6295 "parameters": [ 6296 { 6297 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 6298 "in": "query", 6299 "name": "allowWatchBookmarks", 6300 "schema": { 6301 "type": "boolean", 6302 "uniqueItems": true 6303 } 6304 }, 6305 { 6306 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 6307 "in": "query", 6308 "name": "continue", 6309 "schema": { 6310 "type": "string", 6311 "uniqueItems": true 6312 } 6313 }, 6314 { 6315 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 6316 "in": "query", 6317 "name": "fieldSelector", 6318 "schema": { 6319 "type": "string", 6320 "uniqueItems": true 6321 } 6322 }, 6323 { 6324 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 6325 "in": "query", 6326 "name": "labelSelector", 6327 "schema": { 6328 "type": "string", 6329 "uniqueItems": true 6330 } 6331 }, 6332 { 6333 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 6334 "in": "query", 6335 "name": "limit", 6336 "schema": { 6337 "type": "integer", 6338 "uniqueItems": true 6339 } 6340 }, 6341 { 6342 "description": "If 'true', then the output is pretty printed.", 6343 "in": "query", 6344 "name": "pretty", 6345 "schema": { 6346 "type": "string", 6347 "uniqueItems": true 6348 } 6349 }, 6350 { 6351 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 6352 "in": "query", 6353 "name": "resourceVersion", 6354 "schema": { 6355 "type": "string", 6356 "uniqueItems": true 6357 } 6358 }, 6359 { 6360 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 6361 "in": "query", 6362 "name": "resourceVersionMatch", 6363 "schema": { 6364 "type": "string", 6365 "uniqueItems": true 6366 } 6367 }, 6368 { 6369 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 6370 "in": "query", 6371 "name": "timeoutSeconds", 6372 "schema": { 6373 "type": "integer", 6374 "uniqueItems": true 6375 } 6376 }, 6377 { 6378 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 6379 "in": "query", 6380 "name": "watch", 6381 "schema": { 6382 "type": "boolean", 6383 "uniqueItems": true 6384 } 6385 } 6386 ] 6387 }, 6388 "/apis/apps/v1/daemonsets": { 6389 "get": { 6390 "description": "list or watch objects of kind DaemonSet", 6391 "operationId": "listAppsV1DaemonSetForAllNamespaces", 6392 "responses": { 6393 "200": { 6394 "content": { 6395 "application/json": { 6396 "schema": { 6397 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetList" 6398 } 6399 }, 6400 "application/json;stream=watch": { 6401 "schema": { 6402 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetList" 6403 } 6404 }, 6405 "application/vnd.kubernetes.protobuf": { 6406 "schema": { 6407 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetList" 6408 } 6409 }, 6410 "application/vnd.kubernetes.protobuf;stream=watch": { 6411 "schema": { 6412 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetList" 6413 } 6414 }, 6415 "application/yaml": { 6416 "schema": { 6417 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetList" 6418 } 6419 } 6420 }, 6421 "description": "OK" 6422 }, 6423 "401": { 6424 "description": "Unauthorized" 6425 } 6426 }, 6427 "tags": [ 6428 "apps_v1" 6429 ], 6430 "x-kubernetes-action": "list", 6431 "x-kubernetes-group-version-kind": { 6432 "group": "apps", 6433 "kind": "DaemonSet", 6434 "version": "v1" 6435 } 6436 }, 6437 "parameters": [ 6438 { 6439 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 6440 "in": "query", 6441 "name": "allowWatchBookmarks", 6442 "schema": { 6443 "type": "boolean", 6444 "uniqueItems": true 6445 } 6446 }, 6447 { 6448 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 6449 "in": "query", 6450 "name": "continue", 6451 "schema": { 6452 "type": "string", 6453 "uniqueItems": true 6454 } 6455 }, 6456 { 6457 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 6458 "in": "query", 6459 "name": "fieldSelector", 6460 "schema": { 6461 "type": "string", 6462 "uniqueItems": true 6463 } 6464 }, 6465 { 6466 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 6467 "in": "query", 6468 "name": "labelSelector", 6469 "schema": { 6470 "type": "string", 6471 "uniqueItems": true 6472 } 6473 }, 6474 { 6475 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 6476 "in": "query", 6477 "name": "limit", 6478 "schema": { 6479 "type": "integer", 6480 "uniqueItems": true 6481 } 6482 }, 6483 { 6484 "description": "If 'true', then the output is pretty printed.", 6485 "in": "query", 6486 "name": "pretty", 6487 "schema": { 6488 "type": "string", 6489 "uniqueItems": true 6490 } 6491 }, 6492 { 6493 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 6494 "in": "query", 6495 "name": "resourceVersion", 6496 "schema": { 6497 "type": "string", 6498 "uniqueItems": true 6499 } 6500 }, 6501 { 6502 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 6503 "in": "query", 6504 "name": "resourceVersionMatch", 6505 "schema": { 6506 "type": "string", 6507 "uniqueItems": true 6508 } 6509 }, 6510 { 6511 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 6512 "in": "query", 6513 "name": "timeoutSeconds", 6514 "schema": { 6515 "type": "integer", 6516 "uniqueItems": true 6517 } 6518 }, 6519 { 6520 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 6521 "in": "query", 6522 "name": "watch", 6523 "schema": { 6524 "type": "boolean", 6525 "uniqueItems": true 6526 } 6527 } 6528 ] 6529 }, 6530 "/apis/apps/v1/deployments": { 6531 "get": { 6532 "description": "list or watch objects of kind Deployment", 6533 "operationId": "listAppsV1DeploymentForAllNamespaces", 6534 "responses": { 6535 "200": { 6536 "content": { 6537 "application/json": { 6538 "schema": { 6539 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentList" 6540 } 6541 }, 6542 "application/json;stream=watch": { 6543 "schema": { 6544 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentList" 6545 } 6546 }, 6547 "application/vnd.kubernetes.protobuf": { 6548 "schema": { 6549 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentList" 6550 } 6551 }, 6552 "application/vnd.kubernetes.protobuf;stream=watch": { 6553 "schema": { 6554 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentList" 6555 } 6556 }, 6557 "application/yaml": { 6558 "schema": { 6559 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentList" 6560 } 6561 } 6562 }, 6563 "description": "OK" 6564 }, 6565 "401": { 6566 "description": "Unauthorized" 6567 } 6568 }, 6569 "tags": [ 6570 "apps_v1" 6571 ], 6572 "x-kubernetes-action": "list", 6573 "x-kubernetes-group-version-kind": { 6574 "group": "apps", 6575 "kind": "Deployment", 6576 "version": "v1" 6577 } 6578 }, 6579 "parameters": [ 6580 { 6581 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 6582 "in": "query", 6583 "name": "allowWatchBookmarks", 6584 "schema": { 6585 "type": "boolean", 6586 "uniqueItems": true 6587 } 6588 }, 6589 { 6590 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 6591 "in": "query", 6592 "name": "continue", 6593 "schema": { 6594 "type": "string", 6595 "uniqueItems": true 6596 } 6597 }, 6598 { 6599 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 6600 "in": "query", 6601 "name": "fieldSelector", 6602 "schema": { 6603 "type": "string", 6604 "uniqueItems": true 6605 } 6606 }, 6607 { 6608 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 6609 "in": "query", 6610 "name": "labelSelector", 6611 "schema": { 6612 "type": "string", 6613 "uniqueItems": true 6614 } 6615 }, 6616 { 6617 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 6618 "in": "query", 6619 "name": "limit", 6620 "schema": { 6621 "type": "integer", 6622 "uniqueItems": true 6623 } 6624 }, 6625 { 6626 "description": "If 'true', then the output is pretty printed.", 6627 "in": "query", 6628 "name": "pretty", 6629 "schema": { 6630 "type": "string", 6631 "uniqueItems": true 6632 } 6633 }, 6634 { 6635 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 6636 "in": "query", 6637 "name": "resourceVersion", 6638 "schema": { 6639 "type": "string", 6640 "uniqueItems": true 6641 } 6642 }, 6643 { 6644 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 6645 "in": "query", 6646 "name": "resourceVersionMatch", 6647 "schema": { 6648 "type": "string", 6649 "uniqueItems": true 6650 } 6651 }, 6652 { 6653 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 6654 "in": "query", 6655 "name": "timeoutSeconds", 6656 "schema": { 6657 "type": "integer", 6658 "uniqueItems": true 6659 } 6660 }, 6661 { 6662 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 6663 "in": "query", 6664 "name": "watch", 6665 "schema": { 6666 "type": "boolean", 6667 "uniqueItems": true 6668 } 6669 } 6670 ] 6671 }, 6672 "/apis/apps/v1/namespaces/{namespace}/controllerrevisions": { 6673 "delete": { 6674 "description": "delete collection of ControllerRevision", 6675 "operationId": "deleteAppsV1CollectionNamespacedControllerRevision", 6676 "parameters": [ 6677 { 6678 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 6679 "in": "query", 6680 "name": "continue", 6681 "schema": { 6682 "type": "string", 6683 "uniqueItems": true 6684 } 6685 }, 6686 { 6687 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 6688 "in": "query", 6689 "name": "dryRun", 6690 "schema": { 6691 "type": "string", 6692 "uniqueItems": true 6693 } 6694 }, 6695 { 6696 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 6697 "in": "query", 6698 "name": "fieldSelector", 6699 "schema": { 6700 "type": "string", 6701 "uniqueItems": true 6702 } 6703 }, 6704 { 6705 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 6706 "in": "query", 6707 "name": "gracePeriodSeconds", 6708 "schema": { 6709 "type": "integer", 6710 "uniqueItems": true 6711 } 6712 }, 6713 { 6714 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 6715 "in": "query", 6716 "name": "labelSelector", 6717 "schema": { 6718 "type": "string", 6719 "uniqueItems": true 6720 } 6721 }, 6722 { 6723 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 6724 "in": "query", 6725 "name": "limit", 6726 "schema": { 6727 "type": "integer", 6728 "uniqueItems": true 6729 } 6730 }, 6731 { 6732 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 6733 "in": "query", 6734 "name": "orphanDependents", 6735 "schema": { 6736 "type": "boolean", 6737 "uniqueItems": true 6738 } 6739 }, 6740 { 6741 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 6742 "in": "query", 6743 "name": "propagationPolicy", 6744 "schema": { 6745 "type": "string", 6746 "uniqueItems": true 6747 } 6748 }, 6749 { 6750 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 6751 "in": "query", 6752 "name": "resourceVersion", 6753 "schema": { 6754 "type": "string", 6755 "uniqueItems": true 6756 } 6757 }, 6758 { 6759 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 6760 "in": "query", 6761 "name": "resourceVersionMatch", 6762 "schema": { 6763 "type": "string", 6764 "uniqueItems": true 6765 } 6766 }, 6767 { 6768 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 6769 "in": "query", 6770 "name": "timeoutSeconds", 6771 "schema": { 6772 "type": "integer", 6773 "uniqueItems": true 6774 } 6775 } 6776 ], 6777 "requestBody": { 6778 "content": { 6779 "*/*": { 6780 "schema": { 6781 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 6782 } 6783 } 6784 } 6785 }, 6786 "responses": { 6787 "200": { 6788 "content": { 6789 "application/json": { 6790 "schema": { 6791 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 6792 } 6793 }, 6794 "application/vnd.kubernetes.protobuf": { 6795 "schema": { 6796 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 6797 } 6798 }, 6799 "application/yaml": { 6800 "schema": { 6801 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 6802 } 6803 } 6804 }, 6805 "description": "OK" 6806 }, 6807 "401": { 6808 "description": "Unauthorized" 6809 } 6810 }, 6811 "tags": [ 6812 "apps_v1" 6813 ], 6814 "x-kubernetes-action": "deletecollection", 6815 "x-kubernetes-group-version-kind": { 6816 "group": "apps", 6817 "kind": "ControllerRevision", 6818 "version": "v1" 6819 } 6820 }, 6821 "get": { 6822 "description": "list or watch objects of kind ControllerRevision", 6823 "operationId": "listAppsV1NamespacedControllerRevision", 6824 "parameters": [ 6825 { 6826 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 6827 "in": "query", 6828 "name": "allowWatchBookmarks", 6829 "schema": { 6830 "type": "boolean", 6831 "uniqueItems": true 6832 } 6833 }, 6834 { 6835 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 6836 "in": "query", 6837 "name": "continue", 6838 "schema": { 6839 "type": "string", 6840 "uniqueItems": true 6841 } 6842 }, 6843 { 6844 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 6845 "in": "query", 6846 "name": "fieldSelector", 6847 "schema": { 6848 "type": "string", 6849 "uniqueItems": true 6850 } 6851 }, 6852 { 6853 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 6854 "in": "query", 6855 "name": "labelSelector", 6856 "schema": { 6857 "type": "string", 6858 "uniqueItems": true 6859 } 6860 }, 6861 { 6862 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 6863 "in": "query", 6864 "name": "limit", 6865 "schema": { 6866 "type": "integer", 6867 "uniqueItems": true 6868 } 6869 }, 6870 { 6871 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 6872 "in": "query", 6873 "name": "resourceVersion", 6874 "schema": { 6875 "type": "string", 6876 "uniqueItems": true 6877 } 6878 }, 6879 { 6880 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 6881 "in": "query", 6882 "name": "resourceVersionMatch", 6883 "schema": { 6884 "type": "string", 6885 "uniqueItems": true 6886 } 6887 }, 6888 { 6889 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 6890 "in": "query", 6891 "name": "timeoutSeconds", 6892 "schema": { 6893 "type": "integer", 6894 "uniqueItems": true 6895 } 6896 }, 6897 { 6898 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 6899 "in": "query", 6900 "name": "watch", 6901 "schema": { 6902 "type": "boolean", 6903 "uniqueItems": true 6904 } 6905 } 6906 ], 6907 "responses": { 6908 "200": { 6909 "content": { 6910 "application/json": { 6911 "schema": { 6912 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevisionList" 6913 } 6914 }, 6915 "application/json;stream=watch": { 6916 "schema": { 6917 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevisionList" 6918 } 6919 }, 6920 "application/vnd.kubernetes.protobuf": { 6921 "schema": { 6922 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevisionList" 6923 } 6924 }, 6925 "application/vnd.kubernetes.protobuf;stream=watch": { 6926 "schema": { 6927 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevisionList" 6928 } 6929 }, 6930 "application/yaml": { 6931 "schema": { 6932 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevisionList" 6933 } 6934 } 6935 }, 6936 "description": "OK" 6937 }, 6938 "401": { 6939 "description": "Unauthorized" 6940 } 6941 }, 6942 "tags": [ 6943 "apps_v1" 6944 ], 6945 "x-kubernetes-action": "list", 6946 "x-kubernetes-group-version-kind": { 6947 "group": "apps", 6948 "kind": "ControllerRevision", 6949 "version": "v1" 6950 } 6951 }, 6952 "parameters": [ 6953 { 6954 "description": "object name and auth scope, such as for teams and projects", 6955 "in": "path", 6956 "name": "namespace", 6957 "required": true, 6958 "schema": { 6959 "type": "string", 6960 "uniqueItems": true 6961 } 6962 }, 6963 { 6964 "description": "If 'true', then the output is pretty printed.", 6965 "in": "query", 6966 "name": "pretty", 6967 "schema": { 6968 "type": "string", 6969 "uniqueItems": true 6970 } 6971 } 6972 ], 6973 "post": { 6974 "description": "create a ControllerRevision", 6975 "operationId": "createAppsV1NamespacedControllerRevision", 6976 "parameters": [ 6977 { 6978 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 6979 "in": "query", 6980 "name": "dryRun", 6981 "schema": { 6982 "type": "string", 6983 "uniqueItems": true 6984 } 6985 }, 6986 { 6987 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 6988 "in": "query", 6989 "name": "fieldManager", 6990 "schema": { 6991 "type": "string", 6992 "uniqueItems": true 6993 } 6994 }, 6995 { 6996 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 6997 "in": "query", 6998 "name": "fieldValidation", 6999 "schema": { 7000 "type": "string", 7001 "uniqueItems": true 7002 } 7003 } 7004 ], 7005 "requestBody": { 7006 "content": { 7007 "*/*": { 7008 "schema": { 7009 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7010 } 7011 } 7012 } 7013 }, 7014 "responses": { 7015 "200": { 7016 "content": { 7017 "application/json": { 7018 "schema": { 7019 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7020 } 7021 }, 7022 "application/vnd.kubernetes.protobuf": { 7023 "schema": { 7024 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7025 } 7026 }, 7027 "application/yaml": { 7028 "schema": { 7029 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7030 } 7031 } 7032 }, 7033 "description": "OK" 7034 }, 7035 "201": { 7036 "content": { 7037 "application/json": { 7038 "schema": { 7039 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7040 } 7041 }, 7042 "application/vnd.kubernetes.protobuf": { 7043 "schema": { 7044 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7045 } 7046 }, 7047 "application/yaml": { 7048 "schema": { 7049 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7050 } 7051 } 7052 }, 7053 "description": "Created" 7054 }, 7055 "202": { 7056 "content": { 7057 "application/json": { 7058 "schema": { 7059 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7060 } 7061 }, 7062 "application/vnd.kubernetes.protobuf": { 7063 "schema": { 7064 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7065 } 7066 }, 7067 "application/yaml": { 7068 "schema": { 7069 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7070 } 7071 } 7072 }, 7073 "description": "Accepted" 7074 }, 7075 "401": { 7076 "description": "Unauthorized" 7077 } 7078 }, 7079 "tags": [ 7080 "apps_v1" 7081 ], 7082 "x-kubernetes-action": "post", 7083 "x-kubernetes-group-version-kind": { 7084 "group": "apps", 7085 "kind": "ControllerRevision", 7086 "version": "v1" 7087 } 7088 } 7089 }, 7090 "/apis/apps/v1/namespaces/{namespace}/controllerrevisions/{name}": { 7091 "delete": { 7092 "description": "delete a ControllerRevision", 7093 "operationId": "deleteAppsV1NamespacedControllerRevision", 7094 "parameters": [ 7095 { 7096 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 7097 "in": "query", 7098 "name": "dryRun", 7099 "schema": { 7100 "type": "string", 7101 "uniqueItems": true 7102 } 7103 }, 7104 { 7105 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 7106 "in": "query", 7107 "name": "gracePeriodSeconds", 7108 "schema": { 7109 "type": "integer", 7110 "uniqueItems": true 7111 } 7112 }, 7113 { 7114 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 7115 "in": "query", 7116 "name": "orphanDependents", 7117 "schema": { 7118 "type": "boolean", 7119 "uniqueItems": true 7120 } 7121 }, 7122 { 7123 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 7124 "in": "query", 7125 "name": "propagationPolicy", 7126 "schema": { 7127 "type": "string", 7128 "uniqueItems": true 7129 } 7130 } 7131 ], 7132 "requestBody": { 7133 "content": { 7134 "*/*": { 7135 "schema": { 7136 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 7137 } 7138 } 7139 } 7140 }, 7141 "responses": { 7142 "200": { 7143 "content": { 7144 "application/json": { 7145 "schema": { 7146 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 7147 } 7148 }, 7149 "application/vnd.kubernetes.protobuf": { 7150 "schema": { 7151 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 7152 } 7153 }, 7154 "application/yaml": { 7155 "schema": { 7156 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 7157 } 7158 } 7159 }, 7160 "description": "OK" 7161 }, 7162 "202": { 7163 "content": { 7164 "application/json": { 7165 "schema": { 7166 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 7167 } 7168 }, 7169 "application/vnd.kubernetes.protobuf": { 7170 "schema": { 7171 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 7172 } 7173 }, 7174 "application/yaml": { 7175 "schema": { 7176 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 7177 } 7178 } 7179 }, 7180 "description": "Accepted" 7181 }, 7182 "401": { 7183 "description": "Unauthorized" 7184 } 7185 }, 7186 "tags": [ 7187 "apps_v1" 7188 ], 7189 "x-kubernetes-action": "delete", 7190 "x-kubernetes-group-version-kind": { 7191 "group": "apps", 7192 "kind": "ControllerRevision", 7193 "version": "v1" 7194 } 7195 }, 7196 "get": { 7197 "description": "read the specified ControllerRevision", 7198 "operationId": "readAppsV1NamespacedControllerRevision", 7199 "responses": { 7200 "200": { 7201 "content": { 7202 "application/json": { 7203 "schema": { 7204 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7205 } 7206 }, 7207 "application/vnd.kubernetes.protobuf": { 7208 "schema": { 7209 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7210 } 7211 }, 7212 "application/yaml": { 7213 "schema": { 7214 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7215 } 7216 } 7217 }, 7218 "description": "OK" 7219 }, 7220 "401": { 7221 "description": "Unauthorized" 7222 } 7223 }, 7224 "tags": [ 7225 "apps_v1" 7226 ], 7227 "x-kubernetes-action": "get", 7228 "x-kubernetes-group-version-kind": { 7229 "group": "apps", 7230 "kind": "ControllerRevision", 7231 "version": "v1" 7232 } 7233 }, 7234 "parameters": [ 7235 { 7236 "description": "name of the ControllerRevision", 7237 "in": "path", 7238 "name": "name", 7239 "required": true, 7240 "schema": { 7241 "type": "string", 7242 "uniqueItems": true 7243 } 7244 }, 7245 { 7246 "description": "object name and auth scope, such as for teams and projects", 7247 "in": "path", 7248 "name": "namespace", 7249 "required": true, 7250 "schema": { 7251 "type": "string", 7252 "uniqueItems": true 7253 } 7254 }, 7255 { 7256 "description": "If 'true', then the output is pretty printed.", 7257 "in": "query", 7258 "name": "pretty", 7259 "schema": { 7260 "type": "string", 7261 "uniqueItems": true 7262 } 7263 } 7264 ], 7265 "patch": { 7266 "description": "partially update the specified ControllerRevision", 7267 "operationId": "patchAppsV1NamespacedControllerRevision", 7268 "parameters": [ 7269 { 7270 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 7271 "in": "query", 7272 "name": "dryRun", 7273 "schema": { 7274 "type": "string", 7275 "uniqueItems": true 7276 } 7277 }, 7278 { 7279 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", 7280 "in": "query", 7281 "name": "fieldManager", 7282 "schema": { 7283 "type": "string", 7284 "uniqueItems": true 7285 } 7286 }, 7287 { 7288 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 7289 "in": "query", 7290 "name": "fieldValidation", 7291 "schema": { 7292 "type": "string", 7293 "uniqueItems": true 7294 } 7295 }, 7296 { 7297 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.", 7298 "in": "query", 7299 "name": "force", 7300 "schema": { 7301 "type": "boolean", 7302 "uniqueItems": true 7303 } 7304 } 7305 ], 7306 "requestBody": { 7307 "content": { 7308 "application/apply-patch+yaml": { 7309 "schema": { 7310 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 7311 } 7312 }, 7313 "application/json-patch+json": { 7314 "schema": { 7315 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 7316 } 7317 }, 7318 "application/merge-patch+json": { 7319 "schema": { 7320 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 7321 } 7322 }, 7323 "application/strategic-merge-patch+json": { 7324 "schema": { 7325 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 7326 } 7327 } 7328 } 7329 }, 7330 "responses": { 7331 "200": { 7332 "content": { 7333 "application/json": { 7334 "schema": { 7335 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7336 } 7337 }, 7338 "application/vnd.kubernetes.protobuf": { 7339 "schema": { 7340 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7341 } 7342 }, 7343 "application/yaml": { 7344 "schema": { 7345 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7346 } 7347 } 7348 }, 7349 "description": "OK" 7350 }, 7351 "201": { 7352 "content": { 7353 "application/json": { 7354 "schema": { 7355 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7356 } 7357 }, 7358 "application/vnd.kubernetes.protobuf": { 7359 "schema": { 7360 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7361 } 7362 }, 7363 "application/yaml": { 7364 "schema": { 7365 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7366 } 7367 } 7368 }, 7369 "description": "Created" 7370 }, 7371 "401": { 7372 "description": "Unauthorized" 7373 } 7374 }, 7375 "tags": [ 7376 "apps_v1" 7377 ], 7378 "x-kubernetes-action": "patch", 7379 "x-kubernetes-group-version-kind": { 7380 "group": "apps", 7381 "kind": "ControllerRevision", 7382 "version": "v1" 7383 } 7384 }, 7385 "put": { 7386 "description": "replace the specified ControllerRevision", 7387 "operationId": "replaceAppsV1NamespacedControllerRevision", 7388 "parameters": [ 7389 { 7390 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 7391 "in": "query", 7392 "name": "dryRun", 7393 "schema": { 7394 "type": "string", 7395 "uniqueItems": true 7396 } 7397 }, 7398 { 7399 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 7400 "in": "query", 7401 "name": "fieldManager", 7402 "schema": { 7403 "type": "string", 7404 "uniqueItems": true 7405 } 7406 }, 7407 { 7408 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 7409 "in": "query", 7410 "name": "fieldValidation", 7411 "schema": { 7412 "type": "string", 7413 "uniqueItems": true 7414 } 7415 } 7416 ], 7417 "requestBody": { 7418 "content": { 7419 "*/*": { 7420 "schema": { 7421 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7422 } 7423 } 7424 } 7425 }, 7426 "responses": { 7427 "200": { 7428 "content": { 7429 "application/json": { 7430 "schema": { 7431 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7432 } 7433 }, 7434 "application/vnd.kubernetes.protobuf": { 7435 "schema": { 7436 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7437 } 7438 }, 7439 "application/yaml": { 7440 "schema": { 7441 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7442 } 7443 } 7444 }, 7445 "description": "OK" 7446 }, 7447 "201": { 7448 "content": { 7449 "application/json": { 7450 "schema": { 7451 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7452 } 7453 }, 7454 "application/vnd.kubernetes.protobuf": { 7455 "schema": { 7456 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7457 } 7458 }, 7459 "application/yaml": { 7460 "schema": { 7461 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ControllerRevision" 7462 } 7463 } 7464 }, 7465 "description": "Created" 7466 }, 7467 "401": { 7468 "description": "Unauthorized" 7469 } 7470 }, 7471 "tags": [ 7472 "apps_v1" 7473 ], 7474 "x-kubernetes-action": "put", 7475 "x-kubernetes-group-version-kind": { 7476 "group": "apps", 7477 "kind": "ControllerRevision", 7478 "version": "v1" 7479 } 7480 } 7481 }, 7482 "/apis/apps/v1/namespaces/{namespace}/daemonsets": { 7483 "delete": { 7484 "description": "delete collection of DaemonSet", 7485 "operationId": "deleteAppsV1CollectionNamespacedDaemonSet", 7486 "parameters": [ 7487 { 7488 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 7489 "in": "query", 7490 "name": "continue", 7491 "schema": { 7492 "type": "string", 7493 "uniqueItems": true 7494 } 7495 }, 7496 { 7497 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 7498 "in": "query", 7499 "name": "dryRun", 7500 "schema": { 7501 "type": "string", 7502 "uniqueItems": true 7503 } 7504 }, 7505 { 7506 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 7507 "in": "query", 7508 "name": "fieldSelector", 7509 "schema": { 7510 "type": "string", 7511 "uniqueItems": true 7512 } 7513 }, 7514 { 7515 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 7516 "in": "query", 7517 "name": "gracePeriodSeconds", 7518 "schema": { 7519 "type": "integer", 7520 "uniqueItems": true 7521 } 7522 }, 7523 { 7524 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 7525 "in": "query", 7526 "name": "labelSelector", 7527 "schema": { 7528 "type": "string", 7529 "uniqueItems": true 7530 } 7531 }, 7532 { 7533 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 7534 "in": "query", 7535 "name": "limit", 7536 "schema": { 7537 "type": "integer", 7538 "uniqueItems": true 7539 } 7540 }, 7541 { 7542 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 7543 "in": "query", 7544 "name": "orphanDependents", 7545 "schema": { 7546 "type": "boolean", 7547 "uniqueItems": true 7548 } 7549 }, 7550 { 7551 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 7552 "in": "query", 7553 "name": "propagationPolicy", 7554 "schema": { 7555 "type": "string", 7556 "uniqueItems": true 7557 } 7558 }, 7559 { 7560 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 7561 "in": "query", 7562 "name": "resourceVersion", 7563 "schema": { 7564 "type": "string", 7565 "uniqueItems": true 7566 } 7567 }, 7568 { 7569 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 7570 "in": "query", 7571 "name": "resourceVersionMatch", 7572 "schema": { 7573 "type": "string", 7574 "uniqueItems": true 7575 } 7576 }, 7577 { 7578 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 7579 "in": "query", 7580 "name": "timeoutSeconds", 7581 "schema": { 7582 "type": "integer", 7583 "uniqueItems": true 7584 } 7585 } 7586 ], 7587 "requestBody": { 7588 "content": { 7589 "*/*": { 7590 "schema": { 7591 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 7592 } 7593 } 7594 } 7595 }, 7596 "responses": { 7597 "200": { 7598 "content": { 7599 "application/json": { 7600 "schema": { 7601 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 7602 } 7603 }, 7604 "application/vnd.kubernetes.protobuf": { 7605 "schema": { 7606 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 7607 } 7608 }, 7609 "application/yaml": { 7610 "schema": { 7611 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 7612 } 7613 } 7614 }, 7615 "description": "OK" 7616 }, 7617 "401": { 7618 "description": "Unauthorized" 7619 } 7620 }, 7621 "tags": [ 7622 "apps_v1" 7623 ], 7624 "x-kubernetes-action": "deletecollection", 7625 "x-kubernetes-group-version-kind": { 7626 "group": "apps", 7627 "kind": "DaemonSet", 7628 "version": "v1" 7629 } 7630 }, 7631 "get": { 7632 "description": "list or watch objects of kind DaemonSet", 7633 "operationId": "listAppsV1NamespacedDaemonSet", 7634 "parameters": [ 7635 { 7636 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 7637 "in": "query", 7638 "name": "allowWatchBookmarks", 7639 "schema": { 7640 "type": "boolean", 7641 "uniqueItems": true 7642 } 7643 }, 7644 { 7645 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 7646 "in": "query", 7647 "name": "continue", 7648 "schema": { 7649 "type": "string", 7650 "uniqueItems": true 7651 } 7652 }, 7653 { 7654 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 7655 "in": "query", 7656 "name": "fieldSelector", 7657 "schema": { 7658 "type": "string", 7659 "uniqueItems": true 7660 } 7661 }, 7662 { 7663 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 7664 "in": "query", 7665 "name": "labelSelector", 7666 "schema": { 7667 "type": "string", 7668 "uniqueItems": true 7669 } 7670 }, 7671 { 7672 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 7673 "in": "query", 7674 "name": "limit", 7675 "schema": { 7676 "type": "integer", 7677 "uniqueItems": true 7678 } 7679 }, 7680 { 7681 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 7682 "in": "query", 7683 "name": "resourceVersion", 7684 "schema": { 7685 "type": "string", 7686 "uniqueItems": true 7687 } 7688 }, 7689 { 7690 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 7691 "in": "query", 7692 "name": "resourceVersionMatch", 7693 "schema": { 7694 "type": "string", 7695 "uniqueItems": true 7696 } 7697 }, 7698 { 7699 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 7700 "in": "query", 7701 "name": "timeoutSeconds", 7702 "schema": { 7703 "type": "integer", 7704 "uniqueItems": true 7705 } 7706 }, 7707 { 7708 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 7709 "in": "query", 7710 "name": "watch", 7711 "schema": { 7712 "type": "boolean", 7713 "uniqueItems": true 7714 } 7715 } 7716 ], 7717 "responses": { 7718 "200": { 7719 "content": { 7720 "application/json": { 7721 "schema": { 7722 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetList" 7723 } 7724 }, 7725 "application/json;stream=watch": { 7726 "schema": { 7727 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetList" 7728 } 7729 }, 7730 "application/vnd.kubernetes.protobuf": { 7731 "schema": { 7732 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetList" 7733 } 7734 }, 7735 "application/vnd.kubernetes.protobuf;stream=watch": { 7736 "schema": { 7737 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetList" 7738 } 7739 }, 7740 "application/yaml": { 7741 "schema": { 7742 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSetList" 7743 } 7744 } 7745 }, 7746 "description": "OK" 7747 }, 7748 "401": { 7749 "description": "Unauthorized" 7750 } 7751 }, 7752 "tags": [ 7753 "apps_v1" 7754 ], 7755 "x-kubernetes-action": "list", 7756 "x-kubernetes-group-version-kind": { 7757 "group": "apps", 7758 "kind": "DaemonSet", 7759 "version": "v1" 7760 } 7761 }, 7762 "parameters": [ 7763 { 7764 "description": "object name and auth scope, such as for teams and projects", 7765 "in": "path", 7766 "name": "namespace", 7767 "required": true, 7768 "schema": { 7769 "type": "string", 7770 "uniqueItems": true 7771 } 7772 }, 7773 { 7774 "description": "If 'true', then the output is pretty printed.", 7775 "in": "query", 7776 "name": "pretty", 7777 "schema": { 7778 "type": "string", 7779 "uniqueItems": true 7780 } 7781 } 7782 ], 7783 "post": { 7784 "description": "create a DaemonSet", 7785 "operationId": "createAppsV1NamespacedDaemonSet", 7786 "parameters": [ 7787 { 7788 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 7789 "in": "query", 7790 "name": "dryRun", 7791 "schema": { 7792 "type": "string", 7793 "uniqueItems": true 7794 } 7795 }, 7796 { 7797 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 7798 "in": "query", 7799 "name": "fieldManager", 7800 "schema": { 7801 "type": "string", 7802 "uniqueItems": true 7803 } 7804 }, 7805 { 7806 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 7807 "in": "query", 7808 "name": "fieldValidation", 7809 "schema": { 7810 "type": "string", 7811 "uniqueItems": true 7812 } 7813 } 7814 ], 7815 "requestBody": { 7816 "content": { 7817 "*/*": { 7818 "schema": { 7819 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 7820 } 7821 } 7822 } 7823 }, 7824 "responses": { 7825 "200": { 7826 "content": { 7827 "application/json": { 7828 "schema": { 7829 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 7830 } 7831 }, 7832 "application/vnd.kubernetes.protobuf": { 7833 "schema": { 7834 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 7835 } 7836 }, 7837 "application/yaml": { 7838 "schema": { 7839 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 7840 } 7841 } 7842 }, 7843 "description": "OK" 7844 }, 7845 "201": { 7846 "content": { 7847 "application/json": { 7848 "schema": { 7849 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 7850 } 7851 }, 7852 "application/vnd.kubernetes.protobuf": { 7853 "schema": { 7854 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 7855 } 7856 }, 7857 "application/yaml": { 7858 "schema": { 7859 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 7860 } 7861 } 7862 }, 7863 "description": "Created" 7864 }, 7865 "202": { 7866 "content": { 7867 "application/json": { 7868 "schema": { 7869 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 7870 } 7871 }, 7872 "application/vnd.kubernetes.protobuf": { 7873 "schema": { 7874 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 7875 } 7876 }, 7877 "application/yaml": { 7878 "schema": { 7879 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 7880 } 7881 } 7882 }, 7883 "description": "Accepted" 7884 }, 7885 "401": { 7886 "description": "Unauthorized" 7887 } 7888 }, 7889 "tags": [ 7890 "apps_v1" 7891 ], 7892 "x-kubernetes-action": "post", 7893 "x-kubernetes-group-version-kind": { 7894 "group": "apps", 7895 "kind": "DaemonSet", 7896 "version": "v1" 7897 } 7898 } 7899 }, 7900 "/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}": { 7901 "delete": { 7902 "description": "delete a DaemonSet", 7903 "operationId": "deleteAppsV1NamespacedDaemonSet", 7904 "parameters": [ 7905 { 7906 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 7907 "in": "query", 7908 "name": "dryRun", 7909 "schema": { 7910 "type": "string", 7911 "uniqueItems": true 7912 } 7913 }, 7914 { 7915 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 7916 "in": "query", 7917 "name": "gracePeriodSeconds", 7918 "schema": { 7919 "type": "integer", 7920 "uniqueItems": true 7921 } 7922 }, 7923 { 7924 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 7925 "in": "query", 7926 "name": "orphanDependents", 7927 "schema": { 7928 "type": "boolean", 7929 "uniqueItems": true 7930 } 7931 }, 7932 { 7933 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 7934 "in": "query", 7935 "name": "propagationPolicy", 7936 "schema": { 7937 "type": "string", 7938 "uniqueItems": true 7939 } 7940 } 7941 ], 7942 "requestBody": { 7943 "content": { 7944 "*/*": { 7945 "schema": { 7946 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 7947 } 7948 } 7949 } 7950 }, 7951 "responses": { 7952 "200": { 7953 "content": { 7954 "application/json": { 7955 "schema": { 7956 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 7957 } 7958 }, 7959 "application/vnd.kubernetes.protobuf": { 7960 "schema": { 7961 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 7962 } 7963 }, 7964 "application/yaml": { 7965 "schema": { 7966 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 7967 } 7968 } 7969 }, 7970 "description": "OK" 7971 }, 7972 "202": { 7973 "content": { 7974 "application/json": { 7975 "schema": { 7976 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 7977 } 7978 }, 7979 "application/vnd.kubernetes.protobuf": { 7980 "schema": { 7981 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 7982 } 7983 }, 7984 "application/yaml": { 7985 "schema": { 7986 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 7987 } 7988 } 7989 }, 7990 "description": "Accepted" 7991 }, 7992 "401": { 7993 "description": "Unauthorized" 7994 } 7995 }, 7996 "tags": [ 7997 "apps_v1" 7998 ], 7999 "x-kubernetes-action": "delete", 8000 "x-kubernetes-group-version-kind": { 8001 "group": "apps", 8002 "kind": "DaemonSet", 8003 "version": "v1" 8004 } 8005 }, 8006 "get": { 8007 "description": "read the specified DaemonSet", 8008 "operationId": "readAppsV1NamespacedDaemonSet", 8009 "responses": { 8010 "200": { 8011 "content": { 8012 "application/json": { 8013 "schema": { 8014 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8015 } 8016 }, 8017 "application/vnd.kubernetes.protobuf": { 8018 "schema": { 8019 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8020 } 8021 }, 8022 "application/yaml": { 8023 "schema": { 8024 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8025 } 8026 } 8027 }, 8028 "description": "OK" 8029 }, 8030 "401": { 8031 "description": "Unauthorized" 8032 } 8033 }, 8034 "tags": [ 8035 "apps_v1" 8036 ], 8037 "x-kubernetes-action": "get", 8038 "x-kubernetes-group-version-kind": { 8039 "group": "apps", 8040 "kind": "DaemonSet", 8041 "version": "v1" 8042 } 8043 }, 8044 "parameters": [ 8045 { 8046 "description": "name of the DaemonSet", 8047 "in": "path", 8048 "name": "name", 8049 "required": true, 8050 "schema": { 8051 "type": "string", 8052 "uniqueItems": true 8053 } 8054 }, 8055 { 8056 "description": "object name and auth scope, such as for teams and projects", 8057 "in": "path", 8058 "name": "namespace", 8059 "required": true, 8060 "schema": { 8061 "type": "string", 8062 "uniqueItems": true 8063 } 8064 }, 8065 { 8066 "description": "If 'true', then the output is pretty printed.", 8067 "in": "query", 8068 "name": "pretty", 8069 "schema": { 8070 "type": "string", 8071 "uniqueItems": true 8072 } 8073 } 8074 ], 8075 "patch": { 8076 "description": "partially update the specified DaemonSet", 8077 "operationId": "patchAppsV1NamespacedDaemonSet", 8078 "parameters": [ 8079 { 8080 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 8081 "in": "query", 8082 "name": "dryRun", 8083 "schema": { 8084 "type": "string", 8085 "uniqueItems": true 8086 } 8087 }, 8088 { 8089 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", 8090 "in": "query", 8091 "name": "fieldManager", 8092 "schema": { 8093 "type": "string", 8094 "uniqueItems": true 8095 } 8096 }, 8097 { 8098 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 8099 "in": "query", 8100 "name": "fieldValidation", 8101 "schema": { 8102 "type": "string", 8103 "uniqueItems": true 8104 } 8105 }, 8106 { 8107 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.", 8108 "in": "query", 8109 "name": "force", 8110 "schema": { 8111 "type": "boolean", 8112 "uniqueItems": true 8113 } 8114 } 8115 ], 8116 "requestBody": { 8117 "content": { 8118 "application/apply-patch+yaml": { 8119 "schema": { 8120 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 8121 } 8122 }, 8123 "application/json-patch+json": { 8124 "schema": { 8125 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 8126 } 8127 }, 8128 "application/merge-patch+json": { 8129 "schema": { 8130 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 8131 } 8132 }, 8133 "application/strategic-merge-patch+json": { 8134 "schema": { 8135 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 8136 } 8137 } 8138 } 8139 }, 8140 "responses": { 8141 "200": { 8142 "content": { 8143 "application/json": { 8144 "schema": { 8145 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8146 } 8147 }, 8148 "application/vnd.kubernetes.protobuf": { 8149 "schema": { 8150 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8151 } 8152 }, 8153 "application/yaml": { 8154 "schema": { 8155 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8156 } 8157 } 8158 }, 8159 "description": "OK" 8160 }, 8161 "201": { 8162 "content": { 8163 "application/json": { 8164 "schema": { 8165 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8166 } 8167 }, 8168 "application/vnd.kubernetes.protobuf": { 8169 "schema": { 8170 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8171 } 8172 }, 8173 "application/yaml": { 8174 "schema": { 8175 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8176 } 8177 } 8178 }, 8179 "description": "Created" 8180 }, 8181 "401": { 8182 "description": "Unauthorized" 8183 } 8184 }, 8185 "tags": [ 8186 "apps_v1" 8187 ], 8188 "x-kubernetes-action": "patch", 8189 "x-kubernetes-group-version-kind": { 8190 "group": "apps", 8191 "kind": "DaemonSet", 8192 "version": "v1" 8193 } 8194 }, 8195 "put": { 8196 "description": "replace the specified DaemonSet", 8197 "operationId": "replaceAppsV1NamespacedDaemonSet", 8198 "parameters": [ 8199 { 8200 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 8201 "in": "query", 8202 "name": "dryRun", 8203 "schema": { 8204 "type": "string", 8205 "uniqueItems": true 8206 } 8207 }, 8208 { 8209 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 8210 "in": "query", 8211 "name": "fieldManager", 8212 "schema": { 8213 "type": "string", 8214 "uniqueItems": true 8215 } 8216 }, 8217 { 8218 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 8219 "in": "query", 8220 "name": "fieldValidation", 8221 "schema": { 8222 "type": "string", 8223 "uniqueItems": true 8224 } 8225 } 8226 ], 8227 "requestBody": { 8228 "content": { 8229 "*/*": { 8230 "schema": { 8231 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8232 } 8233 } 8234 } 8235 }, 8236 "responses": { 8237 "200": { 8238 "content": { 8239 "application/json": { 8240 "schema": { 8241 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8242 } 8243 }, 8244 "application/vnd.kubernetes.protobuf": { 8245 "schema": { 8246 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8247 } 8248 }, 8249 "application/yaml": { 8250 "schema": { 8251 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8252 } 8253 } 8254 }, 8255 "description": "OK" 8256 }, 8257 "201": { 8258 "content": { 8259 "application/json": { 8260 "schema": { 8261 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8262 } 8263 }, 8264 "application/vnd.kubernetes.protobuf": { 8265 "schema": { 8266 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8267 } 8268 }, 8269 "application/yaml": { 8270 "schema": { 8271 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8272 } 8273 } 8274 }, 8275 "description": "Created" 8276 }, 8277 "401": { 8278 "description": "Unauthorized" 8279 } 8280 }, 8281 "tags": [ 8282 "apps_v1" 8283 ], 8284 "x-kubernetes-action": "put", 8285 "x-kubernetes-group-version-kind": { 8286 "group": "apps", 8287 "kind": "DaemonSet", 8288 "version": "v1" 8289 } 8290 } 8291 }, 8292 "/apis/apps/v1/namespaces/{namespace}/daemonsets/{name}/status": { 8293 "get": { 8294 "description": "read status of the specified DaemonSet", 8295 "operationId": "readAppsV1NamespacedDaemonSetStatus", 8296 "responses": { 8297 "200": { 8298 "content": { 8299 "application/json": { 8300 "schema": { 8301 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8302 } 8303 }, 8304 "application/vnd.kubernetes.protobuf": { 8305 "schema": { 8306 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8307 } 8308 }, 8309 "application/yaml": { 8310 "schema": { 8311 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8312 } 8313 } 8314 }, 8315 "description": "OK" 8316 }, 8317 "401": { 8318 "description": "Unauthorized" 8319 } 8320 }, 8321 "tags": [ 8322 "apps_v1" 8323 ], 8324 "x-kubernetes-action": "get", 8325 "x-kubernetes-group-version-kind": { 8326 "group": "apps", 8327 "kind": "DaemonSet", 8328 "version": "v1" 8329 } 8330 }, 8331 "parameters": [ 8332 { 8333 "description": "name of the DaemonSet", 8334 "in": "path", 8335 "name": "name", 8336 "required": true, 8337 "schema": { 8338 "type": "string", 8339 "uniqueItems": true 8340 } 8341 }, 8342 { 8343 "description": "object name and auth scope, such as for teams and projects", 8344 "in": "path", 8345 "name": "namespace", 8346 "required": true, 8347 "schema": { 8348 "type": "string", 8349 "uniqueItems": true 8350 } 8351 }, 8352 { 8353 "description": "If 'true', then the output is pretty printed.", 8354 "in": "query", 8355 "name": "pretty", 8356 "schema": { 8357 "type": "string", 8358 "uniqueItems": true 8359 } 8360 } 8361 ], 8362 "patch": { 8363 "description": "partially update status of the specified DaemonSet", 8364 "operationId": "patchAppsV1NamespacedDaemonSetStatus", 8365 "parameters": [ 8366 { 8367 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 8368 "in": "query", 8369 "name": "dryRun", 8370 "schema": { 8371 "type": "string", 8372 "uniqueItems": true 8373 } 8374 }, 8375 { 8376 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", 8377 "in": "query", 8378 "name": "fieldManager", 8379 "schema": { 8380 "type": "string", 8381 "uniqueItems": true 8382 } 8383 }, 8384 { 8385 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 8386 "in": "query", 8387 "name": "fieldValidation", 8388 "schema": { 8389 "type": "string", 8390 "uniqueItems": true 8391 } 8392 }, 8393 { 8394 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.", 8395 "in": "query", 8396 "name": "force", 8397 "schema": { 8398 "type": "boolean", 8399 "uniqueItems": true 8400 } 8401 } 8402 ], 8403 "requestBody": { 8404 "content": { 8405 "application/apply-patch+yaml": { 8406 "schema": { 8407 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 8408 } 8409 }, 8410 "application/json-patch+json": { 8411 "schema": { 8412 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 8413 } 8414 }, 8415 "application/merge-patch+json": { 8416 "schema": { 8417 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 8418 } 8419 }, 8420 "application/strategic-merge-patch+json": { 8421 "schema": { 8422 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 8423 } 8424 } 8425 } 8426 }, 8427 "responses": { 8428 "200": { 8429 "content": { 8430 "application/json": { 8431 "schema": { 8432 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8433 } 8434 }, 8435 "application/vnd.kubernetes.protobuf": { 8436 "schema": { 8437 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8438 } 8439 }, 8440 "application/yaml": { 8441 "schema": { 8442 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8443 } 8444 } 8445 }, 8446 "description": "OK" 8447 }, 8448 "201": { 8449 "content": { 8450 "application/json": { 8451 "schema": { 8452 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8453 } 8454 }, 8455 "application/vnd.kubernetes.protobuf": { 8456 "schema": { 8457 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8458 } 8459 }, 8460 "application/yaml": { 8461 "schema": { 8462 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8463 } 8464 } 8465 }, 8466 "description": "Created" 8467 }, 8468 "401": { 8469 "description": "Unauthorized" 8470 } 8471 }, 8472 "tags": [ 8473 "apps_v1" 8474 ], 8475 "x-kubernetes-action": "patch", 8476 "x-kubernetes-group-version-kind": { 8477 "group": "apps", 8478 "kind": "DaemonSet", 8479 "version": "v1" 8480 } 8481 }, 8482 "put": { 8483 "description": "replace status of the specified DaemonSet", 8484 "operationId": "replaceAppsV1NamespacedDaemonSetStatus", 8485 "parameters": [ 8486 { 8487 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 8488 "in": "query", 8489 "name": "dryRun", 8490 "schema": { 8491 "type": "string", 8492 "uniqueItems": true 8493 } 8494 }, 8495 { 8496 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 8497 "in": "query", 8498 "name": "fieldManager", 8499 "schema": { 8500 "type": "string", 8501 "uniqueItems": true 8502 } 8503 }, 8504 { 8505 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 8506 "in": "query", 8507 "name": "fieldValidation", 8508 "schema": { 8509 "type": "string", 8510 "uniqueItems": true 8511 } 8512 } 8513 ], 8514 "requestBody": { 8515 "content": { 8516 "*/*": { 8517 "schema": { 8518 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8519 } 8520 } 8521 } 8522 }, 8523 "responses": { 8524 "200": { 8525 "content": { 8526 "application/json": { 8527 "schema": { 8528 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8529 } 8530 }, 8531 "application/vnd.kubernetes.protobuf": { 8532 "schema": { 8533 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8534 } 8535 }, 8536 "application/yaml": { 8537 "schema": { 8538 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8539 } 8540 } 8541 }, 8542 "description": "OK" 8543 }, 8544 "201": { 8545 "content": { 8546 "application/json": { 8547 "schema": { 8548 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8549 } 8550 }, 8551 "application/vnd.kubernetes.protobuf": { 8552 "schema": { 8553 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8554 } 8555 }, 8556 "application/yaml": { 8557 "schema": { 8558 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DaemonSet" 8559 } 8560 } 8561 }, 8562 "description": "Created" 8563 }, 8564 "401": { 8565 "description": "Unauthorized" 8566 } 8567 }, 8568 "tags": [ 8569 "apps_v1" 8570 ], 8571 "x-kubernetes-action": "put", 8572 "x-kubernetes-group-version-kind": { 8573 "group": "apps", 8574 "kind": "DaemonSet", 8575 "version": "v1" 8576 } 8577 } 8578 }, 8579 "/apis/apps/v1/namespaces/{namespace}/deployments": { 8580 "delete": { 8581 "description": "delete collection of Deployment", 8582 "operationId": "deleteAppsV1CollectionNamespacedDeployment", 8583 "parameters": [ 8584 { 8585 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 8586 "in": "query", 8587 "name": "continue", 8588 "schema": { 8589 "type": "string", 8590 "uniqueItems": true 8591 } 8592 }, 8593 { 8594 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 8595 "in": "query", 8596 "name": "dryRun", 8597 "schema": { 8598 "type": "string", 8599 "uniqueItems": true 8600 } 8601 }, 8602 { 8603 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 8604 "in": "query", 8605 "name": "fieldSelector", 8606 "schema": { 8607 "type": "string", 8608 "uniqueItems": true 8609 } 8610 }, 8611 { 8612 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 8613 "in": "query", 8614 "name": "gracePeriodSeconds", 8615 "schema": { 8616 "type": "integer", 8617 "uniqueItems": true 8618 } 8619 }, 8620 { 8621 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 8622 "in": "query", 8623 "name": "labelSelector", 8624 "schema": { 8625 "type": "string", 8626 "uniqueItems": true 8627 } 8628 }, 8629 { 8630 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 8631 "in": "query", 8632 "name": "limit", 8633 "schema": { 8634 "type": "integer", 8635 "uniqueItems": true 8636 } 8637 }, 8638 { 8639 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 8640 "in": "query", 8641 "name": "orphanDependents", 8642 "schema": { 8643 "type": "boolean", 8644 "uniqueItems": true 8645 } 8646 }, 8647 { 8648 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 8649 "in": "query", 8650 "name": "propagationPolicy", 8651 "schema": { 8652 "type": "string", 8653 "uniqueItems": true 8654 } 8655 }, 8656 { 8657 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 8658 "in": "query", 8659 "name": "resourceVersion", 8660 "schema": { 8661 "type": "string", 8662 "uniqueItems": true 8663 } 8664 }, 8665 { 8666 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 8667 "in": "query", 8668 "name": "resourceVersionMatch", 8669 "schema": { 8670 "type": "string", 8671 "uniqueItems": true 8672 } 8673 }, 8674 { 8675 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 8676 "in": "query", 8677 "name": "timeoutSeconds", 8678 "schema": { 8679 "type": "integer", 8680 "uniqueItems": true 8681 } 8682 } 8683 ], 8684 "requestBody": { 8685 "content": { 8686 "*/*": { 8687 "schema": { 8688 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 8689 } 8690 } 8691 } 8692 }, 8693 "responses": { 8694 "200": { 8695 "content": { 8696 "application/json": { 8697 "schema": { 8698 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 8699 } 8700 }, 8701 "application/vnd.kubernetes.protobuf": { 8702 "schema": { 8703 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 8704 } 8705 }, 8706 "application/yaml": { 8707 "schema": { 8708 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 8709 } 8710 } 8711 }, 8712 "description": "OK" 8713 }, 8714 "401": { 8715 "description": "Unauthorized" 8716 } 8717 }, 8718 "tags": [ 8719 "apps_v1" 8720 ], 8721 "x-kubernetes-action": "deletecollection", 8722 "x-kubernetes-group-version-kind": { 8723 "group": "apps", 8724 "kind": "Deployment", 8725 "version": "v1" 8726 } 8727 }, 8728 "get": { 8729 "description": "list or watch objects of kind Deployment", 8730 "operationId": "listAppsV1NamespacedDeployment", 8731 "parameters": [ 8732 { 8733 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 8734 "in": "query", 8735 "name": "allowWatchBookmarks", 8736 "schema": { 8737 "type": "boolean", 8738 "uniqueItems": true 8739 } 8740 }, 8741 { 8742 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 8743 "in": "query", 8744 "name": "continue", 8745 "schema": { 8746 "type": "string", 8747 "uniqueItems": true 8748 } 8749 }, 8750 { 8751 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 8752 "in": "query", 8753 "name": "fieldSelector", 8754 "schema": { 8755 "type": "string", 8756 "uniqueItems": true 8757 } 8758 }, 8759 { 8760 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 8761 "in": "query", 8762 "name": "labelSelector", 8763 "schema": { 8764 "type": "string", 8765 "uniqueItems": true 8766 } 8767 }, 8768 { 8769 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 8770 "in": "query", 8771 "name": "limit", 8772 "schema": { 8773 "type": "integer", 8774 "uniqueItems": true 8775 } 8776 }, 8777 { 8778 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 8779 "in": "query", 8780 "name": "resourceVersion", 8781 "schema": { 8782 "type": "string", 8783 "uniqueItems": true 8784 } 8785 }, 8786 { 8787 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 8788 "in": "query", 8789 "name": "resourceVersionMatch", 8790 "schema": { 8791 "type": "string", 8792 "uniqueItems": true 8793 } 8794 }, 8795 { 8796 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 8797 "in": "query", 8798 "name": "timeoutSeconds", 8799 "schema": { 8800 "type": "integer", 8801 "uniqueItems": true 8802 } 8803 }, 8804 { 8805 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 8806 "in": "query", 8807 "name": "watch", 8808 "schema": { 8809 "type": "boolean", 8810 "uniqueItems": true 8811 } 8812 } 8813 ], 8814 "responses": { 8815 "200": { 8816 "content": { 8817 "application/json": { 8818 "schema": { 8819 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentList" 8820 } 8821 }, 8822 "application/json;stream=watch": { 8823 "schema": { 8824 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentList" 8825 } 8826 }, 8827 "application/vnd.kubernetes.protobuf": { 8828 "schema": { 8829 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentList" 8830 } 8831 }, 8832 "application/vnd.kubernetes.protobuf;stream=watch": { 8833 "schema": { 8834 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentList" 8835 } 8836 }, 8837 "application/yaml": { 8838 "schema": { 8839 "$ref": "#/components/schemas/io.k8s.api.apps.v1.DeploymentList" 8840 } 8841 } 8842 }, 8843 "description": "OK" 8844 }, 8845 "401": { 8846 "description": "Unauthorized" 8847 } 8848 }, 8849 "tags": [ 8850 "apps_v1" 8851 ], 8852 "x-kubernetes-action": "list", 8853 "x-kubernetes-group-version-kind": { 8854 "group": "apps", 8855 "kind": "Deployment", 8856 "version": "v1" 8857 } 8858 }, 8859 "parameters": [ 8860 { 8861 "description": "object name and auth scope, such as for teams and projects", 8862 "in": "path", 8863 "name": "namespace", 8864 "required": true, 8865 "schema": { 8866 "type": "string", 8867 "uniqueItems": true 8868 } 8869 }, 8870 { 8871 "description": "If 'true', then the output is pretty printed.", 8872 "in": "query", 8873 "name": "pretty", 8874 "schema": { 8875 "type": "string", 8876 "uniqueItems": true 8877 } 8878 } 8879 ], 8880 "post": { 8881 "description": "create a Deployment", 8882 "operationId": "createAppsV1NamespacedDeployment", 8883 "parameters": [ 8884 { 8885 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 8886 "in": "query", 8887 "name": "dryRun", 8888 "schema": { 8889 "type": "string", 8890 "uniqueItems": true 8891 } 8892 }, 8893 { 8894 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 8895 "in": "query", 8896 "name": "fieldManager", 8897 "schema": { 8898 "type": "string", 8899 "uniqueItems": true 8900 } 8901 }, 8902 { 8903 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 8904 "in": "query", 8905 "name": "fieldValidation", 8906 "schema": { 8907 "type": "string", 8908 "uniqueItems": true 8909 } 8910 } 8911 ], 8912 "requestBody": { 8913 "content": { 8914 "*/*": { 8915 "schema": { 8916 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 8917 } 8918 } 8919 } 8920 }, 8921 "responses": { 8922 "200": { 8923 "content": { 8924 "application/json": { 8925 "schema": { 8926 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 8927 } 8928 }, 8929 "application/vnd.kubernetes.protobuf": { 8930 "schema": { 8931 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 8932 } 8933 }, 8934 "application/yaml": { 8935 "schema": { 8936 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 8937 } 8938 } 8939 }, 8940 "description": "OK" 8941 }, 8942 "201": { 8943 "content": { 8944 "application/json": { 8945 "schema": { 8946 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 8947 } 8948 }, 8949 "application/vnd.kubernetes.protobuf": { 8950 "schema": { 8951 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 8952 } 8953 }, 8954 "application/yaml": { 8955 "schema": { 8956 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 8957 } 8958 } 8959 }, 8960 "description": "Created" 8961 }, 8962 "202": { 8963 "content": { 8964 "application/json": { 8965 "schema": { 8966 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 8967 } 8968 }, 8969 "application/vnd.kubernetes.protobuf": { 8970 "schema": { 8971 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 8972 } 8973 }, 8974 "application/yaml": { 8975 "schema": { 8976 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 8977 } 8978 } 8979 }, 8980 "description": "Accepted" 8981 }, 8982 "401": { 8983 "description": "Unauthorized" 8984 } 8985 }, 8986 "tags": [ 8987 "apps_v1" 8988 ], 8989 "x-kubernetes-action": "post", 8990 "x-kubernetes-group-version-kind": { 8991 "group": "apps", 8992 "kind": "Deployment", 8993 "version": "v1" 8994 } 8995 } 8996 }, 8997 "/apis/apps/v1/namespaces/{namespace}/deployments/{name}": { 8998 "delete": { 8999 "description": "delete a Deployment", 9000 "operationId": "deleteAppsV1NamespacedDeployment", 9001 "parameters": [ 9002 { 9003 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 9004 "in": "query", 9005 "name": "dryRun", 9006 "schema": { 9007 "type": "string", 9008 "uniqueItems": true 9009 } 9010 }, 9011 { 9012 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 9013 "in": "query", 9014 "name": "gracePeriodSeconds", 9015 "schema": { 9016 "type": "integer", 9017 "uniqueItems": true 9018 } 9019 }, 9020 { 9021 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 9022 "in": "query", 9023 "name": "orphanDependents", 9024 "schema": { 9025 "type": "boolean", 9026 "uniqueItems": true 9027 } 9028 }, 9029 { 9030 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 9031 "in": "query", 9032 "name": "propagationPolicy", 9033 "schema": { 9034 "type": "string", 9035 "uniqueItems": true 9036 } 9037 } 9038 ], 9039 "requestBody": { 9040 "content": { 9041 "*/*": { 9042 "schema": { 9043 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 9044 } 9045 } 9046 } 9047 }, 9048 "responses": { 9049 "200": { 9050 "content": { 9051 "application/json": { 9052 "schema": { 9053 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 9054 } 9055 }, 9056 "application/vnd.kubernetes.protobuf": { 9057 "schema": { 9058 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 9059 } 9060 }, 9061 "application/yaml": { 9062 "schema": { 9063 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 9064 } 9065 } 9066 }, 9067 "description": "OK" 9068 }, 9069 "202": { 9070 "content": { 9071 "application/json": { 9072 "schema": { 9073 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 9074 } 9075 }, 9076 "application/vnd.kubernetes.protobuf": { 9077 "schema": { 9078 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 9079 } 9080 }, 9081 "application/yaml": { 9082 "schema": { 9083 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 9084 } 9085 } 9086 }, 9087 "description": "Accepted" 9088 }, 9089 "401": { 9090 "description": "Unauthorized" 9091 } 9092 }, 9093 "tags": [ 9094 "apps_v1" 9095 ], 9096 "x-kubernetes-action": "delete", 9097 "x-kubernetes-group-version-kind": { 9098 "group": "apps", 9099 "kind": "Deployment", 9100 "version": "v1" 9101 } 9102 }, 9103 "get": { 9104 "description": "read the specified Deployment", 9105 "operationId": "readAppsV1NamespacedDeployment", 9106 "responses": { 9107 "200": { 9108 "content": { 9109 "application/json": { 9110 "schema": { 9111 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9112 } 9113 }, 9114 "application/vnd.kubernetes.protobuf": { 9115 "schema": { 9116 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9117 } 9118 }, 9119 "application/yaml": { 9120 "schema": { 9121 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9122 } 9123 } 9124 }, 9125 "description": "OK" 9126 }, 9127 "401": { 9128 "description": "Unauthorized" 9129 } 9130 }, 9131 "tags": [ 9132 "apps_v1" 9133 ], 9134 "x-kubernetes-action": "get", 9135 "x-kubernetes-group-version-kind": { 9136 "group": "apps", 9137 "kind": "Deployment", 9138 "version": "v1" 9139 } 9140 }, 9141 "parameters": [ 9142 { 9143 "description": "name of the Deployment", 9144 "in": "path", 9145 "name": "name", 9146 "required": true, 9147 "schema": { 9148 "type": "string", 9149 "uniqueItems": true 9150 } 9151 }, 9152 { 9153 "description": "object name and auth scope, such as for teams and projects", 9154 "in": "path", 9155 "name": "namespace", 9156 "required": true, 9157 "schema": { 9158 "type": "string", 9159 "uniqueItems": true 9160 } 9161 }, 9162 { 9163 "description": "If 'true', then the output is pretty printed.", 9164 "in": "query", 9165 "name": "pretty", 9166 "schema": { 9167 "type": "string", 9168 "uniqueItems": true 9169 } 9170 } 9171 ], 9172 "patch": { 9173 "description": "partially update the specified Deployment", 9174 "operationId": "patchAppsV1NamespacedDeployment", 9175 "parameters": [ 9176 { 9177 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 9178 "in": "query", 9179 "name": "dryRun", 9180 "schema": { 9181 "type": "string", 9182 "uniqueItems": true 9183 } 9184 }, 9185 { 9186 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", 9187 "in": "query", 9188 "name": "fieldManager", 9189 "schema": { 9190 "type": "string", 9191 "uniqueItems": true 9192 } 9193 }, 9194 { 9195 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 9196 "in": "query", 9197 "name": "fieldValidation", 9198 "schema": { 9199 "type": "string", 9200 "uniqueItems": true 9201 } 9202 }, 9203 { 9204 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.", 9205 "in": "query", 9206 "name": "force", 9207 "schema": { 9208 "type": "boolean", 9209 "uniqueItems": true 9210 } 9211 } 9212 ], 9213 "requestBody": { 9214 "content": { 9215 "application/apply-patch+yaml": { 9216 "schema": { 9217 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 9218 } 9219 }, 9220 "application/json-patch+json": { 9221 "schema": { 9222 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 9223 } 9224 }, 9225 "application/merge-patch+json": { 9226 "schema": { 9227 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 9228 } 9229 }, 9230 "application/strategic-merge-patch+json": { 9231 "schema": { 9232 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 9233 } 9234 } 9235 } 9236 }, 9237 "responses": { 9238 "200": { 9239 "content": { 9240 "application/json": { 9241 "schema": { 9242 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9243 } 9244 }, 9245 "application/vnd.kubernetes.protobuf": { 9246 "schema": { 9247 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9248 } 9249 }, 9250 "application/yaml": { 9251 "schema": { 9252 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9253 } 9254 } 9255 }, 9256 "description": "OK" 9257 }, 9258 "201": { 9259 "content": { 9260 "application/json": { 9261 "schema": { 9262 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9263 } 9264 }, 9265 "application/vnd.kubernetes.protobuf": { 9266 "schema": { 9267 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9268 } 9269 }, 9270 "application/yaml": { 9271 "schema": { 9272 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9273 } 9274 } 9275 }, 9276 "description": "Created" 9277 }, 9278 "401": { 9279 "description": "Unauthorized" 9280 } 9281 }, 9282 "tags": [ 9283 "apps_v1" 9284 ], 9285 "x-kubernetes-action": "patch", 9286 "x-kubernetes-group-version-kind": { 9287 "group": "apps", 9288 "kind": "Deployment", 9289 "version": "v1" 9290 } 9291 }, 9292 "put": { 9293 "description": "replace the specified Deployment", 9294 "operationId": "replaceAppsV1NamespacedDeployment", 9295 "parameters": [ 9296 { 9297 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 9298 "in": "query", 9299 "name": "dryRun", 9300 "schema": { 9301 "type": "string", 9302 "uniqueItems": true 9303 } 9304 }, 9305 { 9306 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 9307 "in": "query", 9308 "name": "fieldManager", 9309 "schema": { 9310 "type": "string", 9311 "uniqueItems": true 9312 } 9313 }, 9314 { 9315 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 9316 "in": "query", 9317 "name": "fieldValidation", 9318 "schema": { 9319 "type": "string", 9320 "uniqueItems": true 9321 } 9322 } 9323 ], 9324 "requestBody": { 9325 "content": { 9326 "*/*": { 9327 "schema": { 9328 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9329 } 9330 } 9331 } 9332 }, 9333 "responses": { 9334 "200": { 9335 "content": { 9336 "application/json": { 9337 "schema": { 9338 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9339 } 9340 }, 9341 "application/vnd.kubernetes.protobuf": { 9342 "schema": { 9343 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9344 } 9345 }, 9346 "application/yaml": { 9347 "schema": { 9348 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9349 } 9350 } 9351 }, 9352 "description": "OK" 9353 }, 9354 "201": { 9355 "content": { 9356 "application/json": { 9357 "schema": { 9358 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9359 } 9360 }, 9361 "application/vnd.kubernetes.protobuf": { 9362 "schema": { 9363 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9364 } 9365 }, 9366 "application/yaml": { 9367 "schema": { 9368 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9369 } 9370 } 9371 }, 9372 "description": "Created" 9373 }, 9374 "401": { 9375 "description": "Unauthorized" 9376 } 9377 }, 9378 "tags": [ 9379 "apps_v1" 9380 ], 9381 "x-kubernetes-action": "put", 9382 "x-kubernetes-group-version-kind": { 9383 "group": "apps", 9384 "kind": "Deployment", 9385 "version": "v1" 9386 } 9387 } 9388 }, 9389 "/apis/apps/v1/namespaces/{namespace}/deployments/{name}/scale": { 9390 "get": { 9391 "description": "read scale of the specified Deployment", 9392 "operationId": "readAppsV1NamespacedDeploymentScale", 9393 "responses": { 9394 "200": { 9395 "content": { 9396 "application/json": { 9397 "schema": { 9398 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 9399 } 9400 }, 9401 "application/vnd.kubernetes.protobuf": { 9402 "schema": { 9403 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 9404 } 9405 }, 9406 "application/yaml": { 9407 "schema": { 9408 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 9409 } 9410 } 9411 }, 9412 "description": "OK" 9413 }, 9414 "401": { 9415 "description": "Unauthorized" 9416 } 9417 }, 9418 "tags": [ 9419 "apps_v1" 9420 ], 9421 "x-kubernetes-action": "get", 9422 "x-kubernetes-group-version-kind": { 9423 "group": "autoscaling", 9424 "kind": "Scale", 9425 "version": "v1" 9426 } 9427 }, 9428 "parameters": [ 9429 { 9430 "description": "name of the Scale", 9431 "in": "path", 9432 "name": "name", 9433 "required": true, 9434 "schema": { 9435 "type": "string", 9436 "uniqueItems": true 9437 } 9438 }, 9439 { 9440 "description": "object name and auth scope, such as for teams and projects", 9441 "in": "path", 9442 "name": "namespace", 9443 "required": true, 9444 "schema": { 9445 "type": "string", 9446 "uniqueItems": true 9447 } 9448 }, 9449 { 9450 "description": "If 'true', then the output is pretty printed.", 9451 "in": "query", 9452 "name": "pretty", 9453 "schema": { 9454 "type": "string", 9455 "uniqueItems": true 9456 } 9457 } 9458 ], 9459 "patch": { 9460 "description": "partially update scale of the specified Deployment", 9461 "operationId": "patchAppsV1NamespacedDeploymentScale", 9462 "parameters": [ 9463 { 9464 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 9465 "in": "query", 9466 "name": "dryRun", 9467 "schema": { 9468 "type": "string", 9469 "uniqueItems": true 9470 } 9471 }, 9472 { 9473 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", 9474 "in": "query", 9475 "name": "fieldManager", 9476 "schema": { 9477 "type": "string", 9478 "uniqueItems": true 9479 } 9480 }, 9481 { 9482 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 9483 "in": "query", 9484 "name": "fieldValidation", 9485 "schema": { 9486 "type": "string", 9487 "uniqueItems": true 9488 } 9489 }, 9490 { 9491 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.", 9492 "in": "query", 9493 "name": "force", 9494 "schema": { 9495 "type": "boolean", 9496 "uniqueItems": true 9497 } 9498 } 9499 ], 9500 "requestBody": { 9501 "content": { 9502 "application/apply-patch+yaml": { 9503 "schema": { 9504 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 9505 } 9506 }, 9507 "application/json-patch+json": { 9508 "schema": { 9509 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 9510 } 9511 }, 9512 "application/merge-patch+json": { 9513 "schema": { 9514 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 9515 } 9516 }, 9517 "application/strategic-merge-patch+json": { 9518 "schema": { 9519 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 9520 } 9521 } 9522 } 9523 }, 9524 "responses": { 9525 "200": { 9526 "content": { 9527 "application/json": { 9528 "schema": { 9529 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 9530 } 9531 }, 9532 "application/vnd.kubernetes.protobuf": { 9533 "schema": { 9534 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 9535 } 9536 }, 9537 "application/yaml": { 9538 "schema": { 9539 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 9540 } 9541 } 9542 }, 9543 "description": "OK" 9544 }, 9545 "201": { 9546 "content": { 9547 "application/json": { 9548 "schema": { 9549 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 9550 } 9551 }, 9552 "application/vnd.kubernetes.protobuf": { 9553 "schema": { 9554 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 9555 } 9556 }, 9557 "application/yaml": { 9558 "schema": { 9559 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 9560 } 9561 } 9562 }, 9563 "description": "Created" 9564 }, 9565 "401": { 9566 "description": "Unauthorized" 9567 } 9568 }, 9569 "tags": [ 9570 "apps_v1" 9571 ], 9572 "x-kubernetes-action": "patch", 9573 "x-kubernetes-group-version-kind": { 9574 "group": "autoscaling", 9575 "kind": "Scale", 9576 "version": "v1" 9577 } 9578 }, 9579 "put": { 9580 "description": "replace scale of the specified Deployment", 9581 "operationId": "replaceAppsV1NamespacedDeploymentScale", 9582 "parameters": [ 9583 { 9584 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 9585 "in": "query", 9586 "name": "dryRun", 9587 "schema": { 9588 "type": "string", 9589 "uniqueItems": true 9590 } 9591 }, 9592 { 9593 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 9594 "in": "query", 9595 "name": "fieldManager", 9596 "schema": { 9597 "type": "string", 9598 "uniqueItems": true 9599 } 9600 }, 9601 { 9602 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 9603 "in": "query", 9604 "name": "fieldValidation", 9605 "schema": { 9606 "type": "string", 9607 "uniqueItems": true 9608 } 9609 } 9610 ], 9611 "requestBody": { 9612 "content": { 9613 "*/*": { 9614 "schema": { 9615 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 9616 } 9617 } 9618 } 9619 }, 9620 "responses": { 9621 "200": { 9622 "content": { 9623 "application/json": { 9624 "schema": { 9625 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 9626 } 9627 }, 9628 "application/vnd.kubernetes.protobuf": { 9629 "schema": { 9630 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 9631 } 9632 }, 9633 "application/yaml": { 9634 "schema": { 9635 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 9636 } 9637 } 9638 }, 9639 "description": "OK" 9640 }, 9641 "201": { 9642 "content": { 9643 "application/json": { 9644 "schema": { 9645 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 9646 } 9647 }, 9648 "application/vnd.kubernetes.protobuf": { 9649 "schema": { 9650 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 9651 } 9652 }, 9653 "application/yaml": { 9654 "schema": { 9655 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 9656 } 9657 } 9658 }, 9659 "description": "Created" 9660 }, 9661 "401": { 9662 "description": "Unauthorized" 9663 } 9664 }, 9665 "tags": [ 9666 "apps_v1" 9667 ], 9668 "x-kubernetes-action": "put", 9669 "x-kubernetes-group-version-kind": { 9670 "group": "autoscaling", 9671 "kind": "Scale", 9672 "version": "v1" 9673 } 9674 } 9675 }, 9676 "/apis/apps/v1/namespaces/{namespace}/deployments/{name}/status": { 9677 "get": { 9678 "description": "read status of the specified Deployment", 9679 "operationId": "readAppsV1NamespacedDeploymentStatus", 9680 "responses": { 9681 "200": { 9682 "content": { 9683 "application/json": { 9684 "schema": { 9685 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9686 } 9687 }, 9688 "application/vnd.kubernetes.protobuf": { 9689 "schema": { 9690 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9691 } 9692 }, 9693 "application/yaml": { 9694 "schema": { 9695 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9696 } 9697 } 9698 }, 9699 "description": "OK" 9700 }, 9701 "401": { 9702 "description": "Unauthorized" 9703 } 9704 }, 9705 "tags": [ 9706 "apps_v1" 9707 ], 9708 "x-kubernetes-action": "get", 9709 "x-kubernetes-group-version-kind": { 9710 "group": "apps", 9711 "kind": "Deployment", 9712 "version": "v1" 9713 } 9714 }, 9715 "parameters": [ 9716 { 9717 "description": "name of the Deployment", 9718 "in": "path", 9719 "name": "name", 9720 "required": true, 9721 "schema": { 9722 "type": "string", 9723 "uniqueItems": true 9724 } 9725 }, 9726 { 9727 "description": "object name and auth scope, such as for teams and projects", 9728 "in": "path", 9729 "name": "namespace", 9730 "required": true, 9731 "schema": { 9732 "type": "string", 9733 "uniqueItems": true 9734 } 9735 }, 9736 { 9737 "description": "If 'true', then the output is pretty printed.", 9738 "in": "query", 9739 "name": "pretty", 9740 "schema": { 9741 "type": "string", 9742 "uniqueItems": true 9743 } 9744 } 9745 ], 9746 "patch": { 9747 "description": "partially update status of the specified Deployment", 9748 "operationId": "patchAppsV1NamespacedDeploymentStatus", 9749 "parameters": [ 9750 { 9751 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 9752 "in": "query", 9753 "name": "dryRun", 9754 "schema": { 9755 "type": "string", 9756 "uniqueItems": true 9757 } 9758 }, 9759 { 9760 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", 9761 "in": "query", 9762 "name": "fieldManager", 9763 "schema": { 9764 "type": "string", 9765 "uniqueItems": true 9766 } 9767 }, 9768 { 9769 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 9770 "in": "query", 9771 "name": "fieldValidation", 9772 "schema": { 9773 "type": "string", 9774 "uniqueItems": true 9775 } 9776 }, 9777 { 9778 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.", 9779 "in": "query", 9780 "name": "force", 9781 "schema": { 9782 "type": "boolean", 9783 "uniqueItems": true 9784 } 9785 } 9786 ], 9787 "requestBody": { 9788 "content": { 9789 "application/apply-patch+yaml": { 9790 "schema": { 9791 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 9792 } 9793 }, 9794 "application/json-patch+json": { 9795 "schema": { 9796 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 9797 } 9798 }, 9799 "application/merge-patch+json": { 9800 "schema": { 9801 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 9802 } 9803 }, 9804 "application/strategic-merge-patch+json": { 9805 "schema": { 9806 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 9807 } 9808 } 9809 } 9810 }, 9811 "responses": { 9812 "200": { 9813 "content": { 9814 "application/json": { 9815 "schema": { 9816 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9817 } 9818 }, 9819 "application/vnd.kubernetes.protobuf": { 9820 "schema": { 9821 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9822 } 9823 }, 9824 "application/yaml": { 9825 "schema": { 9826 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9827 } 9828 } 9829 }, 9830 "description": "OK" 9831 }, 9832 "201": { 9833 "content": { 9834 "application/json": { 9835 "schema": { 9836 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9837 } 9838 }, 9839 "application/vnd.kubernetes.protobuf": { 9840 "schema": { 9841 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9842 } 9843 }, 9844 "application/yaml": { 9845 "schema": { 9846 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9847 } 9848 } 9849 }, 9850 "description": "Created" 9851 }, 9852 "401": { 9853 "description": "Unauthorized" 9854 } 9855 }, 9856 "tags": [ 9857 "apps_v1" 9858 ], 9859 "x-kubernetes-action": "patch", 9860 "x-kubernetes-group-version-kind": { 9861 "group": "apps", 9862 "kind": "Deployment", 9863 "version": "v1" 9864 } 9865 }, 9866 "put": { 9867 "description": "replace status of the specified Deployment", 9868 "operationId": "replaceAppsV1NamespacedDeploymentStatus", 9869 "parameters": [ 9870 { 9871 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 9872 "in": "query", 9873 "name": "dryRun", 9874 "schema": { 9875 "type": "string", 9876 "uniqueItems": true 9877 } 9878 }, 9879 { 9880 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 9881 "in": "query", 9882 "name": "fieldManager", 9883 "schema": { 9884 "type": "string", 9885 "uniqueItems": true 9886 } 9887 }, 9888 { 9889 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 9890 "in": "query", 9891 "name": "fieldValidation", 9892 "schema": { 9893 "type": "string", 9894 "uniqueItems": true 9895 } 9896 } 9897 ], 9898 "requestBody": { 9899 "content": { 9900 "*/*": { 9901 "schema": { 9902 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9903 } 9904 } 9905 } 9906 }, 9907 "responses": { 9908 "200": { 9909 "content": { 9910 "application/json": { 9911 "schema": { 9912 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9913 } 9914 }, 9915 "application/vnd.kubernetes.protobuf": { 9916 "schema": { 9917 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9918 } 9919 }, 9920 "application/yaml": { 9921 "schema": { 9922 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9923 } 9924 } 9925 }, 9926 "description": "OK" 9927 }, 9928 "201": { 9929 "content": { 9930 "application/json": { 9931 "schema": { 9932 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9933 } 9934 }, 9935 "application/vnd.kubernetes.protobuf": { 9936 "schema": { 9937 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9938 } 9939 }, 9940 "application/yaml": { 9941 "schema": { 9942 "$ref": "#/components/schemas/io.k8s.api.apps.v1.Deployment" 9943 } 9944 } 9945 }, 9946 "description": "Created" 9947 }, 9948 "401": { 9949 "description": "Unauthorized" 9950 } 9951 }, 9952 "tags": [ 9953 "apps_v1" 9954 ], 9955 "x-kubernetes-action": "put", 9956 "x-kubernetes-group-version-kind": { 9957 "group": "apps", 9958 "kind": "Deployment", 9959 "version": "v1" 9960 } 9961 } 9962 }, 9963 "/apis/apps/v1/namespaces/{namespace}/replicasets": { 9964 "delete": { 9965 "description": "delete collection of ReplicaSet", 9966 "operationId": "deleteAppsV1CollectionNamespacedReplicaSet", 9967 "parameters": [ 9968 { 9969 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 9970 "in": "query", 9971 "name": "continue", 9972 "schema": { 9973 "type": "string", 9974 "uniqueItems": true 9975 } 9976 }, 9977 { 9978 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 9979 "in": "query", 9980 "name": "dryRun", 9981 "schema": { 9982 "type": "string", 9983 "uniqueItems": true 9984 } 9985 }, 9986 { 9987 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 9988 "in": "query", 9989 "name": "fieldSelector", 9990 "schema": { 9991 "type": "string", 9992 "uniqueItems": true 9993 } 9994 }, 9995 { 9996 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 9997 "in": "query", 9998 "name": "gracePeriodSeconds", 9999 "schema": { 10000 "type": "integer", 10001 "uniqueItems": true 10002 } 10003 }, 10004 { 10005 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 10006 "in": "query", 10007 "name": "labelSelector", 10008 "schema": { 10009 "type": "string", 10010 "uniqueItems": true 10011 } 10012 }, 10013 { 10014 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 10015 "in": "query", 10016 "name": "limit", 10017 "schema": { 10018 "type": "integer", 10019 "uniqueItems": true 10020 } 10021 }, 10022 { 10023 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 10024 "in": "query", 10025 "name": "orphanDependents", 10026 "schema": { 10027 "type": "boolean", 10028 "uniqueItems": true 10029 } 10030 }, 10031 { 10032 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 10033 "in": "query", 10034 "name": "propagationPolicy", 10035 "schema": { 10036 "type": "string", 10037 "uniqueItems": true 10038 } 10039 }, 10040 { 10041 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 10042 "in": "query", 10043 "name": "resourceVersion", 10044 "schema": { 10045 "type": "string", 10046 "uniqueItems": true 10047 } 10048 }, 10049 { 10050 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 10051 "in": "query", 10052 "name": "resourceVersionMatch", 10053 "schema": { 10054 "type": "string", 10055 "uniqueItems": true 10056 } 10057 }, 10058 { 10059 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 10060 "in": "query", 10061 "name": "timeoutSeconds", 10062 "schema": { 10063 "type": "integer", 10064 "uniqueItems": true 10065 } 10066 } 10067 ], 10068 "requestBody": { 10069 "content": { 10070 "*/*": { 10071 "schema": { 10072 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 10073 } 10074 } 10075 } 10076 }, 10077 "responses": { 10078 "200": { 10079 "content": { 10080 "application/json": { 10081 "schema": { 10082 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 10083 } 10084 }, 10085 "application/vnd.kubernetes.protobuf": { 10086 "schema": { 10087 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 10088 } 10089 }, 10090 "application/yaml": { 10091 "schema": { 10092 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 10093 } 10094 } 10095 }, 10096 "description": "OK" 10097 }, 10098 "401": { 10099 "description": "Unauthorized" 10100 } 10101 }, 10102 "tags": [ 10103 "apps_v1" 10104 ], 10105 "x-kubernetes-action": "deletecollection", 10106 "x-kubernetes-group-version-kind": { 10107 "group": "apps", 10108 "kind": "ReplicaSet", 10109 "version": "v1" 10110 } 10111 }, 10112 "get": { 10113 "description": "list or watch objects of kind ReplicaSet", 10114 "operationId": "listAppsV1NamespacedReplicaSet", 10115 "parameters": [ 10116 { 10117 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 10118 "in": "query", 10119 "name": "allowWatchBookmarks", 10120 "schema": { 10121 "type": "boolean", 10122 "uniqueItems": true 10123 } 10124 }, 10125 { 10126 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 10127 "in": "query", 10128 "name": "continue", 10129 "schema": { 10130 "type": "string", 10131 "uniqueItems": true 10132 } 10133 }, 10134 { 10135 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 10136 "in": "query", 10137 "name": "fieldSelector", 10138 "schema": { 10139 "type": "string", 10140 "uniqueItems": true 10141 } 10142 }, 10143 { 10144 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 10145 "in": "query", 10146 "name": "labelSelector", 10147 "schema": { 10148 "type": "string", 10149 "uniqueItems": true 10150 } 10151 }, 10152 { 10153 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 10154 "in": "query", 10155 "name": "limit", 10156 "schema": { 10157 "type": "integer", 10158 "uniqueItems": true 10159 } 10160 }, 10161 { 10162 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 10163 "in": "query", 10164 "name": "resourceVersion", 10165 "schema": { 10166 "type": "string", 10167 "uniqueItems": true 10168 } 10169 }, 10170 { 10171 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 10172 "in": "query", 10173 "name": "resourceVersionMatch", 10174 "schema": { 10175 "type": "string", 10176 "uniqueItems": true 10177 } 10178 }, 10179 { 10180 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 10181 "in": "query", 10182 "name": "timeoutSeconds", 10183 "schema": { 10184 "type": "integer", 10185 "uniqueItems": true 10186 } 10187 }, 10188 { 10189 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 10190 "in": "query", 10191 "name": "watch", 10192 "schema": { 10193 "type": "boolean", 10194 "uniqueItems": true 10195 } 10196 } 10197 ], 10198 "responses": { 10199 "200": { 10200 "content": { 10201 "application/json": { 10202 "schema": { 10203 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetList" 10204 } 10205 }, 10206 "application/json;stream=watch": { 10207 "schema": { 10208 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetList" 10209 } 10210 }, 10211 "application/vnd.kubernetes.protobuf": { 10212 "schema": { 10213 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetList" 10214 } 10215 }, 10216 "application/vnd.kubernetes.protobuf;stream=watch": { 10217 "schema": { 10218 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetList" 10219 } 10220 }, 10221 "application/yaml": { 10222 "schema": { 10223 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetList" 10224 } 10225 } 10226 }, 10227 "description": "OK" 10228 }, 10229 "401": { 10230 "description": "Unauthorized" 10231 } 10232 }, 10233 "tags": [ 10234 "apps_v1" 10235 ], 10236 "x-kubernetes-action": "list", 10237 "x-kubernetes-group-version-kind": { 10238 "group": "apps", 10239 "kind": "ReplicaSet", 10240 "version": "v1" 10241 } 10242 }, 10243 "parameters": [ 10244 { 10245 "description": "object name and auth scope, such as for teams and projects", 10246 "in": "path", 10247 "name": "namespace", 10248 "required": true, 10249 "schema": { 10250 "type": "string", 10251 "uniqueItems": true 10252 } 10253 }, 10254 { 10255 "description": "If 'true', then the output is pretty printed.", 10256 "in": "query", 10257 "name": "pretty", 10258 "schema": { 10259 "type": "string", 10260 "uniqueItems": true 10261 } 10262 } 10263 ], 10264 "post": { 10265 "description": "create a ReplicaSet", 10266 "operationId": "createAppsV1NamespacedReplicaSet", 10267 "parameters": [ 10268 { 10269 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 10270 "in": "query", 10271 "name": "dryRun", 10272 "schema": { 10273 "type": "string", 10274 "uniqueItems": true 10275 } 10276 }, 10277 { 10278 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 10279 "in": "query", 10280 "name": "fieldManager", 10281 "schema": { 10282 "type": "string", 10283 "uniqueItems": true 10284 } 10285 }, 10286 { 10287 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 10288 "in": "query", 10289 "name": "fieldValidation", 10290 "schema": { 10291 "type": "string", 10292 "uniqueItems": true 10293 } 10294 } 10295 ], 10296 "requestBody": { 10297 "content": { 10298 "*/*": { 10299 "schema": { 10300 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10301 } 10302 } 10303 } 10304 }, 10305 "responses": { 10306 "200": { 10307 "content": { 10308 "application/json": { 10309 "schema": { 10310 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10311 } 10312 }, 10313 "application/vnd.kubernetes.protobuf": { 10314 "schema": { 10315 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10316 } 10317 }, 10318 "application/yaml": { 10319 "schema": { 10320 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10321 } 10322 } 10323 }, 10324 "description": "OK" 10325 }, 10326 "201": { 10327 "content": { 10328 "application/json": { 10329 "schema": { 10330 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10331 } 10332 }, 10333 "application/vnd.kubernetes.protobuf": { 10334 "schema": { 10335 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10336 } 10337 }, 10338 "application/yaml": { 10339 "schema": { 10340 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10341 } 10342 } 10343 }, 10344 "description": "Created" 10345 }, 10346 "202": { 10347 "content": { 10348 "application/json": { 10349 "schema": { 10350 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10351 } 10352 }, 10353 "application/vnd.kubernetes.protobuf": { 10354 "schema": { 10355 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10356 } 10357 }, 10358 "application/yaml": { 10359 "schema": { 10360 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10361 } 10362 } 10363 }, 10364 "description": "Accepted" 10365 }, 10366 "401": { 10367 "description": "Unauthorized" 10368 } 10369 }, 10370 "tags": [ 10371 "apps_v1" 10372 ], 10373 "x-kubernetes-action": "post", 10374 "x-kubernetes-group-version-kind": { 10375 "group": "apps", 10376 "kind": "ReplicaSet", 10377 "version": "v1" 10378 } 10379 } 10380 }, 10381 "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}": { 10382 "delete": { 10383 "description": "delete a ReplicaSet", 10384 "operationId": "deleteAppsV1NamespacedReplicaSet", 10385 "parameters": [ 10386 { 10387 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 10388 "in": "query", 10389 "name": "dryRun", 10390 "schema": { 10391 "type": "string", 10392 "uniqueItems": true 10393 } 10394 }, 10395 { 10396 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 10397 "in": "query", 10398 "name": "gracePeriodSeconds", 10399 "schema": { 10400 "type": "integer", 10401 "uniqueItems": true 10402 } 10403 }, 10404 { 10405 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 10406 "in": "query", 10407 "name": "orphanDependents", 10408 "schema": { 10409 "type": "boolean", 10410 "uniqueItems": true 10411 } 10412 }, 10413 { 10414 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 10415 "in": "query", 10416 "name": "propagationPolicy", 10417 "schema": { 10418 "type": "string", 10419 "uniqueItems": true 10420 } 10421 } 10422 ], 10423 "requestBody": { 10424 "content": { 10425 "*/*": { 10426 "schema": { 10427 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 10428 } 10429 } 10430 } 10431 }, 10432 "responses": { 10433 "200": { 10434 "content": { 10435 "application/json": { 10436 "schema": { 10437 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 10438 } 10439 }, 10440 "application/vnd.kubernetes.protobuf": { 10441 "schema": { 10442 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 10443 } 10444 }, 10445 "application/yaml": { 10446 "schema": { 10447 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 10448 } 10449 } 10450 }, 10451 "description": "OK" 10452 }, 10453 "202": { 10454 "content": { 10455 "application/json": { 10456 "schema": { 10457 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 10458 } 10459 }, 10460 "application/vnd.kubernetes.protobuf": { 10461 "schema": { 10462 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 10463 } 10464 }, 10465 "application/yaml": { 10466 "schema": { 10467 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 10468 } 10469 } 10470 }, 10471 "description": "Accepted" 10472 }, 10473 "401": { 10474 "description": "Unauthorized" 10475 } 10476 }, 10477 "tags": [ 10478 "apps_v1" 10479 ], 10480 "x-kubernetes-action": "delete", 10481 "x-kubernetes-group-version-kind": { 10482 "group": "apps", 10483 "kind": "ReplicaSet", 10484 "version": "v1" 10485 } 10486 }, 10487 "get": { 10488 "description": "read the specified ReplicaSet", 10489 "operationId": "readAppsV1NamespacedReplicaSet", 10490 "responses": { 10491 "200": { 10492 "content": { 10493 "application/json": { 10494 "schema": { 10495 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10496 } 10497 }, 10498 "application/vnd.kubernetes.protobuf": { 10499 "schema": { 10500 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10501 } 10502 }, 10503 "application/yaml": { 10504 "schema": { 10505 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10506 } 10507 } 10508 }, 10509 "description": "OK" 10510 }, 10511 "401": { 10512 "description": "Unauthorized" 10513 } 10514 }, 10515 "tags": [ 10516 "apps_v1" 10517 ], 10518 "x-kubernetes-action": "get", 10519 "x-kubernetes-group-version-kind": { 10520 "group": "apps", 10521 "kind": "ReplicaSet", 10522 "version": "v1" 10523 } 10524 }, 10525 "parameters": [ 10526 { 10527 "description": "name of the ReplicaSet", 10528 "in": "path", 10529 "name": "name", 10530 "required": true, 10531 "schema": { 10532 "type": "string", 10533 "uniqueItems": true 10534 } 10535 }, 10536 { 10537 "description": "object name and auth scope, such as for teams and projects", 10538 "in": "path", 10539 "name": "namespace", 10540 "required": true, 10541 "schema": { 10542 "type": "string", 10543 "uniqueItems": true 10544 } 10545 }, 10546 { 10547 "description": "If 'true', then the output is pretty printed.", 10548 "in": "query", 10549 "name": "pretty", 10550 "schema": { 10551 "type": "string", 10552 "uniqueItems": true 10553 } 10554 } 10555 ], 10556 "patch": { 10557 "description": "partially update the specified ReplicaSet", 10558 "operationId": "patchAppsV1NamespacedReplicaSet", 10559 "parameters": [ 10560 { 10561 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 10562 "in": "query", 10563 "name": "dryRun", 10564 "schema": { 10565 "type": "string", 10566 "uniqueItems": true 10567 } 10568 }, 10569 { 10570 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", 10571 "in": "query", 10572 "name": "fieldManager", 10573 "schema": { 10574 "type": "string", 10575 "uniqueItems": true 10576 } 10577 }, 10578 { 10579 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 10580 "in": "query", 10581 "name": "fieldValidation", 10582 "schema": { 10583 "type": "string", 10584 "uniqueItems": true 10585 } 10586 }, 10587 { 10588 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.", 10589 "in": "query", 10590 "name": "force", 10591 "schema": { 10592 "type": "boolean", 10593 "uniqueItems": true 10594 } 10595 } 10596 ], 10597 "requestBody": { 10598 "content": { 10599 "application/apply-patch+yaml": { 10600 "schema": { 10601 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 10602 } 10603 }, 10604 "application/json-patch+json": { 10605 "schema": { 10606 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 10607 } 10608 }, 10609 "application/merge-patch+json": { 10610 "schema": { 10611 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 10612 } 10613 }, 10614 "application/strategic-merge-patch+json": { 10615 "schema": { 10616 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 10617 } 10618 } 10619 } 10620 }, 10621 "responses": { 10622 "200": { 10623 "content": { 10624 "application/json": { 10625 "schema": { 10626 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10627 } 10628 }, 10629 "application/vnd.kubernetes.protobuf": { 10630 "schema": { 10631 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10632 } 10633 }, 10634 "application/yaml": { 10635 "schema": { 10636 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10637 } 10638 } 10639 }, 10640 "description": "OK" 10641 }, 10642 "201": { 10643 "content": { 10644 "application/json": { 10645 "schema": { 10646 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10647 } 10648 }, 10649 "application/vnd.kubernetes.protobuf": { 10650 "schema": { 10651 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10652 } 10653 }, 10654 "application/yaml": { 10655 "schema": { 10656 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10657 } 10658 } 10659 }, 10660 "description": "Created" 10661 }, 10662 "401": { 10663 "description": "Unauthorized" 10664 } 10665 }, 10666 "tags": [ 10667 "apps_v1" 10668 ], 10669 "x-kubernetes-action": "patch", 10670 "x-kubernetes-group-version-kind": { 10671 "group": "apps", 10672 "kind": "ReplicaSet", 10673 "version": "v1" 10674 } 10675 }, 10676 "put": { 10677 "description": "replace the specified ReplicaSet", 10678 "operationId": "replaceAppsV1NamespacedReplicaSet", 10679 "parameters": [ 10680 { 10681 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 10682 "in": "query", 10683 "name": "dryRun", 10684 "schema": { 10685 "type": "string", 10686 "uniqueItems": true 10687 } 10688 }, 10689 { 10690 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 10691 "in": "query", 10692 "name": "fieldManager", 10693 "schema": { 10694 "type": "string", 10695 "uniqueItems": true 10696 } 10697 }, 10698 { 10699 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 10700 "in": "query", 10701 "name": "fieldValidation", 10702 "schema": { 10703 "type": "string", 10704 "uniqueItems": true 10705 } 10706 } 10707 ], 10708 "requestBody": { 10709 "content": { 10710 "*/*": { 10711 "schema": { 10712 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10713 } 10714 } 10715 } 10716 }, 10717 "responses": { 10718 "200": { 10719 "content": { 10720 "application/json": { 10721 "schema": { 10722 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10723 } 10724 }, 10725 "application/vnd.kubernetes.protobuf": { 10726 "schema": { 10727 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10728 } 10729 }, 10730 "application/yaml": { 10731 "schema": { 10732 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10733 } 10734 } 10735 }, 10736 "description": "OK" 10737 }, 10738 "201": { 10739 "content": { 10740 "application/json": { 10741 "schema": { 10742 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10743 } 10744 }, 10745 "application/vnd.kubernetes.protobuf": { 10746 "schema": { 10747 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10748 } 10749 }, 10750 "application/yaml": { 10751 "schema": { 10752 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 10753 } 10754 } 10755 }, 10756 "description": "Created" 10757 }, 10758 "401": { 10759 "description": "Unauthorized" 10760 } 10761 }, 10762 "tags": [ 10763 "apps_v1" 10764 ], 10765 "x-kubernetes-action": "put", 10766 "x-kubernetes-group-version-kind": { 10767 "group": "apps", 10768 "kind": "ReplicaSet", 10769 "version": "v1" 10770 } 10771 } 10772 }, 10773 "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/scale": { 10774 "get": { 10775 "description": "read scale of the specified ReplicaSet", 10776 "operationId": "readAppsV1NamespacedReplicaSetScale", 10777 "responses": { 10778 "200": { 10779 "content": { 10780 "application/json": { 10781 "schema": { 10782 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 10783 } 10784 }, 10785 "application/vnd.kubernetes.protobuf": { 10786 "schema": { 10787 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 10788 } 10789 }, 10790 "application/yaml": { 10791 "schema": { 10792 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 10793 } 10794 } 10795 }, 10796 "description": "OK" 10797 }, 10798 "401": { 10799 "description": "Unauthorized" 10800 } 10801 }, 10802 "tags": [ 10803 "apps_v1" 10804 ], 10805 "x-kubernetes-action": "get", 10806 "x-kubernetes-group-version-kind": { 10807 "group": "autoscaling", 10808 "kind": "Scale", 10809 "version": "v1" 10810 } 10811 }, 10812 "parameters": [ 10813 { 10814 "description": "name of the Scale", 10815 "in": "path", 10816 "name": "name", 10817 "required": true, 10818 "schema": { 10819 "type": "string", 10820 "uniqueItems": true 10821 } 10822 }, 10823 { 10824 "description": "object name and auth scope, such as for teams and projects", 10825 "in": "path", 10826 "name": "namespace", 10827 "required": true, 10828 "schema": { 10829 "type": "string", 10830 "uniqueItems": true 10831 } 10832 }, 10833 { 10834 "description": "If 'true', then the output is pretty printed.", 10835 "in": "query", 10836 "name": "pretty", 10837 "schema": { 10838 "type": "string", 10839 "uniqueItems": true 10840 } 10841 } 10842 ], 10843 "patch": { 10844 "description": "partially update scale of the specified ReplicaSet", 10845 "operationId": "patchAppsV1NamespacedReplicaSetScale", 10846 "parameters": [ 10847 { 10848 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 10849 "in": "query", 10850 "name": "dryRun", 10851 "schema": { 10852 "type": "string", 10853 "uniqueItems": true 10854 } 10855 }, 10856 { 10857 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", 10858 "in": "query", 10859 "name": "fieldManager", 10860 "schema": { 10861 "type": "string", 10862 "uniqueItems": true 10863 } 10864 }, 10865 { 10866 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 10867 "in": "query", 10868 "name": "fieldValidation", 10869 "schema": { 10870 "type": "string", 10871 "uniqueItems": true 10872 } 10873 }, 10874 { 10875 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.", 10876 "in": "query", 10877 "name": "force", 10878 "schema": { 10879 "type": "boolean", 10880 "uniqueItems": true 10881 } 10882 } 10883 ], 10884 "requestBody": { 10885 "content": { 10886 "application/apply-patch+yaml": { 10887 "schema": { 10888 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 10889 } 10890 }, 10891 "application/json-patch+json": { 10892 "schema": { 10893 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 10894 } 10895 }, 10896 "application/merge-patch+json": { 10897 "schema": { 10898 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 10899 } 10900 }, 10901 "application/strategic-merge-patch+json": { 10902 "schema": { 10903 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 10904 } 10905 } 10906 } 10907 }, 10908 "responses": { 10909 "200": { 10910 "content": { 10911 "application/json": { 10912 "schema": { 10913 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 10914 } 10915 }, 10916 "application/vnd.kubernetes.protobuf": { 10917 "schema": { 10918 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 10919 } 10920 }, 10921 "application/yaml": { 10922 "schema": { 10923 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 10924 } 10925 } 10926 }, 10927 "description": "OK" 10928 }, 10929 "201": { 10930 "content": { 10931 "application/json": { 10932 "schema": { 10933 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 10934 } 10935 }, 10936 "application/vnd.kubernetes.protobuf": { 10937 "schema": { 10938 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 10939 } 10940 }, 10941 "application/yaml": { 10942 "schema": { 10943 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 10944 } 10945 } 10946 }, 10947 "description": "Created" 10948 }, 10949 "401": { 10950 "description": "Unauthorized" 10951 } 10952 }, 10953 "tags": [ 10954 "apps_v1" 10955 ], 10956 "x-kubernetes-action": "patch", 10957 "x-kubernetes-group-version-kind": { 10958 "group": "autoscaling", 10959 "kind": "Scale", 10960 "version": "v1" 10961 } 10962 }, 10963 "put": { 10964 "description": "replace scale of the specified ReplicaSet", 10965 "operationId": "replaceAppsV1NamespacedReplicaSetScale", 10966 "parameters": [ 10967 { 10968 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 10969 "in": "query", 10970 "name": "dryRun", 10971 "schema": { 10972 "type": "string", 10973 "uniqueItems": true 10974 } 10975 }, 10976 { 10977 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 10978 "in": "query", 10979 "name": "fieldManager", 10980 "schema": { 10981 "type": "string", 10982 "uniqueItems": true 10983 } 10984 }, 10985 { 10986 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 10987 "in": "query", 10988 "name": "fieldValidation", 10989 "schema": { 10990 "type": "string", 10991 "uniqueItems": true 10992 } 10993 } 10994 ], 10995 "requestBody": { 10996 "content": { 10997 "*/*": { 10998 "schema": { 10999 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 11000 } 11001 } 11002 } 11003 }, 11004 "responses": { 11005 "200": { 11006 "content": { 11007 "application/json": { 11008 "schema": { 11009 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 11010 } 11011 }, 11012 "application/vnd.kubernetes.protobuf": { 11013 "schema": { 11014 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 11015 } 11016 }, 11017 "application/yaml": { 11018 "schema": { 11019 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 11020 } 11021 } 11022 }, 11023 "description": "OK" 11024 }, 11025 "201": { 11026 "content": { 11027 "application/json": { 11028 "schema": { 11029 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 11030 } 11031 }, 11032 "application/vnd.kubernetes.protobuf": { 11033 "schema": { 11034 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 11035 } 11036 }, 11037 "application/yaml": { 11038 "schema": { 11039 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 11040 } 11041 } 11042 }, 11043 "description": "Created" 11044 }, 11045 "401": { 11046 "description": "Unauthorized" 11047 } 11048 }, 11049 "tags": [ 11050 "apps_v1" 11051 ], 11052 "x-kubernetes-action": "put", 11053 "x-kubernetes-group-version-kind": { 11054 "group": "autoscaling", 11055 "kind": "Scale", 11056 "version": "v1" 11057 } 11058 } 11059 }, 11060 "/apis/apps/v1/namespaces/{namespace}/replicasets/{name}/status": { 11061 "get": { 11062 "description": "read status of the specified ReplicaSet", 11063 "operationId": "readAppsV1NamespacedReplicaSetStatus", 11064 "responses": { 11065 "200": { 11066 "content": { 11067 "application/json": { 11068 "schema": { 11069 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 11070 } 11071 }, 11072 "application/vnd.kubernetes.protobuf": { 11073 "schema": { 11074 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 11075 } 11076 }, 11077 "application/yaml": { 11078 "schema": { 11079 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 11080 } 11081 } 11082 }, 11083 "description": "OK" 11084 }, 11085 "401": { 11086 "description": "Unauthorized" 11087 } 11088 }, 11089 "tags": [ 11090 "apps_v1" 11091 ], 11092 "x-kubernetes-action": "get", 11093 "x-kubernetes-group-version-kind": { 11094 "group": "apps", 11095 "kind": "ReplicaSet", 11096 "version": "v1" 11097 } 11098 }, 11099 "parameters": [ 11100 { 11101 "description": "name of the ReplicaSet", 11102 "in": "path", 11103 "name": "name", 11104 "required": true, 11105 "schema": { 11106 "type": "string", 11107 "uniqueItems": true 11108 } 11109 }, 11110 { 11111 "description": "object name and auth scope, such as for teams and projects", 11112 "in": "path", 11113 "name": "namespace", 11114 "required": true, 11115 "schema": { 11116 "type": "string", 11117 "uniqueItems": true 11118 } 11119 }, 11120 { 11121 "description": "If 'true', then the output is pretty printed.", 11122 "in": "query", 11123 "name": "pretty", 11124 "schema": { 11125 "type": "string", 11126 "uniqueItems": true 11127 } 11128 } 11129 ], 11130 "patch": { 11131 "description": "partially update status of the specified ReplicaSet", 11132 "operationId": "patchAppsV1NamespacedReplicaSetStatus", 11133 "parameters": [ 11134 { 11135 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 11136 "in": "query", 11137 "name": "dryRun", 11138 "schema": { 11139 "type": "string", 11140 "uniqueItems": true 11141 } 11142 }, 11143 { 11144 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", 11145 "in": "query", 11146 "name": "fieldManager", 11147 "schema": { 11148 "type": "string", 11149 "uniqueItems": true 11150 } 11151 }, 11152 { 11153 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 11154 "in": "query", 11155 "name": "fieldValidation", 11156 "schema": { 11157 "type": "string", 11158 "uniqueItems": true 11159 } 11160 }, 11161 { 11162 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.", 11163 "in": "query", 11164 "name": "force", 11165 "schema": { 11166 "type": "boolean", 11167 "uniqueItems": true 11168 } 11169 } 11170 ], 11171 "requestBody": { 11172 "content": { 11173 "application/apply-patch+yaml": { 11174 "schema": { 11175 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 11176 } 11177 }, 11178 "application/json-patch+json": { 11179 "schema": { 11180 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 11181 } 11182 }, 11183 "application/merge-patch+json": { 11184 "schema": { 11185 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 11186 } 11187 }, 11188 "application/strategic-merge-patch+json": { 11189 "schema": { 11190 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 11191 } 11192 } 11193 } 11194 }, 11195 "responses": { 11196 "200": { 11197 "content": { 11198 "application/json": { 11199 "schema": { 11200 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 11201 } 11202 }, 11203 "application/vnd.kubernetes.protobuf": { 11204 "schema": { 11205 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 11206 } 11207 }, 11208 "application/yaml": { 11209 "schema": { 11210 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 11211 } 11212 } 11213 }, 11214 "description": "OK" 11215 }, 11216 "201": { 11217 "content": { 11218 "application/json": { 11219 "schema": { 11220 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 11221 } 11222 }, 11223 "application/vnd.kubernetes.protobuf": { 11224 "schema": { 11225 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 11226 } 11227 }, 11228 "application/yaml": { 11229 "schema": { 11230 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 11231 } 11232 } 11233 }, 11234 "description": "Created" 11235 }, 11236 "401": { 11237 "description": "Unauthorized" 11238 } 11239 }, 11240 "tags": [ 11241 "apps_v1" 11242 ], 11243 "x-kubernetes-action": "patch", 11244 "x-kubernetes-group-version-kind": { 11245 "group": "apps", 11246 "kind": "ReplicaSet", 11247 "version": "v1" 11248 } 11249 }, 11250 "put": { 11251 "description": "replace status of the specified ReplicaSet", 11252 "operationId": "replaceAppsV1NamespacedReplicaSetStatus", 11253 "parameters": [ 11254 { 11255 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 11256 "in": "query", 11257 "name": "dryRun", 11258 "schema": { 11259 "type": "string", 11260 "uniqueItems": true 11261 } 11262 }, 11263 { 11264 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 11265 "in": "query", 11266 "name": "fieldManager", 11267 "schema": { 11268 "type": "string", 11269 "uniqueItems": true 11270 } 11271 }, 11272 { 11273 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 11274 "in": "query", 11275 "name": "fieldValidation", 11276 "schema": { 11277 "type": "string", 11278 "uniqueItems": true 11279 } 11280 } 11281 ], 11282 "requestBody": { 11283 "content": { 11284 "*/*": { 11285 "schema": { 11286 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 11287 } 11288 } 11289 } 11290 }, 11291 "responses": { 11292 "200": { 11293 "content": { 11294 "application/json": { 11295 "schema": { 11296 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 11297 } 11298 }, 11299 "application/vnd.kubernetes.protobuf": { 11300 "schema": { 11301 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 11302 } 11303 }, 11304 "application/yaml": { 11305 "schema": { 11306 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 11307 } 11308 } 11309 }, 11310 "description": "OK" 11311 }, 11312 "201": { 11313 "content": { 11314 "application/json": { 11315 "schema": { 11316 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 11317 } 11318 }, 11319 "application/vnd.kubernetes.protobuf": { 11320 "schema": { 11321 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 11322 } 11323 }, 11324 "application/yaml": { 11325 "schema": { 11326 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSet" 11327 } 11328 } 11329 }, 11330 "description": "Created" 11331 }, 11332 "401": { 11333 "description": "Unauthorized" 11334 } 11335 }, 11336 "tags": [ 11337 "apps_v1" 11338 ], 11339 "x-kubernetes-action": "put", 11340 "x-kubernetes-group-version-kind": { 11341 "group": "apps", 11342 "kind": "ReplicaSet", 11343 "version": "v1" 11344 } 11345 } 11346 }, 11347 "/apis/apps/v1/namespaces/{namespace}/statefulsets": { 11348 "delete": { 11349 "description": "delete collection of StatefulSet", 11350 "operationId": "deleteAppsV1CollectionNamespacedStatefulSet", 11351 "parameters": [ 11352 { 11353 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 11354 "in": "query", 11355 "name": "continue", 11356 "schema": { 11357 "type": "string", 11358 "uniqueItems": true 11359 } 11360 }, 11361 { 11362 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 11363 "in": "query", 11364 "name": "dryRun", 11365 "schema": { 11366 "type": "string", 11367 "uniqueItems": true 11368 } 11369 }, 11370 { 11371 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 11372 "in": "query", 11373 "name": "fieldSelector", 11374 "schema": { 11375 "type": "string", 11376 "uniqueItems": true 11377 } 11378 }, 11379 { 11380 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 11381 "in": "query", 11382 "name": "gracePeriodSeconds", 11383 "schema": { 11384 "type": "integer", 11385 "uniqueItems": true 11386 } 11387 }, 11388 { 11389 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 11390 "in": "query", 11391 "name": "labelSelector", 11392 "schema": { 11393 "type": "string", 11394 "uniqueItems": true 11395 } 11396 }, 11397 { 11398 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 11399 "in": "query", 11400 "name": "limit", 11401 "schema": { 11402 "type": "integer", 11403 "uniqueItems": true 11404 } 11405 }, 11406 { 11407 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 11408 "in": "query", 11409 "name": "orphanDependents", 11410 "schema": { 11411 "type": "boolean", 11412 "uniqueItems": true 11413 } 11414 }, 11415 { 11416 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 11417 "in": "query", 11418 "name": "propagationPolicy", 11419 "schema": { 11420 "type": "string", 11421 "uniqueItems": true 11422 } 11423 }, 11424 { 11425 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 11426 "in": "query", 11427 "name": "resourceVersion", 11428 "schema": { 11429 "type": "string", 11430 "uniqueItems": true 11431 } 11432 }, 11433 { 11434 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 11435 "in": "query", 11436 "name": "resourceVersionMatch", 11437 "schema": { 11438 "type": "string", 11439 "uniqueItems": true 11440 } 11441 }, 11442 { 11443 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 11444 "in": "query", 11445 "name": "timeoutSeconds", 11446 "schema": { 11447 "type": "integer", 11448 "uniqueItems": true 11449 } 11450 } 11451 ], 11452 "requestBody": { 11453 "content": { 11454 "*/*": { 11455 "schema": { 11456 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 11457 } 11458 } 11459 } 11460 }, 11461 "responses": { 11462 "200": { 11463 "content": { 11464 "application/json": { 11465 "schema": { 11466 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 11467 } 11468 }, 11469 "application/vnd.kubernetes.protobuf": { 11470 "schema": { 11471 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 11472 } 11473 }, 11474 "application/yaml": { 11475 "schema": { 11476 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 11477 } 11478 } 11479 }, 11480 "description": "OK" 11481 }, 11482 "401": { 11483 "description": "Unauthorized" 11484 } 11485 }, 11486 "tags": [ 11487 "apps_v1" 11488 ], 11489 "x-kubernetes-action": "deletecollection", 11490 "x-kubernetes-group-version-kind": { 11491 "group": "apps", 11492 "kind": "StatefulSet", 11493 "version": "v1" 11494 } 11495 }, 11496 "get": { 11497 "description": "list or watch objects of kind StatefulSet", 11498 "operationId": "listAppsV1NamespacedStatefulSet", 11499 "parameters": [ 11500 { 11501 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 11502 "in": "query", 11503 "name": "allowWatchBookmarks", 11504 "schema": { 11505 "type": "boolean", 11506 "uniqueItems": true 11507 } 11508 }, 11509 { 11510 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 11511 "in": "query", 11512 "name": "continue", 11513 "schema": { 11514 "type": "string", 11515 "uniqueItems": true 11516 } 11517 }, 11518 { 11519 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 11520 "in": "query", 11521 "name": "fieldSelector", 11522 "schema": { 11523 "type": "string", 11524 "uniqueItems": true 11525 } 11526 }, 11527 { 11528 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 11529 "in": "query", 11530 "name": "labelSelector", 11531 "schema": { 11532 "type": "string", 11533 "uniqueItems": true 11534 } 11535 }, 11536 { 11537 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 11538 "in": "query", 11539 "name": "limit", 11540 "schema": { 11541 "type": "integer", 11542 "uniqueItems": true 11543 } 11544 }, 11545 { 11546 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 11547 "in": "query", 11548 "name": "resourceVersion", 11549 "schema": { 11550 "type": "string", 11551 "uniqueItems": true 11552 } 11553 }, 11554 { 11555 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 11556 "in": "query", 11557 "name": "resourceVersionMatch", 11558 "schema": { 11559 "type": "string", 11560 "uniqueItems": true 11561 } 11562 }, 11563 { 11564 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 11565 "in": "query", 11566 "name": "timeoutSeconds", 11567 "schema": { 11568 "type": "integer", 11569 "uniqueItems": true 11570 } 11571 }, 11572 { 11573 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 11574 "in": "query", 11575 "name": "watch", 11576 "schema": { 11577 "type": "boolean", 11578 "uniqueItems": true 11579 } 11580 } 11581 ], 11582 "responses": { 11583 "200": { 11584 "content": { 11585 "application/json": { 11586 "schema": { 11587 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetList" 11588 } 11589 }, 11590 "application/json;stream=watch": { 11591 "schema": { 11592 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetList" 11593 } 11594 }, 11595 "application/vnd.kubernetes.protobuf": { 11596 "schema": { 11597 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetList" 11598 } 11599 }, 11600 "application/vnd.kubernetes.protobuf;stream=watch": { 11601 "schema": { 11602 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetList" 11603 } 11604 }, 11605 "application/yaml": { 11606 "schema": { 11607 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetList" 11608 } 11609 } 11610 }, 11611 "description": "OK" 11612 }, 11613 "401": { 11614 "description": "Unauthorized" 11615 } 11616 }, 11617 "tags": [ 11618 "apps_v1" 11619 ], 11620 "x-kubernetes-action": "list", 11621 "x-kubernetes-group-version-kind": { 11622 "group": "apps", 11623 "kind": "StatefulSet", 11624 "version": "v1" 11625 } 11626 }, 11627 "parameters": [ 11628 { 11629 "description": "object name and auth scope, such as for teams and projects", 11630 "in": "path", 11631 "name": "namespace", 11632 "required": true, 11633 "schema": { 11634 "type": "string", 11635 "uniqueItems": true 11636 } 11637 }, 11638 { 11639 "description": "If 'true', then the output is pretty printed.", 11640 "in": "query", 11641 "name": "pretty", 11642 "schema": { 11643 "type": "string", 11644 "uniqueItems": true 11645 } 11646 } 11647 ], 11648 "post": { 11649 "description": "create a StatefulSet", 11650 "operationId": "createAppsV1NamespacedStatefulSet", 11651 "parameters": [ 11652 { 11653 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 11654 "in": "query", 11655 "name": "dryRun", 11656 "schema": { 11657 "type": "string", 11658 "uniqueItems": true 11659 } 11660 }, 11661 { 11662 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 11663 "in": "query", 11664 "name": "fieldManager", 11665 "schema": { 11666 "type": "string", 11667 "uniqueItems": true 11668 } 11669 }, 11670 { 11671 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 11672 "in": "query", 11673 "name": "fieldValidation", 11674 "schema": { 11675 "type": "string", 11676 "uniqueItems": true 11677 } 11678 } 11679 ], 11680 "requestBody": { 11681 "content": { 11682 "*/*": { 11683 "schema": { 11684 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 11685 } 11686 } 11687 } 11688 }, 11689 "responses": { 11690 "200": { 11691 "content": { 11692 "application/json": { 11693 "schema": { 11694 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 11695 } 11696 }, 11697 "application/vnd.kubernetes.protobuf": { 11698 "schema": { 11699 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 11700 } 11701 }, 11702 "application/yaml": { 11703 "schema": { 11704 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 11705 } 11706 } 11707 }, 11708 "description": "OK" 11709 }, 11710 "201": { 11711 "content": { 11712 "application/json": { 11713 "schema": { 11714 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 11715 } 11716 }, 11717 "application/vnd.kubernetes.protobuf": { 11718 "schema": { 11719 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 11720 } 11721 }, 11722 "application/yaml": { 11723 "schema": { 11724 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 11725 } 11726 } 11727 }, 11728 "description": "Created" 11729 }, 11730 "202": { 11731 "content": { 11732 "application/json": { 11733 "schema": { 11734 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 11735 } 11736 }, 11737 "application/vnd.kubernetes.protobuf": { 11738 "schema": { 11739 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 11740 } 11741 }, 11742 "application/yaml": { 11743 "schema": { 11744 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 11745 } 11746 } 11747 }, 11748 "description": "Accepted" 11749 }, 11750 "401": { 11751 "description": "Unauthorized" 11752 } 11753 }, 11754 "tags": [ 11755 "apps_v1" 11756 ], 11757 "x-kubernetes-action": "post", 11758 "x-kubernetes-group-version-kind": { 11759 "group": "apps", 11760 "kind": "StatefulSet", 11761 "version": "v1" 11762 } 11763 } 11764 }, 11765 "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}": { 11766 "delete": { 11767 "description": "delete a StatefulSet", 11768 "operationId": "deleteAppsV1NamespacedStatefulSet", 11769 "parameters": [ 11770 { 11771 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 11772 "in": "query", 11773 "name": "dryRun", 11774 "schema": { 11775 "type": "string", 11776 "uniqueItems": true 11777 } 11778 }, 11779 { 11780 "description": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", 11781 "in": "query", 11782 "name": "gracePeriodSeconds", 11783 "schema": { 11784 "type": "integer", 11785 "uniqueItems": true 11786 } 11787 }, 11788 { 11789 "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", 11790 "in": "query", 11791 "name": "orphanDependents", 11792 "schema": { 11793 "type": "boolean", 11794 "uniqueItems": true 11795 } 11796 }, 11797 { 11798 "description": "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.", 11799 "in": "query", 11800 "name": "propagationPolicy", 11801 "schema": { 11802 "type": "string", 11803 "uniqueItems": true 11804 } 11805 } 11806 ], 11807 "requestBody": { 11808 "content": { 11809 "*/*": { 11810 "schema": { 11811 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions" 11812 } 11813 } 11814 } 11815 }, 11816 "responses": { 11817 "200": { 11818 "content": { 11819 "application/json": { 11820 "schema": { 11821 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 11822 } 11823 }, 11824 "application/vnd.kubernetes.protobuf": { 11825 "schema": { 11826 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 11827 } 11828 }, 11829 "application/yaml": { 11830 "schema": { 11831 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 11832 } 11833 } 11834 }, 11835 "description": "OK" 11836 }, 11837 "202": { 11838 "content": { 11839 "application/json": { 11840 "schema": { 11841 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 11842 } 11843 }, 11844 "application/vnd.kubernetes.protobuf": { 11845 "schema": { 11846 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 11847 } 11848 }, 11849 "application/yaml": { 11850 "schema": { 11851 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Status" 11852 } 11853 } 11854 }, 11855 "description": "Accepted" 11856 }, 11857 "401": { 11858 "description": "Unauthorized" 11859 } 11860 }, 11861 "tags": [ 11862 "apps_v1" 11863 ], 11864 "x-kubernetes-action": "delete", 11865 "x-kubernetes-group-version-kind": { 11866 "group": "apps", 11867 "kind": "StatefulSet", 11868 "version": "v1" 11869 } 11870 }, 11871 "get": { 11872 "description": "read the specified StatefulSet", 11873 "operationId": "readAppsV1NamespacedStatefulSet", 11874 "responses": { 11875 "200": { 11876 "content": { 11877 "application/json": { 11878 "schema": { 11879 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 11880 } 11881 }, 11882 "application/vnd.kubernetes.protobuf": { 11883 "schema": { 11884 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 11885 } 11886 }, 11887 "application/yaml": { 11888 "schema": { 11889 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 11890 } 11891 } 11892 }, 11893 "description": "OK" 11894 }, 11895 "401": { 11896 "description": "Unauthorized" 11897 } 11898 }, 11899 "tags": [ 11900 "apps_v1" 11901 ], 11902 "x-kubernetes-action": "get", 11903 "x-kubernetes-group-version-kind": { 11904 "group": "apps", 11905 "kind": "StatefulSet", 11906 "version": "v1" 11907 } 11908 }, 11909 "parameters": [ 11910 { 11911 "description": "name of the StatefulSet", 11912 "in": "path", 11913 "name": "name", 11914 "required": true, 11915 "schema": { 11916 "type": "string", 11917 "uniqueItems": true 11918 } 11919 }, 11920 { 11921 "description": "object name and auth scope, such as for teams and projects", 11922 "in": "path", 11923 "name": "namespace", 11924 "required": true, 11925 "schema": { 11926 "type": "string", 11927 "uniqueItems": true 11928 } 11929 }, 11930 { 11931 "description": "If 'true', then the output is pretty printed.", 11932 "in": "query", 11933 "name": "pretty", 11934 "schema": { 11935 "type": "string", 11936 "uniqueItems": true 11937 } 11938 } 11939 ], 11940 "patch": { 11941 "description": "partially update the specified StatefulSet", 11942 "operationId": "patchAppsV1NamespacedStatefulSet", 11943 "parameters": [ 11944 { 11945 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 11946 "in": "query", 11947 "name": "dryRun", 11948 "schema": { 11949 "type": "string", 11950 "uniqueItems": true 11951 } 11952 }, 11953 { 11954 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", 11955 "in": "query", 11956 "name": "fieldManager", 11957 "schema": { 11958 "type": "string", 11959 "uniqueItems": true 11960 } 11961 }, 11962 { 11963 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 11964 "in": "query", 11965 "name": "fieldValidation", 11966 "schema": { 11967 "type": "string", 11968 "uniqueItems": true 11969 } 11970 }, 11971 { 11972 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.", 11973 "in": "query", 11974 "name": "force", 11975 "schema": { 11976 "type": "boolean", 11977 "uniqueItems": true 11978 } 11979 } 11980 ], 11981 "requestBody": { 11982 "content": { 11983 "application/apply-patch+yaml": { 11984 "schema": { 11985 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 11986 } 11987 }, 11988 "application/json-patch+json": { 11989 "schema": { 11990 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 11991 } 11992 }, 11993 "application/merge-patch+json": { 11994 "schema": { 11995 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 11996 } 11997 }, 11998 "application/strategic-merge-patch+json": { 11999 "schema": { 12000 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 12001 } 12002 } 12003 } 12004 }, 12005 "responses": { 12006 "200": { 12007 "content": { 12008 "application/json": { 12009 "schema": { 12010 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12011 } 12012 }, 12013 "application/vnd.kubernetes.protobuf": { 12014 "schema": { 12015 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12016 } 12017 }, 12018 "application/yaml": { 12019 "schema": { 12020 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12021 } 12022 } 12023 }, 12024 "description": "OK" 12025 }, 12026 "201": { 12027 "content": { 12028 "application/json": { 12029 "schema": { 12030 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12031 } 12032 }, 12033 "application/vnd.kubernetes.protobuf": { 12034 "schema": { 12035 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12036 } 12037 }, 12038 "application/yaml": { 12039 "schema": { 12040 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12041 } 12042 } 12043 }, 12044 "description": "Created" 12045 }, 12046 "401": { 12047 "description": "Unauthorized" 12048 } 12049 }, 12050 "tags": [ 12051 "apps_v1" 12052 ], 12053 "x-kubernetes-action": "patch", 12054 "x-kubernetes-group-version-kind": { 12055 "group": "apps", 12056 "kind": "StatefulSet", 12057 "version": "v1" 12058 } 12059 }, 12060 "put": { 12061 "description": "replace the specified StatefulSet", 12062 "operationId": "replaceAppsV1NamespacedStatefulSet", 12063 "parameters": [ 12064 { 12065 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 12066 "in": "query", 12067 "name": "dryRun", 12068 "schema": { 12069 "type": "string", 12070 "uniqueItems": true 12071 } 12072 }, 12073 { 12074 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 12075 "in": "query", 12076 "name": "fieldManager", 12077 "schema": { 12078 "type": "string", 12079 "uniqueItems": true 12080 } 12081 }, 12082 { 12083 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 12084 "in": "query", 12085 "name": "fieldValidation", 12086 "schema": { 12087 "type": "string", 12088 "uniqueItems": true 12089 } 12090 } 12091 ], 12092 "requestBody": { 12093 "content": { 12094 "*/*": { 12095 "schema": { 12096 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12097 } 12098 } 12099 } 12100 }, 12101 "responses": { 12102 "200": { 12103 "content": { 12104 "application/json": { 12105 "schema": { 12106 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12107 } 12108 }, 12109 "application/vnd.kubernetes.protobuf": { 12110 "schema": { 12111 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12112 } 12113 }, 12114 "application/yaml": { 12115 "schema": { 12116 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12117 } 12118 } 12119 }, 12120 "description": "OK" 12121 }, 12122 "201": { 12123 "content": { 12124 "application/json": { 12125 "schema": { 12126 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12127 } 12128 }, 12129 "application/vnd.kubernetes.protobuf": { 12130 "schema": { 12131 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12132 } 12133 }, 12134 "application/yaml": { 12135 "schema": { 12136 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12137 } 12138 } 12139 }, 12140 "description": "Created" 12141 }, 12142 "401": { 12143 "description": "Unauthorized" 12144 } 12145 }, 12146 "tags": [ 12147 "apps_v1" 12148 ], 12149 "x-kubernetes-action": "put", 12150 "x-kubernetes-group-version-kind": { 12151 "group": "apps", 12152 "kind": "StatefulSet", 12153 "version": "v1" 12154 } 12155 } 12156 }, 12157 "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/scale": { 12158 "get": { 12159 "description": "read scale of the specified StatefulSet", 12160 "operationId": "readAppsV1NamespacedStatefulSetScale", 12161 "responses": { 12162 "200": { 12163 "content": { 12164 "application/json": { 12165 "schema": { 12166 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 12167 } 12168 }, 12169 "application/vnd.kubernetes.protobuf": { 12170 "schema": { 12171 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 12172 } 12173 }, 12174 "application/yaml": { 12175 "schema": { 12176 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 12177 } 12178 } 12179 }, 12180 "description": "OK" 12181 }, 12182 "401": { 12183 "description": "Unauthorized" 12184 } 12185 }, 12186 "tags": [ 12187 "apps_v1" 12188 ], 12189 "x-kubernetes-action": "get", 12190 "x-kubernetes-group-version-kind": { 12191 "group": "autoscaling", 12192 "kind": "Scale", 12193 "version": "v1" 12194 } 12195 }, 12196 "parameters": [ 12197 { 12198 "description": "name of the Scale", 12199 "in": "path", 12200 "name": "name", 12201 "required": true, 12202 "schema": { 12203 "type": "string", 12204 "uniqueItems": true 12205 } 12206 }, 12207 { 12208 "description": "object name and auth scope, such as for teams and projects", 12209 "in": "path", 12210 "name": "namespace", 12211 "required": true, 12212 "schema": { 12213 "type": "string", 12214 "uniqueItems": true 12215 } 12216 }, 12217 { 12218 "description": "If 'true', then the output is pretty printed.", 12219 "in": "query", 12220 "name": "pretty", 12221 "schema": { 12222 "type": "string", 12223 "uniqueItems": true 12224 } 12225 } 12226 ], 12227 "patch": { 12228 "description": "partially update scale of the specified StatefulSet", 12229 "operationId": "patchAppsV1NamespacedStatefulSetScale", 12230 "parameters": [ 12231 { 12232 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 12233 "in": "query", 12234 "name": "dryRun", 12235 "schema": { 12236 "type": "string", 12237 "uniqueItems": true 12238 } 12239 }, 12240 { 12241 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", 12242 "in": "query", 12243 "name": "fieldManager", 12244 "schema": { 12245 "type": "string", 12246 "uniqueItems": true 12247 } 12248 }, 12249 { 12250 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 12251 "in": "query", 12252 "name": "fieldValidation", 12253 "schema": { 12254 "type": "string", 12255 "uniqueItems": true 12256 } 12257 }, 12258 { 12259 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.", 12260 "in": "query", 12261 "name": "force", 12262 "schema": { 12263 "type": "boolean", 12264 "uniqueItems": true 12265 } 12266 } 12267 ], 12268 "requestBody": { 12269 "content": { 12270 "application/apply-patch+yaml": { 12271 "schema": { 12272 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 12273 } 12274 }, 12275 "application/json-patch+json": { 12276 "schema": { 12277 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 12278 } 12279 }, 12280 "application/merge-patch+json": { 12281 "schema": { 12282 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 12283 } 12284 }, 12285 "application/strategic-merge-patch+json": { 12286 "schema": { 12287 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 12288 } 12289 } 12290 } 12291 }, 12292 "responses": { 12293 "200": { 12294 "content": { 12295 "application/json": { 12296 "schema": { 12297 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 12298 } 12299 }, 12300 "application/vnd.kubernetes.protobuf": { 12301 "schema": { 12302 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 12303 } 12304 }, 12305 "application/yaml": { 12306 "schema": { 12307 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 12308 } 12309 } 12310 }, 12311 "description": "OK" 12312 }, 12313 "201": { 12314 "content": { 12315 "application/json": { 12316 "schema": { 12317 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 12318 } 12319 }, 12320 "application/vnd.kubernetes.protobuf": { 12321 "schema": { 12322 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 12323 } 12324 }, 12325 "application/yaml": { 12326 "schema": { 12327 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 12328 } 12329 } 12330 }, 12331 "description": "Created" 12332 }, 12333 "401": { 12334 "description": "Unauthorized" 12335 } 12336 }, 12337 "tags": [ 12338 "apps_v1" 12339 ], 12340 "x-kubernetes-action": "patch", 12341 "x-kubernetes-group-version-kind": { 12342 "group": "autoscaling", 12343 "kind": "Scale", 12344 "version": "v1" 12345 } 12346 }, 12347 "put": { 12348 "description": "replace scale of the specified StatefulSet", 12349 "operationId": "replaceAppsV1NamespacedStatefulSetScale", 12350 "parameters": [ 12351 { 12352 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 12353 "in": "query", 12354 "name": "dryRun", 12355 "schema": { 12356 "type": "string", 12357 "uniqueItems": true 12358 } 12359 }, 12360 { 12361 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 12362 "in": "query", 12363 "name": "fieldManager", 12364 "schema": { 12365 "type": "string", 12366 "uniqueItems": true 12367 } 12368 }, 12369 { 12370 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 12371 "in": "query", 12372 "name": "fieldValidation", 12373 "schema": { 12374 "type": "string", 12375 "uniqueItems": true 12376 } 12377 } 12378 ], 12379 "requestBody": { 12380 "content": { 12381 "*/*": { 12382 "schema": { 12383 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 12384 } 12385 } 12386 } 12387 }, 12388 "responses": { 12389 "200": { 12390 "content": { 12391 "application/json": { 12392 "schema": { 12393 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 12394 } 12395 }, 12396 "application/vnd.kubernetes.protobuf": { 12397 "schema": { 12398 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 12399 } 12400 }, 12401 "application/yaml": { 12402 "schema": { 12403 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 12404 } 12405 } 12406 }, 12407 "description": "OK" 12408 }, 12409 "201": { 12410 "content": { 12411 "application/json": { 12412 "schema": { 12413 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 12414 } 12415 }, 12416 "application/vnd.kubernetes.protobuf": { 12417 "schema": { 12418 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 12419 } 12420 }, 12421 "application/yaml": { 12422 "schema": { 12423 "$ref": "#/components/schemas/io.k8s.api.autoscaling.v1.Scale" 12424 } 12425 } 12426 }, 12427 "description": "Created" 12428 }, 12429 "401": { 12430 "description": "Unauthorized" 12431 } 12432 }, 12433 "tags": [ 12434 "apps_v1" 12435 ], 12436 "x-kubernetes-action": "put", 12437 "x-kubernetes-group-version-kind": { 12438 "group": "autoscaling", 12439 "kind": "Scale", 12440 "version": "v1" 12441 } 12442 } 12443 }, 12444 "/apis/apps/v1/namespaces/{namespace}/statefulsets/{name}/status": { 12445 "get": { 12446 "description": "read status of the specified StatefulSet", 12447 "operationId": "readAppsV1NamespacedStatefulSetStatus", 12448 "responses": { 12449 "200": { 12450 "content": { 12451 "application/json": { 12452 "schema": { 12453 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12454 } 12455 }, 12456 "application/vnd.kubernetes.protobuf": { 12457 "schema": { 12458 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12459 } 12460 }, 12461 "application/yaml": { 12462 "schema": { 12463 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12464 } 12465 } 12466 }, 12467 "description": "OK" 12468 }, 12469 "401": { 12470 "description": "Unauthorized" 12471 } 12472 }, 12473 "tags": [ 12474 "apps_v1" 12475 ], 12476 "x-kubernetes-action": "get", 12477 "x-kubernetes-group-version-kind": { 12478 "group": "apps", 12479 "kind": "StatefulSet", 12480 "version": "v1" 12481 } 12482 }, 12483 "parameters": [ 12484 { 12485 "description": "name of the StatefulSet", 12486 "in": "path", 12487 "name": "name", 12488 "required": true, 12489 "schema": { 12490 "type": "string", 12491 "uniqueItems": true 12492 } 12493 }, 12494 { 12495 "description": "object name and auth scope, such as for teams and projects", 12496 "in": "path", 12497 "name": "namespace", 12498 "required": true, 12499 "schema": { 12500 "type": "string", 12501 "uniqueItems": true 12502 } 12503 }, 12504 { 12505 "description": "If 'true', then the output is pretty printed.", 12506 "in": "query", 12507 "name": "pretty", 12508 "schema": { 12509 "type": "string", 12510 "uniqueItems": true 12511 } 12512 } 12513 ], 12514 "patch": { 12515 "description": "partially update status of the specified StatefulSet", 12516 "operationId": "patchAppsV1NamespacedStatefulSetStatus", 12517 "parameters": [ 12518 { 12519 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 12520 "in": "query", 12521 "name": "dryRun", 12522 "schema": { 12523 "type": "string", 12524 "uniqueItems": true 12525 } 12526 }, 12527 { 12528 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).", 12529 "in": "query", 12530 "name": "fieldManager", 12531 "schema": { 12532 "type": "string", 12533 "uniqueItems": true 12534 } 12535 }, 12536 { 12537 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 12538 "in": "query", 12539 "name": "fieldValidation", 12540 "schema": { 12541 "type": "string", 12542 "uniqueItems": true 12543 } 12544 }, 12545 { 12546 "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.", 12547 "in": "query", 12548 "name": "force", 12549 "schema": { 12550 "type": "boolean", 12551 "uniqueItems": true 12552 } 12553 } 12554 ], 12555 "requestBody": { 12556 "content": { 12557 "application/apply-patch+yaml": { 12558 "schema": { 12559 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 12560 } 12561 }, 12562 "application/json-patch+json": { 12563 "schema": { 12564 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 12565 } 12566 }, 12567 "application/merge-patch+json": { 12568 "schema": { 12569 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 12570 } 12571 }, 12572 "application/strategic-merge-patch+json": { 12573 "schema": { 12574 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Patch" 12575 } 12576 } 12577 } 12578 }, 12579 "responses": { 12580 "200": { 12581 "content": { 12582 "application/json": { 12583 "schema": { 12584 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12585 } 12586 }, 12587 "application/vnd.kubernetes.protobuf": { 12588 "schema": { 12589 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12590 } 12591 }, 12592 "application/yaml": { 12593 "schema": { 12594 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12595 } 12596 } 12597 }, 12598 "description": "OK" 12599 }, 12600 "201": { 12601 "content": { 12602 "application/json": { 12603 "schema": { 12604 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12605 } 12606 }, 12607 "application/vnd.kubernetes.protobuf": { 12608 "schema": { 12609 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12610 } 12611 }, 12612 "application/yaml": { 12613 "schema": { 12614 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12615 } 12616 } 12617 }, 12618 "description": "Created" 12619 }, 12620 "401": { 12621 "description": "Unauthorized" 12622 } 12623 }, 12624 "tags": [ 12625 "apps_v1" 12626 ], 12627 "x-kubernetes-action": "patch", 12628 "x-kubernetes-group-version-kind": { 12629 "group": "apps", 12630 "kind": "StatefulSet", 12631 "version": "v1" 12632 } 12633 }, 12634 "put": { 12635 "description": "replace status of the specified StatefulSet", 12636 "operationId": "replaceAppsV1NamespacedStatefulSetStatus", 12637 "parameters": [ 12638 { 12639 "description": "When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed", 12640 "in": "query", 12641 "name": "dryRun", 12642 "schema": { 12643 "type": "string", 12644 "uniqueItems": true 12645 } 12646 }, 12647 { 12648 "description": "fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.", 12649 "in": "query", 12650 "name": "fieldManager", 12651 "schema": { 12652 "type": "string", 12653 "uniqueItems": true 12654 } 12655 }, 12656 { 12657 "description": "fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields, provided that the `ServerSideFieldValidation` feature gate is also enabled. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23 and is the default behavior when the `ServerSideFieldValidation` feature gate is disabled. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default when the `ServerSideFieldValidation` feature gate is enabled. - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered.", 12658 "in": "query", 12659 "name": "fieldValidation", 12660 "schema": { 12661 "type": "string", 12662 "uniqueItems": true 12663 } 12664 } 12665 ], 12666 "requestBody": { 12667 "content": { 12668 "*/*": { 12669 "schema": { 12670 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12671 } 12672 } 12673 } 12674 }, 12675 "responses": { 12676 "200": { 12677 "content": { 12678 "application/json": { 12679 "schema": { 12680 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12681 } 12682 }, 12683 "application/vnd.kubernetes.protobuf": { 12684 "schema": { 12685 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12686 } 12687 }, 12688 "application/yaml": { 12689 "schema": { 12690 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12691 } 12692 } 12693 }, 12694 "description": "OK" 12695 }, 12696 "201": { 12697 "content": { 12698 "application/json": { 12699 "schema": { 12700 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12701 } 12702 }, 12703 "application/vnd.kubernetes.protobuf": { 12704 "schema": { 12705 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12706 } 12707 }, 12708 "application/yaml": { 12709 "schema": { 12710 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSet" 12711 } 12712 } 12713 }, 12714 "description": "Created" 12715 }, 12716 "401": { 12717 "description": "Unauthorized" 12718 } 12719 }, 12720 "tags": [ 12721 "apps_v1" 12722 ], 12723 "x-kubernetes-action": "put", 12724 "x-kubernetes-group-version-kind": { 12725 "group": "apps", 12726 "kind": "StatefulSet", 12727 "version": "v1" 12728 } 12729 } 12730 }, 12731 "/apis/apps/v1/replicasets": { 12732 "get": { 12733 "description": "list or watch objects of kind ReplicaSet", 12734 "operationId": "listAppsV1ReplicaSetForAllNamespaces", 12735 "responses": { 12736 "200": { 12737 "content": { 12738 "application/json": { 12739 "schema": { 12740 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetList" 12741 } 12742 }, 12743 "application/json;stream=watch": { 12744 "schema": { 12745 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetList" 12746 } 12747 }, 12748 "application/vnd.kubernetes.protobuf": { 12749 "schema": { 12750 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetList" 12751 } 12752 }, 12753 "application/vnd.kubernetes.protobuf;stream=watch": { 12754 "schema": { 12755 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetList" 12756 } 12757 }, 12758 "application/yaml": { 12759 "schema": { 12760 "$ref": "#/components/schemas/io.k8s.api.apps.v1.ReplicaSetList" 12761 } 12762 } 12763 }, 12764 "description": "OK" 12765 }, 12766 "401": { 12767 "description": "Unauthorized" 12768 } 12769 }, 12770 "tags": [ 12771 "apps_v1" 12772 ], 12773 "x-kubernetes-action": "list", 12774 "x-kubernetes-group-version-kind": { 12775 "group": "apps", 12776 "kind": "ReplicaSet", 12777 "version": "v1" 12778 } 12779 }, 12780 "parameters": [ 12781 { 12782 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 12783 "in": "query", 12784 "name": "allowWatchBookmarks", 12785 "schema": { 12786 "type": "boolean", 12787 "uniqueItems": true 12788 } 12789 }, 12790 { 12791 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 12792 "in": "query", 12793 "name": "continue", 12794 "schema": { 12795 "type": "string", 12796 "uniqueItems": true 12797 } 12798 }, 12799 { 12800 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 12801 "in": "query", 12802 "name": "fieldSelector", 12803 "schema": { 12804 "type": "string", 12805 "uniqueItems": true 12806 } 12807 }, 12808 { 12809 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 12810 "in": "query", 12811 "name": "labelSelector", 12812 "schema": { 12813 "type": "string", 12814 "uniqueItems": true 12815 } 12816 }, 12817 { 12818 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 12819 "in": "query", 12820 "name": "limit", 12821 "schema": { 12822 "type": "integer", 12823 "uniqueItems": true 12824 } 12825 }, 12826 { 12827 "description": "If 'true', then the output is pretty printed.", 12828 "in": "query", 12829 "name": "pretty", 12830 "schema": { 12831 "type": "string", 12832 "uniqueItems": true 12833 } 12834 }, 12835 { 12836 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 12837 "in": "query", 12838 "name": "resourceVersion", 12839 "schema": { 12840 "type": "string", 12841 "uniqueItems": true 12842 } 12843 }, 12844 { 12845 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 12846 "in": "query", 12847 "name": "resourceVersionMatch", 12848 "schema": { 12849 "type": "string", 12850 "uniqueItems": true 12851 } 12852 }, 12853 { 12854 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 12855 "in": "query", 12856 "name": "timeoutSeconds", 12857 "schema": { 12858 "type": "integer", 12859 "uniqueItems": true 12860 } 12861 }, 12862 { 12863 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 12864 "in": "query", 12865 "name": "watch", 12866 "schema": { 12867 "type": "boolean", 12868 "uniqueItems": true 12869 } 12870 } 12871 ] 12872 }, 12873 "/apis/apps/v1/statefulsets": { 12874 "get": { 12875 "description": "list or watch objects of kind StatefulSet", 12876 "operationId": "listAppsV1StatefulSetForAllNamespaces", 12877 "responses": { 12878 "200": { 12879 "content": { 12880 "application/json": { 12881 "schema": { 12882 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetList" 12883 } 12884 }, 12885 "application/json;stream=watch": { 12886 "schema": { 12887 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetList" 12888 } 12889 }, 12890 "application/vnd.kubernetes.protobuf": { 12891 "schema": { 12892 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetList" 12893 } 12894 }, 12895 "application/vnd.kubernetes.protobuf;stream=watch": { 12896 "schema": { 12897 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetList" 12898 } 12899 }, 12900 "application/yaml": { 12901 "schema": { 12902 "$ref": "#/components/schemas/io.k8s.api.apps.v1.StatefulSetList" 12903 } 12904 } 12905 }, 12906 "description": "OK" 12907 }, 12908 "401": { 12909 "description": "Unauthorized" 12910 } 12911 }, 12912 "tags": [ 12913 "apps_v1" 12914 ], 12915 "x-kubernetes-action": "list", 12916 "x-kubernetes-group-version-kind": { 12917 "group": "apps", 12918 "kind": "StatefulSet", 12919 "version": "v1" 12920 } 12921 }, 12922 "parameters": [ 12923 { 12924 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 12925 "in": "query", 12926 "name": "allowWatchBookmarks", 12927 "schema": { 12928 "type": "boolean", 12929 "uniqueItems": true 12930 } 12931 }, 12932 { 12933 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 12934 "in": "query", 12935 "name": "continue", 12936 "schema": { 12937 "type": "string", 12938 "uniqueItems": true 12939 } 12940 }, 12941 { 12942 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 12943 "in": "query", 12944 "name": "fieldSelector", 12945 "schema": { 12946 "type": "string", 12947 "uniqueItems": true 12948 } 12949 }, 12950 { 12951 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 12952 "in": "query", 12953 "name": "labelSelector", 12954 "schema": { 12955 "type": "string", 12956 "uniqueItems": true 12957 } 12958 }, 12959 { 12960 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 12961 "in": "query", 12962 "name": "limit", 12963 "schema": { 12964 "type": "integer", 12965 "uniqueItems": true 12966 } 12967 }, 12968 { 12969 "description": "If 'true', then the output is pretty printed.", 12970 "in": "query", 12971 "name": "pretty", 12972 "schema": { 12973 "type": "string", 12974 "uniqueItems": true 12975 } 12976 }, 12977 { 12978 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 12979 "in": "query", 12980 "name": "resourceVersion", 12981 "schema": { 12982 "type": "string", 12983 "uniqueItems": true 12984 } 12985 }, 12986 { 12987 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 12988 "in": "query", 12989 "name": "resourceVersionMatch", 12990 "schema": { 12991 "type": "string", 12992 "uniqueItems": true 12993 } 12994 }, 12995 { 12996 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 12997 "in": "query", 12998 "name": "timeoutSeconds", 12999 "schema": { 13000 "type": "integer", 13001 "uniqueItems": true 13002 } 13003 }, 13004 { 13005 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 13006 "in": "query", 13007 "name": "watch", 13008 "schema": { 13009 "type": "boolean", 13010 "uniqueItems": true 13011 } 13012 } 13013 ] 13014 }, 13015 "/apis/apps/v1/watch/controllerrevisions": { 13016 "get": { 13017 "description": "watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead.", 13018 "operationId": "watchAppsV1ControllerRevisionListForAllNamespaces", 13019 "responses": { 13020 "200": { 13021 "content": { 13022 "application/json": { 13023 "schema": { 13024 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13025 } 13026 }, 13027 "application/json;stream=watch": { 13028 "schema": { 13029 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13030 } 13031 }, 13032 "application/vnd.kubernetes.protobuf": { 13033 "schema": { 13034 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13035 } 13036 }, 13037 "application/vnd.kubernetes.protobuf;stream=watch": { 13038 "schema": { 13039 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13040 } 13041 }, 13042 "application/yaml": { 13043 "schema": { 13044 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13045 } 13046 } 13047 }, 13048 "description": "OK" 13049 }, 13050 "401": { 13051 "description": "Unauthorized" 13052 } 13053 }, 13054 "tags": [ 13055 "apps_v1" 13056 ], 13057 "x-kubernetes-action": "watchlist", 13058 "x-kubernetes-group-version-kind": { 13059 "group": "apps", 13060 "kind": "ControllerRevision", 13061 "version": "v1" 13062 } 13063 }, 13064 "parameters": [ 13065 { 13066 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 13067 "in": "query", 13068 "name": "allowWatchBookmarks", 13069 "schema": { 13070 "type": "boolean", 13071 "uniqueItems": true 13072 } 13073 }, 13074 { 13075 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 13076 "in": "query", 13077 "name": "continue", 13078 "schema": { 13079 "type": "string", 13080 "uniqueItems": true 13081 } 13082 }, 13083 { 13084 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 13085 "in": "query", 13086 "name": "fieldSelector", 13087 "schema": { 13088 "type": "string", 13089 "uniqueItems": true 13090 } 13091 }, 13092 { 13093 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 13094 "in": "query", 13095 "name": "labelSelector", 13096 "schema": { 13097 "type": "string", 13098 "uniqueItems": true 13099 } 13100 }, 13101 { 13102 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 13103 "in": "query", 13104 "name": "limit", 13105 "schema": { 13106 "type": "integer", 13107 "uniqueItems": true 13108 } 13109 }, 13110 { 13111 "description": "If 'true', then the output is pretty printed.", 13112 "in": "query", 13113 "name": "pretty", 13114 "schema": { 13115 "type": "string", 13116 "uniqueItems": true 13117 } 13118 }, 13119 { 13120 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 13121 "in": "query", 13122 "name": "resourceVersion", 13123 "schema": { 13124 "type": "string", 13125 "uniqueItems": true 13126 } 13127 }, 13128 { 13129 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 13130 "in": "query", 13131 "name": "resourceVersionMatch", 13132 "schema": { 13133 "type": "string", 13134 "uniqueItems": true 13135 } 13136 }, 13137 { 13138 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 13139 "in": "query", 13140 "name": "timeoutSeconds", 13141 "schema": { 13142 "type": "integer", 13143 "uniqueItems": true 13144 } 13145 }, 13146 { 13147 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 13148 "in": "query", 13149 "name": "watch", 13150 "schema": { 13151 "type": "boolean", 13152 "uniqueItems": true 13153 } 13154 } 13155 ] 13156 }, 13157 "/apis/apps/v1/watch/daemonsets": { 13158 "get": { 13159 "description": "watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead.", 13160 "operationId": "watchAppsV1DaemonSetListForAllNamespaces", 13161 "responses": { 13162 "200": { 13163 "content": { 13164 "application/json": { 13165 "schema": { 13166 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13167 } 13168 }, 13169 "application/json;stream=watch": { 13170 "schema": { 13171 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13172 } 13173 }, 13174 "application/vnd.kubernetes.protobuf": { 13175 "schema": { 13176 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13177 } 13178 }, 13179 "application/vnd.kubernetes.protobuf;stream=watch": { 13180 "schema": { 13181 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13182 } 13183 }, 13184 "application/yaml": { 13185 "schema": { 13186 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13187 } 13188 } 13189 }, 13190 "description": "OK" 13191 }, 13192 "401": { 13193 "description": "Unauthorized" 13194 } 13195 }, 13196 "tags": [ 13197 "apps_v1" 13198 ], 13199 "x-kubernetes-action": "watchlist", 13200 "x-kubernetes-group-version-kind": { 13201 "group": "apps", 13202 "kind": "DaemonSet", 13203 "version": "v1" 13204 } 13205 }, 13206 "parameters": [ 13207 { 13208 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 13209 "in": "query", 13210 "name": "allowWatchBookmarks", 13211 "schema": { 13212 "type": "boolean", 13213 "uniqueItems": true 13214 } 13215 }, 13216 { 13217 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 13218 "in": "query", 13219 "name": "continue", 13220 "schema": { 13221 "type": "string", 13222 "uniqueItems": true 13223 } 13224 }, 13225 { 13226 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 13227 "in": "query", 13228 "name": "fieldSelector", 13229 "schema": { 13230 "type": "string", 13231 "uniqueItems": true 13232 } 13233 }, 13234 { 13235 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 13236 "in": "query", 13237 "name": "labelSelector", 13238 "schema": { 13239 "type": "string", 13240 "uniqueItems": true 13241 } 13242 }, 13243 { 13244 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 13245 "in": "query", 13246 "name": "limit", 13247 "schema": { 13248 "type": "integer", 13249 "uniqueItems": true 13250 } 13251 }, 13252 { 13253 "description": "If 'true', then the output is pretty printed.", 13254 "in": "query", 13255 "name": "pretty", 13256 "schema": { 13257 "type": "string", 13258 "uniqueItems": true 13259 } 13260 }, 13261 { 13262 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 13263 "in": "query", 13264 "name": "resourceVersion", 13265 "schema": { 13266 "type": "string", 13267 "uniqueItems": true 13268 } 13269 }, 13270 { 13271 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 13272 "in": "query", 13273 "name": "resourceVersionMatch", 13274 "schema": { 13275 "type": "string", 13276 "uniqueItems": true 13277 } 13278 }, 13279 { 13280 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 13281 "in": "query", 13282 "name": "timeoutSeconds", 13283 "schema": { 13284 "type": "integer", 13285 "uniqueItems": true 13286 } 13287 }, 13288 { 13289 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 13290 "in": "query", 13291 "name": "watch", 13292 "schema": { 13293 "type": "boolean", 13294 "uniqueItems": true 13295 } 13296 } 13297 ] 13298 }, 13299 "/apis/apps/v1/watch/deployments": { 13300 "get": { 13301 "description": "watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead.", 13302 "operationId": "watchAppsV1DeploymentListForAllNamespaces", 13303 "responses": { 13304 "200": { 13305 "content": { 13306 "application/json": { 13307 "schema": { 13308 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13309 } 13310 }, 13311 "application/json;stream=watch": { 13312 "schema": { 13313 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13314 } 13315 }, 13316 "application/vnd.kubernetes.protobuf": { 13317 "schema": { 13318 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13319 } 13320 }, 13321 "application/vnd.kubernetes.protobuf;stream=watch": { 13322 "schema": { 13323 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13324 } 13325 }, 13326 "application/yaml": { 13327 "schema": { 13328 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13329 } 13330 } 13331 }, 13332 "description": "OK" 13333 }, 13334 "401": { 13335 "description": "Unauthorized" 13336 } 13337 }, 13338 "tags": [ 13339 "apps_v1" 13340 ], 13341 "x-kubernetes-action": "watchlist", 13342 "x-kubernetes-group-version-kind": { 13343 "group": "apps", 13344 "kind": "Deployment", 13345 "version": "v1" 13346 } 13347 }, 13348 "parameters": [ 13349 { 13350 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 13351 "in": "query", 13352 "name": "allowWatchBookmarks", 13353 "schema": { 13354 "type": "boolean", 13355 "uniqueItems": true 13356 } 13357 }, 13358 { 13359 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 13360 "in": "query", 13361 "name": "continue", 13362 "schema": { 13363 "type": "string", 13364 "uniqueItems": true 13365 } 13366 }, 13367 { 13368 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 13369 "in": "query", 13370 "name": "fieldSelector", 13371 "schema": { 13372 "type": "string", 13373 "uniqueItems": true 13374 } 13375 }, 13376 { 13377 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 13378 "in": "query", 13379 "name": "labelSelector", 13380 "schema": { 13381 "type": "string", 13382 "uniqueItems": true 13383 } 13384 }, 13385 { 13386 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 13387 "in": "query", 13388 "name": "limit", 13389 "schema": { 13390 "type": "integer", 13391 "uniqueItems": true 13392 } 13393 }, 13394 { 13395 "description": "If 'true', then the output is pretty printed.", 13396 "in": "query", 13397 "name": "pretty", 13398 "schema": { 13399 "type": "string", 13400 "uniqueItems": true 13401 } 13402 }, 13403 { 13404 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 13405 "in": "query", 13406 "name": "resourceVersion", 13407 "schema": { 13408 "type": "string", 13409 "uniqueItems": true 13410 } 13411 }, 13412 { 13413 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 13414 "in": "query", 13415 "name": "resourceVersionMatch", 13416 "schema": { 13417 "type": "string", 13418 "uniqueItems": true 13419 } 13420 }, 13421 { 13422 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 13423 "in": "query", 13424 "name": "timeoutSeconds", 13425 "schema": { 13426 "type": "integer", 13427 "uniqueItems": true 13428 } 13429 }, 13430 { 13431 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 13432 "in": "query", 13433 "name": "watch", 13434 "schema": { 13435 "type": "boolean", 13436 "uniqueItems": true 13437 } 13438 } 13439 ] 13440 }, 13441 "/apis/apps/v1/watch/namespaces/{namespace}/controllerrevisions": { 13442 "get": { 13443 "description": "watch individual changes to a list of ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead.", 13444 "operationId": "watchAppsV1NamespacedControllerRevisionList", 13445 "responses": { 13446 "200": { 13447 "content": { 13448 "application/json": { 13449 "schema": { 13450 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13451 } 13452 }, 13453 "application/json;stream=watch": { 13454 "schema": { 13455 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13456 } 13457 }, 13458 "application/vnd.kubernetes.protobuf": { 13459 "schema": { 13460 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13461 } 13462 }, 13463 "application/vnd.kubernetes.protobuf;stream=watch": { 13464 "schema": { 13465 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13466 } 13467 }, 13468 "application/yaml": { 13469 "schema": { 13470 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13471 } 13472 } 13473 }, 13474 "description": "OK" 13475 }, 13476 "401": { 13477 "description": "Unauthorized" 13478 } 13479 }, 13480 "tags": [ 13481 "apps_v1" 13482 ], 13483 "x-kubernetes-action": "watchlist", 13484 "x-kubernetes-group-version-kind": { 13485 "group": "apps", 13486 "kind": "ControllerRevision", 13487 "version": "v1" 13488 } 13489 }, 13490 "parameters": [ 13491 { 13492 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 13493 "in": "query", 13494 "name": "allowWatchBookmarks", 13495 "schema": { 13496 "type": "boolean", 13497 "uniqueItems": true 13498 } 13499 }, 13500 { 13501 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 13502 "in": "query", 13503 "name": "continue", 13504 "schema": { 13505 "type": "string", 13506 "uniqueItems": true 13507 } 13508 }, 13509 { 13510 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 13511 "in": "query", 13512 "name": "fieldSelector", 13513 "schema": { 13514 "type": "string", 13515 "uniqueItems": true 13516 } 13517 }, 13518 { 13519 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 13520 "in": "query", 13521 "name": "labelSelector", 13522 "schema": { 13523 "type": "string", 13524 "uniqueItems": true 13525 } 13526 }, 13527 { 13528 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 13529 "in": "query", 13530 "name": "limit", 13531 "schema": { 13532 "type": "integer", 13533 "uniqueItems": true 13534 } 13535 }, 13536 { 13537 "description": "object name and auth scope, such as for teams and projects", 13538 "in": "path", 13539 "name": "namespace", 13540 "required": true, 13541 "schema": { 13542 "type": "string", 13543 "uniqueItems": true 13544 } 13545 }, 13546 { 13547 "description": "If 'true', then the output is pretty printed.", 13548 "in": "query", 13549 "name": "pretty", 13550 "schema": { 13551 "type": "string", 13552 "uniqueItems": true 13553 } 13554 }, 13555 { 13556 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 13557 "in": "query", 13558 "name": "resourceVersion", 13559 "schema": { 13560 "type": "string", 13561 "uniqueItems": true 13562 } 13563 }, 13564 { 13565 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 13566 "in": "query", 13567 "name": "resourceVersionMatch", 13568 "schema": { 13569 "type": "string", 13570 "uniqueItems": true 13571 } 13572 }, 13573 { 13574 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 13575 "in": "query", 13576 "name": "timeoutSeconds", 13577 "schema": { 13578 "type": "integer", 13579 "uniqueItems": true 13580 } 13581 }, 13582 { 13583 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 13584 "in": "query", 13585 "name": "watch", 13586 "schema": { 13587 "type": "boolean", 13588 "uniqueItems": true 13589 } 13590 } 13591 ] 13592 }, 13593 "/apis/apps/v1/watch/namespaces/{namespace}/controllerrevisions/{name}": { 13594 "get": { 13595 "description": "watch changes to an object of kind ControllerRevision. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", 13596 "operationId": "watchAppsV1NamespacedControllerRevision", 13597 "responses": { 13598 "200": { 13599 "content": { 13600 "application/json": { 13601 "schema": { 13602 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13603 } 13604 }, 13605 "application/json;stream=watch": { 13606 "schema": { 13607 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13608 } 13609 }, 13610 "application/vnd.kubernetes.protobuf": { 13611 "schema": { 13612 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13613 } 13614 }, 13615 "application/vnd.kubernetes.protobuf;stream=watch": { 13616 "schema": { 13617 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13618 } 13619 }, 13620 "application/yaml": { 13621 "schema": { 13622 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13623 } 13624 } 13625 }, 13626 "description": "OK" 13627 }, 13628 "401": { 13629 "description": "Unauthorized" 13630 } 13631 }, 13632 "tags": [ 13633 "apps_v1" 13634 ], 13635 "x-kubernetes-action": "watch", 13636 "x-kubernetes-group-version-kind": { 13637 "group": "apps", 13638 "kind": "ControllerRevision", 13639 "version": "v1" 13640 } 13641 }, 13642 "parameters": [ 13643 { 13644 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 13645 "in": "query", 13646 "name": "allowWatchBookmarks", 13647 "schema": { 13648 "type": "boolean", 13649 "uniqueItems": true 13650 } 13651 }, 13652 { 13653 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 13654 "in": "query", 13655 "name": "continue", 13656 "schema": { 13657 "type": "string", 13658 "uniqueItems": true 13659 } 13660 }, 13661 { 13662 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 13663 "in": "query", 13664 "name": "fieldSelector", 13665 "schema": { 13666 "type": "string", 13667 "uniqueItems": true 13668 } 13669 }, 13670 { 13671 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 13672 "in": "query", 13673 "name": "labelSelector", 13674 "schema": { 13675 "type": "string", 13676 "uniqueItems": true 13677 } 13678 }, 13679 { 13680 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 13681 "in": "query", 13682 "name": "limit", 13683 "schema": { 13684 "type": "integer", 13685 "uniqueItems": true 13686 } 13687 }, 13688 { 13689 "description": "name of the ControllerRevision", 13690 "in": "path", 13691 "name": "name", 13692 "required": true, 13693 "schema": { 13694 "type": "string", 13695 "uniqueItems": true 13696 } 13697 }, 13698 { 13699 "description": "object name and auth scope, such as for teams and projects", 13700 "in": "path", 13701 "name": "namespace", 13702 "required": true, 13703 "schema": { 13704 "type": "string", 13705 "uniqueItems": true 13706 } 13707 }, 13708 { 13709 "description": "If 'true', then the output is pretty printed.", 13710 "in": "query", 13711 "name": "pretty", 13712 "schema": { 13713 "type": "string", 13714 "uniqueItems": true 13715 } 13716 }, 13717 { 13718 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 13719 "in": "query", 13720 "name": "resourceVersion", 13721 "schema": { 13722 "type": "string", 13723 "uniqueItems": true 13724 } 13725 }, 13726 { 13727 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 13728 "in": "query", 13729 "name": "resourceVersionMatch", 13730 "schema": { 13731 "type": "string", 13732 "uniqueItems": true 13733 } 13734 }, 13735 { 13736 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 13737 "in": "query", 13738 "name": "timeoutSeconds", 13739 "schema": { 13740 "type": "integer", 13741 "uniqueItems": true 13742 } 13743 }, 13744 { 13745 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 13746 "in": "query", 13747 "name": "watch", 13748 "schema": { 13749 "type": "boolean", 13750 "uniqueItems": true 13751 } 13752 } 13753 ] 13754 }, 13755 "/apis/apps/v1/watch/namespaces/{namespace}/daemonsets": { 13756 "get": { 13757 "description": "watch individual changes to a list of DaemonSet. deprecated: use the 'watch' parameter with a list operation instead.", 13758 "operationId": "watchAppsV1NamespacedDaemonSetList", 13759 "responses": { 13760 "200": { 13761 "content": { 13762 "application/json": { 13763 "schema": { 13764 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13765 } 13766 }, 13767 "application/json;stream=watch": { 13768 "schema": { 13769 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13770 } 13771 }, 13772 "application/vnd.kubernetes.protobuf": { 13773 "schema": { 13774 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13775 } 13776 }, 13777 "application/vnd.kubernetes.protobuf;stream=watch": { 13778 "schema": { 13779 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13780 } 13781 }, 13782 "application/yaml": { 13783 "schema": { 13784 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13785 } 13786 } 13787 }, 13788 "description": "OK" 13789 }, 13790 "401": { 13791 "description": "Unauthorized" 13792 } 13793 }, 13794 "tags": [ 13795 "apps_v1" 13796 ], 13797 "x-kubernetes-action": "watchlist", 13798 "x-kubernetes-group-version-kind": { 13799 "group": "apps", 13800 "kind": "DaemonSet", 13801 "version": "v1" 13802 } 13803 }, 13804 "parameters": [ 13805 { 13806 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 13807 "in": "query", 13808 "name": "allowWatchBookmarks", 13809 "schema": { 13810 "type": "boolean", 13811 "uniqueItems": true 13812 } 13813 }, 13814 { 13815 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 13816 "in": "query", 13817 "name": "continue", 13818 "schema": { 13819 "type": "string", 13820 "uniqueItems": true 13821 } 13822 }, 13823 { 13824 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 13825 "in": "query", 13826 "name": "fieldSelector", 13827 "schema": { 13828 "type": "string", 13829 "uniqueItems": true 13830 } 13831 }, 13832 { 13833 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 13834 "in": "query", 13835 "name": "labelSelector", 13836 "schema": { 13837 "type": "string", 13838 "uniqueItems": true 13839 } 13840 }, 13841 { 13842 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 13843 "in": "query", 13844 "name": "limit", 13845 "schema": { 13846 "type": "integer", 13847 "uniqueItems": true 13848 } 13849 }, 13850 { 13851 "description": "object name and auth scope, such as for teams and projects", 13852 "in": "path", 13853 "name": "namespace", 13854 "required": true, 13855 "schema": { 13856 "type": "string", 13857 "uniqueItems": true 13858 } 13859 }, 13860 { 13861 "description": "If 'true', then the output is pretty printed.", 13862 "in": "query", 13863 "name": "pretty", 13864 "schema": { 13865 "type": "string", 13866 "uniqueItems": true 13867 } 13868 }, 13869 { 13870 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 13871 "in": "query", 13872 "name": "resourceVersion", 13873 "schema": { 13874 "type": "string", 13875 "uniqueItems": true 13876 } 13877 }, 13878 { 13879 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 13880 "in": "query", 13881 "name": "resourceVersionMatch", 13882 "schema": { 13883 "type": "string", 13884 "uniqueItems": true 13885 } 13886 }, 13887 { 13888 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 13889 "in": "query", 13890 "name": "timeoutSeconds", 13891 "schema": { 13892 "type": "integer", 13893 "uniqueItems": true 13894 } 13895 }, 13896 { 13897 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 13898 "in": "query", 13899 "name": "watch", 13900 "schema": { 13901 "type": "boolean", 13902 "uniqueItems": true 13903 } 13904 } 13905 ] 13906 }, 13907 "/apis/apps/v1/watch/namespaces/{namespace}/daemonsets/{name}": { 13908 "get": { 13909 "description": "watch changes to an object of kind DaemonSet. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", 13910 "operationId": "watchAppsV1NamespacedDaemonSet", 13911 "responses": { 13912 "200": { 13913 "content": { 13914 "application/json": { 13915 "schema": { 13916 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13917 } 13918 }, 13919 "application/json;stream=watch": { 13920 "schema": { 13921 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13922 } 13923 }, 13924 "application/vnd.kubernetes.protobuf": { 13925 "schema": { 13926 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13927 } 13928 }, 13929 "application/vnd.kubernetes.protobuf;stream=watch": { 13930 "schema": { 13931 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13932 } 13933 }, 13934 "application/yaml": { 13935 "schema": { 13936 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 13937 } 13938 } 13939 }, 13940 "description": "OK" 13941 }, 13942 "401": { 13943 "description": "Unauthorized" 13944 } 13945 }, 13946 "tags": [ 13947 "apps_v1" 13948 ], 13949 "x-kubernetes-action": "watch", 13950 "x-kubernetes-group-version-kind": { 13951 "group": "apps", 13952 "kind": "DaemonSet", 13953 "version": "v1" 13954 } 13955 }, 13956 "parameters": [ 13957 { 13958 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 13959 "in": "query", 13960 "name": "allowWatchBookmarks", 13961 "schema": { 13962 "type": "boolean", 13963 "uniqueItems": true 13964 } 13965 }, 13966 { 13967 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 13968 "in": "query", 13969 "name": "continue", 13970 "schema": { 13971 "type": "string", 13972 "uniqueItems": true 13973 } 13974 }, 13975 { 13976 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 13977 "in": "query", 13978 "name": "fieldSelector", 13979 "schema": { 13980 "type": "string", 13981 "uniqueItems": true 13982 } 13983 }, 13984 { 13985 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 13986 "in": "query", 13987 "name": "labelSelector", 13988 "schema": { 13989 "type": "string", 13990 "uniqueItems": true 13991 } 13992 }, 13993 { 13994 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 13995 "in": "query", 13996 "name": "limit", 13997 "schema": { 13998 "type": "integer", 13999 "uniqueItems": true 14000 } 14001 }, 14002 { 14003 "description": "name of the DaemonSet", 14004 "in": "path", 14005 "name": "name", 14006 "required": true, 14007 "schema": { 14008 "type": "string", 14009 "uniqueItems": true 14010 } 14011 }, 14012 { 14013 "description": "object name and auth scope, such as for teams and projects", 14014 "in": "path", 14015 "name": "namespace", 14016 "required": true, 14017 "schema": { 14018 "type": "string", 14019 "uniqueItems": true 14020 } 14021 }, 14022 { 14023 "description": "If 'true', then the output is pretty printed.", 14024 "in": "query", 14025 "name": "pretty", 14026 "schema": { 14027 "type": "string", 14028 "uniqueItems": true 14029 } 14030 }, 14031 { 14032 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 14033 "in": "query", 14034 "name": "resourceVersion", 14035 "schema": { 14036 "type": "string", 14037 "uniqueItems": true 14038 } 14039 }, 14040 { 14041 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 14042 "in": "query", 14043 "name": "resourceVersionMatch", 14044 "schema": { 14045 "type": "string", 14046 "uniqueItems": true 14047 } 14048 }, 14049 { 14050 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 14051 "in": "query", 14052 "name": "timeoutSeconds", 14053 "schema": { 14054 "type": "integer", 14055 "uniqueItems": true 14056 } 14057 }, 14058 { 14059 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 14060 "in": "query", 14061 "name": "watch", 14062 "schema": { 14063 "type": "boolean", 14064 "uniqueItems": true 14065 } 14066 } 14067 ] 14068 }, 14069 "/apis/apps/v1/watch/namespaces/{namespace}/deployments": { 14070 "get": { 14071 "description": "watch individual changes to a list of Deployment. deprecated: use the 'watch' parameter with a list operation instead.", 14072 "operationId": "watchAppsV1NamespacedDeploymentList", 14073 "responses": { 14074 "200": { 14075 "content": { 14076 "application/json": { 14077 "schema": { 14078 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14079 } 14080 }, 14081 "application/json;stream=watch": { 14082 "schema": { 14083 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14084 } 14085 }, 14086 "application/vnd.kubernetes.protobuf": { 14087 "schema": { 14088 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14089 } 14090 }, 14091 "application/vnd.kubernetes.protobuf;stream=watch": { 14092 "schema": { 14093 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14094 } 14095 }, 14096 "application/yaml": { 14097 "schema": { 14098 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14099 } 14100 } 14101 }, 14102 "description": "OK" 14103 }, 14104 "401": { 14105 "description": "Unauthorized" 14106 } 14107 }, 14108 "tags": [ 14109 "apps_v1" 14110 ], 14111 "x-kubernetes-action": "watchlist", 14112 "x-kubernetes-group-version-kind": { 14113 "group": "apps", 14114 "kind": "Deployment", 14115 "version": "v1" 14116 } 14117 }, 14118 "parameters": [ 14119 { 14120 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 14121 "in": "query", 14122 "name": "allowWatchBookmarks", 14123 "schema": { 14124 "type": "boolean", 14125 "uniqueItems": true 14126 } 14127 }, 14128 { 14129 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 14130 "in": "query", 14131 "name": "continue", 14132 "schema": { 14133 "type": "string", 14134 "uniqueItems": true 14135 } 14136 }, 14137 { 14138 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 14139 "in": "query", 14140 "name": "fieldSelector", 14141 "schema": { 14142 "type": "string", 14143 "uniqueItems": true 14144 } 14145 }, 14146 { 14147 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 14148 "in": "query", 14149 "name": "labelSelector", 14150 "schema": { 14151 "type": "string", 14152 "uniqueItems": true 14153 } 14154 }, 14155 { 14156 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 14157 "in": "query", 14158 "name": "limit", 14159 "schema": { 14160 "type": "integer", 14161 "uniqueItems": true 14162 } 14163 }, 14164 { 14165 "description": "object name and auth scope, such as for teams and projects", 14166 "in": "path", 14167 "name": "namespace", 14168 "required": true, 14169 "schema": { 14170 "type": "string", 14171 "uniqueItems": true 14172 } 14173 }, 14174 { 14175 "description": "If 'true', then the output is pretty printed.", 14176 "in": "query", 14177 "name": "pretty", 14178 "schema": { 14179 "type": "string", 14180 "uniqueItems": true 14181 } 14182 }, 14183 { 14184 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 14185 "in": "query", 14186 "name": "resourceVersion", 14187 "schema": { 14188 "type": "string", 14189 "uniqueItems": true 14190 } 14191 }, 14192 { 14193 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 14194 "in": "query", 14195 "name": "resourceVersionMatch", 14196 "schema": { 14197 "type": "string", 14198 "uniqueItems": true 14199 } 14200 }, 14201 { 14202 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 14203 "in": "query", 14204 "name": "timeoutSeconds", 14205 "schema": { 14206 "type": "integer", 14207 "uniqueItems": true 14208 } 14209 }, 14210 { 14211 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 14212 "in": "query", 14213 "name": "watch", 14214 "schema": { 14215 "type": "boolean", 14216 "uniqueItems": true 14217 } 14218 } 14219 ] 14220 }, 14221 "/apis/apps/v1/watch/namespaces/{namespace}/deployments/{name}": { 14222 "get": { 14223 "description": "watch changes to an object of kind Deployment. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", 14224 "operationId": "watchAppsV1NamespacedDeployment", 14225 "responses": { 14226 "200": { 14227 "content": { 14228 "application/json": { 14229 "schema": { 14230 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14231 } 14232 }, 14233 "application/json;stream=watch": { 14234 "schema": { 14235 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14236 } 14237 }, 14238 "application/vnd.kubernetes.protobuf": { 14239 "schema": { 14240 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14241 } 14242 }, 14243 "application/vnd.kubernetes.protobuf;stream=watch": { 14244 "schema": { 14245 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14246 } 14247 }, 14248 "application/yaml": { 14249 "schema": { 14250 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14251 } 14252 } 14253 }, 14254 "description": "OK" 14255 }, 14256 "401": { 14257 "description": "Unauthorized" 14258 } 14259 }, 14260 "tags": [ 14261 "apps_v1" 14262 ], 14263 "x-kubernetes-action": "watch", 14264 "x-kubernetes-group-version-kind": { 14265 "group": "apps", 14266 "kind": "Deployment", 14267 "version": "v1" 14268 } 14269 }, 14270 "parameters": [ 14271 { 14272 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 14273 "in": "query", 14274 "name": "allowWatchBookmarks", 14275 "schema": { 14276 "type": "boolean", 14277 "uniqueItems": true 14278 } 14279 }, 14280 { 14281 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 14282 "in": "query", 14283 "name": "continue", 14284 "schema": { 14285 "type": "string", 14286 "uniqueItems": true 14287 } 14288 }, 14289 { 14290 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 14291 "in": "query", 14292 "name": "fieldSelector", 14293 "schema": { 14294 "type": "string", 14295 "uniqueItems": true 14296 } 14297 }, 14298 { 14299 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 14300 "in": "query", 14301 "name": "labelSelector", 14302 "schema": { 14303 "type": "string", 14304 "uniqueItems": true 14305 } 14306 }, 14307 { 14308 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 14309 "in": "query", 14310 "name": "limit", 14311 "schema": { 14312 "type": "integer", 14313 "uniqueItems": true 14314 } 14315 }, 14316 { 14317 "description": "name of the Deployment", 14318 "in": "path", 14319 "name": "name", 14320 "required": true, 14321 "schema": { 14322 "type": "string", 14323 "uniqueItems": true 14324 } 14325 }, 14326 { 14327 "description": "object name and auth scope, such as for teams and projects", 14328 "in": "path", 14329 "name": "namespace", 14330 "required": true, 14331 "schema": { 14332 "type": "string", 14333 "uniqueItems": true 14334 } 14335 }, 14336 { 14337 "description": "If 'true', then the output is pretty printed.", 14338 "in": "query", 14339 "name": "pretty", 14340 "schema": { 14341 "type": "string", 14342 "uniqueItems": true 14343 } 14344 }, 14345 { 14346 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 14347 "in": "query", 14348 "name": "resourceVersion", 14349 "schema": { 14350 "type": "string", 14351 "uniqueItems": true 14352 } 14353 }, 14354 { 14355 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 14356 "in": "query", 14357 "name": "resourceVersionMatch", 14358 "schema": { 14359 "type": "string", 14360 "uniqueItems": true 14361 } 14362 }, 14363 { 14364 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 14365 "in": "query", 14366 "name": "timeoutSeconds", 14367 "schema": { 14368 "type": "integer", 14369 "uniqueItems": true 14370 } 14371 }, 14372 { 14373 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 14374 "in": "query", 14375 "name": "watch", 14376 "schema": { 14377 "type": "boolean", 14378 "uniqueItems": true 14379 } 14380 } 14381 ] 14382 }, 14383 "/apis/apps/v1/watch/namespaces/{namespace}/replicasets": { 14384 "get": { 14385 "description": "watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead.", 14386 "operationId": "watchAppsV1NamespacedReplicaSetList", 14387 "responses": { 14388 "200": { 14389 "content": { 14390 "application/json": { 14391 "schema": { 14392 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14393 } 14394 }, 14395 "application/json;stream=watch": { 14396 "schema": { 14397 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14398 } 14399 }, 14400 "application/vnd.kubernetes.protobuf": { 14401 "schema": { 14402 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14403 } 14404 }, 14405 "application/vnd.kubernetes.protobuf;stream=watch": { 14406 "schema": { 14407 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14408 } 14409 }, 14410 "application/yaml": { 14411 "schema": { 14412 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14413 } 14414 } 14415 }, 14416 "description": "OK" 14417 }, 14418 "401": { 14419 "description": "Unauthorized" 14420 } 14421 }, 14422 "tags": [ 14423 "apps_v1" 14424 ], 14425 "x-kubernetes-action": "watchlist", 14426 "x-kubernetes-group-version-kind": { 14427 "group": "apps", 14428 "kind": "ReplicaSet", 14429 "version": "v1" 14430 } 14431 }, 14432 "parameters": [ 14433 { 14434 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 14435 "in": "query", 14436 "name": "allowWatchBookmarks", 14437 "schema": { 14438 "type": "boolean", 14439 "uniqueItems": true 14440 } 14441 }, 14442 { 14443 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 14444 "in": "query", 14445 "name": "continue", 14446 "schema": { 14447 "type": "string", 14448 "uniqueItems": true 14449 } 14450 }, 14451 { 14452 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 14453 "in": "query", 14454 "name": "fieldSelector", 14455 "schema": { 14456 "type": "string", 14457 "uniqueItems": true 14458 } 14459 }, 14460 { 14461 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 14462 "in": "query", 14463 "name": "labelSelector", 14464 "schema": { 14465 "type": "string", 14466 "uniqueItems": true 14467 } 14468 }, 14469 { 14470 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 14471 "in": "query", 14472 "name": "limit", 14473 "schema": { 14474 "type": "integer", 14475 "uniqueItems": true 14476 } 14477 }, 14478 { 14479 "description": "object name and auth scope, such as for teams and projects", 14480 "in": "path", 14481 "name": "namespace", 14482 "required": true, 14483 "schema": { 14484 "type": "string", 14485 "uniqueItems": true 14486 } 14487 }, 14488 { 14489 "description": "If 'true', then the output is pretty printed.", 14490 "in": "query", 14491 "name": "pretty", 14492 "schema": { 14493 "type": "string", 14494 "uniqueItems": true 14495 } 14496 }, 14497 { 14498 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 14499 "in": "query", 14500 "name": "resourceVersion", 14501 "schema": { 14502 "type": "string", 14503 "uniqueItems": true 14504 } 14505 }, 14506 { 14507 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 14508 "in": "query", 14509 "name": "resourceVersionMatch", 14510 "schema": { 14511 "type": "string", 14512 "uniqueItems": true 14513 } 14514 }, 14515 { 14516 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 14517 "in": "query", 14518 "name": "timeoutSeconds", 14519 "schema": { 14520 "type": "integer", 14521 "uniqueItems": true 14522 } 14523 }, 14524 { 14525 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 14526 "in": "query", 14527 "name": "watch", 14528 "schema": { 14529 "type": "boolean", 14530 "uniqueItems": true 14531 } 14532 } 14533 ] 14534 }, 14535 "/apis/apps/v1/watch/namespaces/{namespace}/replicasets/{name}": { 14536 "get": { 14537 "description": "watch changes to an object of kind ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", 14538 "operationId": "watchAppsV1NamespacedReplicaSet", 14539 "responses": { 14540 "200": { 14541 "content": { 14542 "application/json": { 14543 "schema": { 14544 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14545 } 14546 }, 14547 "application/json;stream=watch": { 14548 "schema": { 14549 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14550 } 14551 }, 14552 "application/vnd.kubernetes.protobuf": { 14553 "schema": { 14554 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14555 } 14556 }, 14557 "application/vnd.kubernetes.protobuf;stream=watch": { 14558 "schema": { 14559 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14560 } 14561 }, 14562 "application/yaml": { 14563 "schema": { 14564 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14565 } 14566 } 14567 }, 14568 "description": "OK" 14569 }, 14570 "401": { 14571 "description": "Unauthorized" 14572 } 14573 }, 14574 "tags": [ 14575 "apps_v1" 14576 ], 14577 "x-kubernetes-action": "watch", 14578 "x-kubernetes-group-version-kind": { 14579 "group": "apps", 14580 "kind": "ReplicaSet", 14581 "version": "v1" 14582 } 14583 }, 14584 "parameters": [ 14585 { 14586 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 14587 "in": "query", 14588 "name": "allowWatchBookmarks", 14589 "schema": { 14590 "type": "boolean", 14591 "uniqueItems": true 14592 } 14593 }, 14594 { 14595 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 14596 "in": "query", 14597 "name": "continue", 14598 "schema": { 14599 "type": "string", 14600 "uniqueItems": true 14601 } 14602 }, 14603 { 14604 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 14605 "in": "query", 14606 "name": "fieldSelector", 14607 "schema": { 14608 "type": "string", 14609 "uniqueItems": true 14610 } 14611 }, 14612 { 14613 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 14614 "in": "query", 14615 "name": "labelSelector", 14616 "schema": { 14617 "type": "string", 14618 "uniqueItems": true 14619 } 14620 }, 14621 { 14622 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 14623 "in": "query", 14624 "name": "limit", 14625 "schema": { 14626 "type": "integer", 14627 "uniqueItems": true 14628 } 14629 }, 14630 { 14631 "description": "name of the ReplicaSet", 14632 "in": "path", 14633 "name": "name", 14634 "required": true, 14635 "schema": { 14636 "type": "string", 14637 "uniqueItems": true 14638 } 14639 }, 14640 { 14641 "description": "object name and auth scope, such as for teams and projects", 14642 "in": "path", 14643 "name": "namespace", 14644 "required": true, 14645 "schema": { 14646 "type": "string", 14647 "uniqueItems": true 14648 } 14649 }, 14650 { 14651 "description": "If 'true', then the output is pretty printed.", 14652 "in": "query", 14653 "name": "pretty", 14654 "schema": { 14655 "type": "string", 14656 "uniqueItems": true 14657 } 14658 }, 14659 { 14660 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 14661 "in": "query", 14662 "name": "resourceVersion", 14663 "schema": { 14664 "type": "string", 14665 "uniqueItems": true 14666 } 14667 }, 14668 { 14669 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 14670 "in": "query", 14671 "name": "resourceVersionMatch", 14672 "schema": { 14673 "type": "string", 14674 "uniqueItems": true 14675 } 14676 }, 14677 { 14678 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 14679 "in": "query", 14680 "name": "timeoutSeconds", 14681 "schema": { 14682 "type": "integer", 14683 "uniqueItems": true 14684 } 14685 }, 14686 { 14687 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 14688 "in": "query", 14689 "name": "watch", 14690 "schema": { 14691 "type": "boolean", 14692 "uniqueItems": true 14693 } 14694 } 14695 ] 14696 }, 14697 "/apis/apps/v1/watch/namespaces/{namespace}/statefulsets": { 14698 "get": { 14699 "description": "watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead.", 14700 "operationId": "watchAppsV1NamespacedStatefulSetList", 14701 "responses": { 14702 "200": { 14703 "content": { 14704 "application/json": { 14705 "schema": { 14706 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14707 } 14708 }, 14709 "application/json;stream=watch": { 14710 "schema": { 14711 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14712 } 14713 }, 14714 "application/vnd.kubernetes.protobuf": { 14715 "schema": { 14716 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14717 } 14718 }, 14719 "application/vnd.kubernetes.protobuf;stream=watch": { 14720 "schema": { 14721 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14722 } 14723 }, 14724 "application/yaml": { 14725 "schema": { 14726 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14727 } 14728 } 14729 }, 14730 "description": "OK" 14731 }, 14732 "401": { 14733 "description": "Unauthorized" 14734 } 14735 }, 14736 "tags": [ 14737 "apps_v1" 14738 ], 14739 "x-kubernetes-action": "watchlist", 14740 "x-kubernetes-group-version-kind": { 14741 "group": "apps", 14742 "kind": "StatefulSet", 14743 "version": "v1" 14744 } 14745 }, 14746 "parameters": [ 14747 { 14748 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 14749 "in": "query", 14750 "name": "allowWatchBookmarks", 14751 "schema": { 14752 "type": "boolean", 14753 "uniqueItems": true 14754 } 14755 }, 14756 { 14757 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 14758 "in": "query", 14759 "name": "continue", 14760 "schema": { 14761 "type": "string", 14762 "uniqueItems": true 14763 } 14764 }, 14765 { 14766 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 14767 "in": "query", 14768 "name": "fieldSelector", 14769 "schema": { 14770 "type": "string", 14771 "uniqueItems": true 14772 } 14773 }, 14774 { 14775 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 14776 "in": "query", 14777 "name": "labelSelector", 14778 "schema": { 14779 "type": "string", 14780 "uniqueItems": true 14781 } 14782 }, 14783 { 14784 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 14785 "in": "query", 14786 "name": "limit", 14787 "schema": { 14788 "type": "integer", 14789 "uniqueItems": true 14790 } 14791 }, 14792 { 14793 "description": "object name and auth scope, such as for teams and projects", 14794 "in": "path", 14795 "name": "namespace", 14796 "required": true, 14797 "schema": { 14798 "type": "string", 14799 "uniqueItems": true 14800 } 14801 }, 14802 { 14803 "description": "If 'true', then the output is pretty printed.", 14804 "in": "query", 14805 "name": "pretty", 14806 "schema": { 14807 "type": "string", 14808 "uniqueItems": true 14809 } 14810 }, 14811 { 14812 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 14813 "in": "query", 14814 "name": "resourceVersion", 14815 "schema": { 14816 "type": "string", 14817 "uniqueItems": true 14818 } 14819 }, 14820 { 14821 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 14822 "in": "query", 14823 "name": "resourceVersionMatch", 14824 "schema": { 14825 "type": "string", 14826 "uniqueItems": true 14827 } 14828 }, 14829 { 14830 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 14831 "in": "query", 14832 "name": "timeoutSeconds", 14833 "schema": { 14834 "type": "integer", 14835 "uniqueItems": true 14836 } 14837 }, 14838 { 14839 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 14840 "in": "query", 14841 "name": "watch", 14842 "schema": { 14843 "type": "boolean", 14844 "uniqueItems": true 14845 } 14846 } 14847 ] 14848 }, 14849 "/apis/apps/v1/watch/namespaces/{namespace}/statefulsets/{name}": { 14850 "get": { 14851 "description": "watch changes to an object of kind StatefulSet. deprecated: use the 'watch' parameter with a list operation instead, filtered to a single item with the 'fieldSelector' parameter.", 14852 "operationId": "watchAppsV1NamespacedStatefulSet", 14853 "responses": { 14854 "200": { 14855 "content": { 14856 "application/json": { 14857 "schema": { 14858 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14859 } 14860 }, 14861 "application/json;stream=watch": { 14862 "schema": { 14863 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14864 } 14865 }, 14866 "application/vnd.kubernetes.protobuf": { 14867 "schema": { 14868 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14869 } 14870 }, 14871 "application/vnd.kubernetes.protobuf;stream=watch": { 14872 "schema": { 14873 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14874 } 14875 }, 14876 "application/yaml": { 14877 "schema": { 14878 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 14879 } 14880 } 14881 }, 14882 "description": "OK" 14883 }, 14884 "401": { 14885 "description": "Unauthorized" 14886 } 14887 }, 14888 "tags": [ 14889 "apps_v1" 14890 ], 14891 "x-kubernetes-action": "watch", 14892 "x-kubernetes-group-version-kind": { 14893 "group": "apps", 14894 "kind": "StatefulSet", 14895 "version": "v1" 14896 } 14897 }, 14898 "parameters": [ 14899 { 14900 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 14901 "in": "query", 14902 "name": "allowWatchBookmarks", 14903 "schema": { 14904 "type": "boolean", 14905 "uniqueItems": true 14906 } 14907 }, 14908 { 14909 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 14910 "in": "query", 14911 "name": "continue", 14912 "schema": { 14913 "type": "string", 14914 "uniqueItems": true 14915 } 14916 }, 14917 { 14918 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 14919 "in": "query", 14920 "name": "fieldSelector", 14921 "schema": { 14922 "type": "string", 14923 "uniqueItems": true 14924 } 14925 }, 14926 { 14927 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 14928 "in": "query", 14929 "name": "labelSelector", 14930 "schema": { 14931 "type": "string", 14932 "uniqueItems": true 14933 } 14934 }, 14935 { 14936 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 14937 "in": "query", 14938 "name": "limit", 14939 "schema": { 14940 "type": "integer", 14941 "uniqueItems": true 14942 } 14943 }, 14944 { 14945 "description": "name of the StatefulSet", 14946 "in": "path", 14947 "name": "name", 14948 "required": true, 14949 "schema": { 14950 "type": "string", 14951 "uniqueItems": true 14952 } 14953 }, 14954 { 14955 "description": "object name and auth scope, such as for teams and projects", 14956 "in": "path", 14957 "name": "namespace", 14958 "required": true, 14959 "schema": { 14960 "type": "string", 14961 "uniqueItems": true 14962 } 14963 }, 14964 { 14965 "description": "If 'true', then the output is pretty printed.", 14966 "in": "query", 14967 "name": "pretty", 14968 "schema": { 14969 "type": "string", 14970 "uniqueItems": true 14971 } 14972 }, 14973 { 14974 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 14975 "in": "query", 14976 "name": "resourceVersion", 14977 "schema": { 14978 "type": "string", 14979 "uniqueItems": true 14980 } 14981 }, 14982 { 14983 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 14984 "in": "query", 14985 "name": "resourceVersionMatch", 14986 "schema": { 14987 "type": "string", 14988 "uniqueItems": true 14989 } 14990 }, 14991 { 14992 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 14993 "in": "query", 14994 "name": "timeoutSeconds", 14995 "schema": { 14996 "type": "integer", 14997 "uniqueItems": true 14998 } 14999 }, 15000 { 15001 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 15002 "in": "query", 15003 "name": "watch", 15004 "schema": { 15005 "type": "boolean", 15006 "uniqueItems": true 15007 } 15008 } 15009 ] 15010 }, 15011 "/apis/apps/v1/watch/replicasets": { 15012 "get": { 15013 "description": "watch individual changes to a list of ReplicaSet. deprecated: use the 'watch' parameter with a list operation instead.", 15014 "operationId": "watchAppsV1ReplicaSetListForAllNamespaces", 15015 "responses": { 15016 "200": { 15017 "content": { 15018 "application/json": { 15019 "schema": { 15020 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 15021 } 15022 }, 15023 "application/json;stream=watch": { 15024 "schema": { 15025 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 15026 } 15027 }, 15028 "application/vnd.kubernetes.protobuf": { 15029 "schema": { 15030 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 15031 } 15032 }, 15033 "application/vnd.kubernetes.protobuf;stream=watch": { 15034 "schema": { 15035 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 15036 } 15037 }, 15038 "application/yaml": { 15039 "schema": { 15040 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 15041 } 15042 } 15043 }, 15044 "description": "OK" 15045 }, 15046 "401": { 15047 "description": "Unauthorized" 15048 } 15049 }, 15050 "tags": [ 15051 "apps_v1" 15052 ], 15053 "x-kubernetes-action": "watchlist", 15054 "x-kubernetes-group-version-kind": { 15055 "group": "apps", 15056 "kind": "ReplicaSet", 15057 "version": "v1" 15058 } 15059 }, 15060 "parameters": [ 15061 { 15062 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 15063 "in": "query", 15064 "name": "allowWatchBookmarks", 15065 "schema": { 15066 "type": "boolean", 15067 "uniqueItems": true 15068 } 15069 }, 15070 { 15071 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 15072 "in": "query", 15073 "name": "continue", 15074 "schema": { 15075 "type": "string", 15076 "uniqueItems": true 15077 } 15078 }, 15079 { 15080 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 15081 "in": "query", 15082 "name": "fieldSelector", 15083 "schema": { 15084 "type": "string", 15085 "uniqueItems": true 15086 } 15087 }, 15088 { 15089 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 15090 "in": "query", 15091 "name": "labelSelector", 15092 "schema": { 15093 "type": "string", 15094 "uniqueItems": true 15095 } 15096 }, 15097 { 15098 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 15099 "in": "query", 15100 "name": "limit", 15101 "schema": { 15102 "type": "integer", 15103 "uniqueItems": true 15104 } 15105 }, 15106 { 15107 "description": "If 'true', then the output is pretty printed.", 15108 "in": "query", 15109 "name": "pretty", 15110 "schema": { 15111 "type": "string", 15112 "uniqueItems": true 15113 } 15114 }, 15115 { 15116 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 15117 "in": "query", 15118 "name": "resourceVersion", 15119 "schema": { 15120 "type": "string", 15121 "uniqueItems": true 15122 } 15123 }, 15124 { 15125 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 15126 "in": "query", 15127 "name": "resourceVersionMatch", 15128 "schema": { 15129 "type": "string", 15130 "uniqueItems": true 15131 } 15132 }, 15133 { 15134 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 15135 "in": "query", 15136 "name": "timeoutSeconds", 15137 "schema": { 15138 "type": "integer", 15139 "uniqueItems": true 15140 } 15141 }, 15142 { 15143 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 15144 "in": "query", 15145 "name": "watch", 15146 "schema": { 15147 "type": "boolean", 15148 "uniqueItems": true 15149 } 15150 } 15151 ] 15152 }, 15153 "/apis/apps/v1/watch/statefulsets": { 15154 "get": { 15155 "description": "watch individual changes to a list of StatefulSet. deprecated: use the 'watch' parameter with a list operation instead.", 15156 "operationId": "watchAppsV1StatefulSetListForAllNamespaces", 15157 "responses": { 15158 "200": { 15159 "content": { 15160 "application/json": { 15161 "schema": { 15162 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 15163 } 15164 }, 15165 "application/json;stream=watch": { 15166 "schema": { 15167 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 15168 } 15169 }, 15170 "application/vnd.kubernetes.protobuf": { 15171 "schema": { 15172 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 15173 } 15174 }, 15175 "application/vnd.kubernetes.protobuf;stream=watch": { 15176 "schema": { 15177 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 15178 } 15179 }, 15180 "application/yaml": { 15181 "schema": { 15182 "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent" 15183 } 15184 } 15185 }, 15186 "description": "OK" 15187 }, 15188 "401": { 15189 "description": "Unauthorized" 15190 } 15191 }, 15192 "tags": [ 15193 "apps_v1" 15194 ], 15195 "x-kubernetes-action": "watchlist", 15196 "x-kubernetes-group-version-kind": { 15197 "group": "apps", 15198 "kind": "StatefulSet", 15199 "version": "v1" 15200 } 15201 }, 15202 "parameters": [ 15203 { 15204 "description": "allowWatchBookmarks requests watch events with type \"BOOKMARK\". Servers that do not implement bookmarks may ignore this flag and bookmarks are sent at the server's discretion. Clients should not assume bookmarks are returned at any specific interval, nor may they assume the server will send any BOOKMARK event during a session. If this is not a watch, this field is ignored.", 15205 "in": "query", 15206 "name": "allowWatchBookmarks", 15207 "schema": { 15208 "type": "boolean", 15209 "uniqueItems": true 15210 } 15211 }, 15212 { 15213 "description": "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\".\n\nThis field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", 15214 "in": "query", 15215 "name": "continue", 15216 "schema": { 15217 "type": "string", 15218 "uniqueItems": true 15219 } 15220 }, 15221 { 15222 "description": "A selector to restrict the list of returned objects by their fields. Defaults to everything.", 15223 "in": "query", 15224 "name": "fieldSelector", 15225 "schema": { 15226 "type": "string", 15227 "uniqueItems": true 15228 } 15229 }, 15230 { 15231 "description": "A selector to restrict the list of returned objects by their labels. Defaults to everything.", 15232 "in": "query", 15233 "name": "labelSelector", 15234 "schema": { 15235 "type": "string", 15236 "uniqueItems": true 15237 } 15238 }, 15239 { 15240 "description": "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", 15241 "in": "query", 15242 "name": "limit", 15243 "schema": { 15244 "type": "integer", 15245 "uniqueItems": true 15246 } 15247 }, 15248 { 15249 "description": "If 'true', then the output is pretty printed.", 15250 "in": "query", 15251 "name": "pretty", 15252 "schema": { 15253 "type": "string", 15254 "uniqueItems": true 15255 } 15256 }, 15257 { 15258 "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 15259 "in": "query", 15260 "name": "resourceVersion", 15261 "schema": { 15262 "type": "string", 15263 "uniqueItems": true 15264 } 15265 }, 15266 { 15267 "description": "resourceVersionMatch determines how resourceVersion is applied to list calls. It is highly recommended that resourceVersionMatch be set for list calls where resourceVersion is set See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset", 15268 "in": "query", 15269 "name": "resourceVersionMatch", 15270 "schema": { 15271 "type": "string", 15272 "uniqueItems": true 15273 } 15274 }, 15275 { 15276 "description": "Timeout for the list/watch call. This limits the duration of the call, regardless of any activity or inactivity.", 15277 "in": "query", 15278 "name": "timeoutSeconds", 15279 "schema": { 15280 "type": "integer", 15281 "uniqueItems": true 15282 } 15283 }, 15284 { 15285 "description": "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", 15286 "in": "query", 15287 "name": "watch", 15288 "schema": { 15289 "type": "boolean", 15290 "uniqueItems": true 15291 } 15292 } 15293 ] 15294 } 15295 } 15296 }