|
298 | 298 | "description": "If true (the default), the server .out file will be included in the pod\u0027s stdout.",
|
299 | 299 | "type": "boolean"
|
300 | 300 | },
|
301 |
| - "clusters": { |
302 |
| - "description": "Configuration for the clusters.", |
| 301 | + "managedServers": { |
| 302 | + "description": "Configuration for individual Managed Servers.", |
303 | 303 | "type": "array",
|
304 | 304 | "items": {
|
305 |
| - "$ref": "#/definitions/Cluster" |
| 305 | + "$ref": "#/definitions/ManagedServer" |
306 | 306 | }
|
307 | 307 | },
|
308 |
| - "managedServers": { |
309 |
| - "description": "Configuration for individual Managed Servers.", |
| 308 | + "clusters": { |
| 309 | + "description": "Configuration for the clusters.", |
310 | 310 | "type": "array",
|
311 | 311 | "items": {
|
312 |
| - "$ref": "#/definitions/ManagedServer" |
| 312 | + "$ref": "#/definitions/Cluster" |
313 | 313 | }
|
314 | 314 | }
|
315 | 315 | }
|
|
458 | 458 | "description": "ServerPod describes the configuration for a Kubernetes pod for a server.",
|
459 | 459 | "type": "object",
|
460 | 460 | "properties": {
|
| 461 | + "nodeName": { |
| 462 | + "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.", |
| 463 | + "type": "string" |
| 464 | + }, |
461 | 465 | "livenessProbe": {
|
462 | 466 | "description": "Settings for the liveness probe associated with a server.",
|
463 | 467 | "$ref": "#/definitions/ProbeTuning"
|
464 | 468 | },
|
| 469 | + "readinessGates": { |
| 470 | + "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://github.com/kubernetes/community/blob/master/keps/sig-network/0007-pod-ready%2B%2B.md", |
| 471 | + "type": "array", |
| 472 | + "items": { |
| 473 | + "$ref": "https://github.com/garethr/kubernetes-json-schema/blob/master/v1.13.5/_definitions.json#/definitions/io.k8s.api.core.v1.PodReadinessGate" |
| 474 | + } |
| 475 | + }, |
465 | 476 | "podSecurityContext": {
|
466 | 477 | "description": "Pod-level security attributes.",
|
467 | 478 | "$ref": "https://github.com/garethr/kubernetes-json-schema/blob/master/v1.13.5/_definitions.json#/definitions/io.k8s.api.core.v1.PodSecurityContext"
|
468 | 479 | },
|
| 480 | + "priorityClassName": { |
| 481 | + "description": "If specified, indicates the pod\u0027s 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.", |
| 482 | + "type": "string" |
| 483 | + }, |
469 | 484 | "volumes": {
|
470 | 485 | "description": "Additional volumes to be created in the server pod.",
|
471 | 486 | "type": "array",
|
|
488 | 503 | "$ref": "https://github.com/garethr/kubernetes-json-schema/blob/master/v1.13.5/_definitions.json#/definitions/io.k8s.api.core.v1.EnvVar"
|
489 | 504 | }
|
490 | 505 | },
|
| 506 | + "priority": { |
| 507 | + "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.", |
| 508 | + "type": "number" |
| 509 | + }, |
| 510 | + "restartPolicy": { |
| 511 | + "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", |
| 512 | + "type": "string" |
| 513 | + }, |
491 | 514 | "nodeSelector": {
|
492 | 515 | "description": "Selector which must match a node\u0027s labels for the pod to be scheduled on that node.",
|
493 | 516 | "$ref": "#/definitions/Map"
|
|
503 | 526 | "description": "The labels to be attached to generated resources. The label names must not start with \u0027weblogic.\u0027.",
|
504 | 527 | "$ref": "#/definitions/Map"
|
505 | 528 | },
|
| 529 | + "runtimeClassName": { |
| 530 | + "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://github.com/kubernetes/community/blob/master/keps/sig-node/0014-runtime-class.md This is an alpha feature and may change in the future.", |
| 531 | + "type": "string" |
| 532 | + }, |
| 533 | + "tolerations": { |
| 534 | + "description": "If specified, the pod\u0027s tolerations.", |
| 535 | + "type": "array", |
| 536 | + "items": { |
| 537 | + "$ref": "https://github.com/garethr/kubernetes-json-schema/blob/master/v1.13.5/_definitions.json#/definitions/io.k8s.api.core.v1.Toleration" |
| 538 | + } |
| 539 | + }, |
506 | 540 | "readinessProbe": {
|
507 | 541 | "description": "Settings for the readiness probe associated with a server.",
|
508 | 542 | "$ref": "#/definitions/ProbeTuning"
|
|
518 | 552 | "description": "Container-level security attributes. Will override any matching pod-level attributes.",
|
519 | 553 | "$ref": "https://github.com/garethr/kubernetes-json-schema/blob/master/v1.13.5/_definitions.json#/definitions/io.k8s.api.core.v1.SecurityContext"
|
520 | 554 | },
|
| 555 | + "schedulerName": { |
| 556 | + "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.", |
| 557 | + "type": "string" |
| 558 | + }, |
521 | 559 | "initContainers": {
|
522 | 560 | "description": "Initialization containers to be included in the server pod.",
|
523 | 561 | "type": "array",
|
|
528 | 566 | "shutdown": {
|
529 | 567 | "description": "Configures how the operator should shutdown the server instance.",
|
530 | 568 | "$ref": "#/definitions/Shutdown"
|
| 569 | + }, |
| 570 | + "affinity": { |
| 571 | + "description": "If specified, the pod\u0027s scheduling constraints", |
| 572 | + "$ref": "https://github.com/garethr/kubernetes-json-schema/blob/master/v1.13.5/_definitions.json#/definitions/io.k8s.api.core.v1.Affinity" |
531 | 573 | }
|
532 | 574 | }
|
533 | 575 | },
|
|
0 commit comments