Skip to content

Commit f74bae3

Browse files
author
Yann Hamon
committed
Adding new schemas
1 parent 4d37b7c commit f74bae3

28 files changed

+328
-0
lines changed

master-local/_definitions.json

+10
Original file line numberDiff line numberDiff line change
@@ -9513,6 +9513,11 @@
95139513
"description": "Human-readable message indicating details about last transition.",
95149514
"type": "string"
95159515
},
9516+
"observedGeneration": {
9517+
"description": "If set, this represents the .metadata.generation that the pod condition was set based upon. This is an alpha field. Enable PodObservedGenerationTracking to be able to use this field.",
9518+
"format": "int64",
9519+
"type": "integer"
9520+
},
95169521
"reason": {
95179522
"description": "Unique, one-word, CamelCase reason for the condition's last transition.",
95189523
"type": "string"
@@ -10105,6 +10110,11 @@
1010510110
"description": "nominatedNodeName is set only when this pod preempts other pods on the node, but it cannot be scheduled right away as preemption victims receive their graceful termination periods. This field does not guarantee that the pod will be scheduled on this node. Scheduler may decide to place the pod elsewhere if other nodes become available sooner. Scheduler may also decide to give the resources on this node to a higher priority pod that is created after preemption. As a result, this field may be different than PodSpec.nodeName when the pod is scheduled.",
1010610111
"type": "string"
1010710112
},
10113+
"observedGeneration": {
10114+
"description": "If set, this represents the .metadata.generation that the pod status was set based upon. This is an alpha field. Enable PodObservedGenerationTracking to be able to use this field.",
10115+
"format": "int64",
10116+
"type": "integer"
10117+
},
1010810118
"phase": {
1010910119
"description": "The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle. The conditions array, the reason and message fields, and the individual container status arrays contain more detail about the pod's status. There are five possible phase values:\n\nPending: The pod has been accepted by the Kubernetes system, but one or more of the container images has not been created. This includes time before being scheduled as well as time spent downloading images over the network, which could take a while. Running: The pod has been bound to a node, and all of the containers have been created. At least one container is still running, or is in the process of starting or restarting. Succeeded: All containers in the pod have terminated in success, and will not be restarted. Failed: All containers in the pod have terminated, and at least one container has terminated in failure. The container either exited with non-zero status or was terminated by the system. Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the pod.\n\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase",
1011010120
"type": "string"

master-local/podcondition-v1.json

+8
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@
1616
"null"
1717
]
1818
},
19+
"observedGeneration": {
20+
"description": "If set, this represents the .metadata.generation that the pod condition was set based upon. This is an alpha field. Enable PodObservedGenerationTracking to be able to use this field.",
21+
"format": "int64",
22+
"type": [
23+
"integer",
24+
"null"
25+
]
26+
},
1927
"reason": {
2028
"description": "Unique, one-word, CamelCase reason for the condition's last transition.",
2129
"type": [

master-local/podcondition.json

+8
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@
1616
"null"
1717
]
1818
},
19+
"observedGeneration": {
20+
"description": "If set, this represents the .metadata.generation that the pod condition was set based upon. This is an alpha field. Enable PodObservedGenerationTracking to be able to use this field.",
21+
"format": "int64",
22+
"type": [
23+
"integer",
24+
"null"
25+
]
26+
},
1927
"reason": {
2028
"description": "Unique, one-word, CamelCase reason for the condition's last transition.",
2129
"type": [

master-local/podstatus-v1.json

+8
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,14 @@
8484
"null"
8585
]
8686
},
87+
"observedGeneration": {
88+
"description": "If set, this represents the .metadata.generation that the pod status was set based upon. This is an alpha field. Enable PodObservedGenerationTracking to be able to use this field.",
89+
"format": "int64",
90+
"type": [
91+
"integer",
92+
"null"
93+
]
94+
},
8795
"phase": {
8896
"description": "The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle. The conditions array, the reason and message fields, and the individual container status arrays contain more detail about the pod's status. There are five possible phase values:\n\nPending: The pod has been accepted by the Kubernetes system, but one or more of the container images has not been created. This includes time before being scheduled as well as time spent downloading images over the network, which could take a while. Running: The pod has been bound to a node, and all of the containers have been created. At least one container is still running, or is in the process of starting or restarting. Succeeded: All containers in the pod have terminated in success, and will not be restarted. Failed: All containers in the pod have terminated, and at least one container has terminated in failure. The container either exited with non-zero status or was terminated by the system. Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the pod.\n\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase",
8997
"type": [

master-local/podstatus.json

+8
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,14 @@
8484
"null"
8585
]
8686
},
87+
"observedGeneration": {
88+
"description": "If set, this represents the .metadata.generation that the pod status was set based upon. This is an alpha field. Enable PodObservedGenerationTracking to be able to use this field.",
89+
"format": "int64",
90+
"type": [
91+
"integer",
92+
"null"
93+
]
94+
},
8795
"phase": {
8896
"description": "The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle. The conditions array, the reason and message fields, and the individual container status arrays contain more detail about the pod's status. There are five possible phase values:\n\nPending: The pod has been accepted by the Kubernetes system, but one or more of the container images has not been created. This includes time before being scheduled as well as time spent downloading images over the network, which could take a while. Running: The pod has been bound to a node, and all of the containers have been created. At least one container is still running, or is in the process of starting or restarting. Succeeded: All containers in the pod have terminated in success, and will not be restarted. Failed: All containers in the pod have terminated, and at least one container has terminated in failure. The container either exited with non-zero status or was terminated by the system. Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the pod.\n\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase",
8997
"type": [

master-standalone-strict/_definitions.json

+10
Original file line numberDiff line numberDiff line change
@@ -9822,6 +9822,11 @@
98229822
"description": "Human-readable message indicating details about last transition.",
98239823
"type": "string"
98249824
},
9825+
"observedGeneration": {
9826+
"description": "If set, this represents the .metadata.generation that the pod condition was set based upon. This is an alpha field. Enable PodObservedGenerationTracking to be able to use this field.",
9827+
"format": "int64",
9828+
"type": "integer"
9829+
},
98259830
"reason": {
98269831
"description": "Unique, one-word, CamelCase reason for the condition's last transition.",
98279832
"type": "string"
@@ -10426,6 +10431,11 @@
1042610431
"description": "nominatedNodeName is set only when this pod preempts other pods on the node, but it cannot be scheduled right away as preemption victims receive their graceful termination periods. This field does not guarantee that the pod will be scheduled on this node. Scheduler may decide to place the pod elsewhere if other nodes become available sooner. Scheduler may also decide to give the resources on this node to a higher priority pod that is created after preemption. As a result, this field may be different than PodSpec.nodeName when the pod is scheduled.",
1042710432
"type": "string"
1042810433
},
10434+
"observedGeneration": {
10435+
"description": "If set, this represents the .metadata.generation that the pod status was set based upon. This is an alpha field. Enable PodObservedGenerationTracking to be able to use this field.",
10436+
"format": "int64",
10437+
"type": "integer"
10438+
},
1042910439
"phase": {
1043010440
"description": "The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle. The conditions array, the reason and message fields, and the individual container status arrays contain more detail about the pod's status. There are five possible phase values:\n\nPending: The pod has been accepted by the Kubernetes system, but one or more of the container images has not been created. This includes time before being scheduled as well as time spent downloading images over the network, which could take a while. Running: The pod has been bound to a node, and all of the containers have been created. At least one container is still running, or is in the process of starting or restarting. Succeeded: All containers in the pod have terminated in success, and will not be restarted. Failed: All containers in the pod have terminated, and at least one container has terminated in failure. The container either exited with non-zero status or was terminated by the system. Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the pod.\n\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase",
1043110441
"type": "string"

master-standalone-strict/pod-v1.json

+16
Original file line numberDiff line numberDiff line change
@@ -10533,6 +10533,14 @@
1053310533
"null"
1053410534
]
1053510535
},
10536+
"observedGeneration": {
10537+
"description": "If set, this represents the .metadata.generation that the pod condition was set based upon. This is an alpha field. Enable PodObservedGenerationTracking to be able to use this field.",
10538+
"format": "int64",
10539+
"type": [
10540+
"integer",
10541+
"null"
10542+
]
10543+
},
1053610544
"reason": {
1053710545
"description": "Unique, one-word, CamelCase reason for the condition's last transition.",
1053810546
"type": [
@@ -12319,6 +12327,14 @@
1231912327
"null"
1232012328
]
1232112329
},
12330+
"observedGeneration": {
12331+
"description": "If set, this represents the .metadata.generation that the pod status was set based upon. This is an alpha field. Enable PodObservedGenerationTracking to be able to use this field.",
12332+
"format": "int64",
12333+
"type": [
12334+
"integer",
12335+
"null"
12336+
]
12337+
},
1232212338
"phase": {
1232312339
"description": "The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle. The conditions array, the reason and message fields, and the individual container status arrays contain more detail about the pod's status. There are five possible phase values:\n\nPending: The pod has been accepted by the Kubernetes system, but one or more of the container images has not been created. This includes time before being scheduled as well as time spent downloading images over the network, which could take a while. Running: The pod has been bound to a node, and all of the containers have been created. At least one container is still running, or is in the process of starting or restarting. Succeeded: All containers in the pod have terminated in success, and will not be restarted. Failed: All containers in the pod have terminated, and at least one container has terminated in failure. The container either exited with non-zero status or was terminated by the system. Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the pod.\n\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase",
1232412340
"type": [

master-standalone-strict/pod.json

+16
Original file line numberDiff line numberDiff line change
@@ -10530,6 +10530,14 @@
1053010530
"null"
1053110531
]
1053210532
},
10533+
"observedGeneration": {
10534+
"description": "If set, this represents the .metadata.generation that the pod condition was set based upon. This is an alpha field. Enable PodObservedGenerationTracking to be able to use this field.",
10535+
"format": "int64",
10536+
"type": [
10537+
"integer",
10538+
"null"
10539+
]
10540+
},
1053310541
"reason": {
1053410542
"description": "Unique, one-word, CamelCase reason for the condition's last transition.",
1053510543
"type": [
@@ -12316,6 +12324,14 @@
1231612324
"null"
1231712325
]
1231812326
},
12327+
"observedGeneration": {
12328+
"description": "If set, this represents the .metadata.generation that the pod status was set based upon. This is an alpha field. Enable PodObservedGenerationTracking to be able to use this field.",
12329+
"format": "int64",
12330+
"type": [
12331+
"integer",
12332+
"null"
12333+
]
12334+
},
1231912335
"phase": {
1232012336
"description": "The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle. The conditions array, the reason and message fields, and the individual container status arrays contain more detail about the pod's status. There are five possible phase values:\n\nPending: The pod has been accepted by the Kubernetes system, but one or more of the container images has not been created. This includes time before being scheduled as well as time spent downloading images over the network, which could take a while. Running: The pod has been bound to a node, and all of the containers have been created. At least one container is still running, or is in the process of starting or restarting. Succeeded: All containers in the pod have terminated in success, and will not be restarted. Failed: All containers in the pod have terminated, and at least one container has terminated in failure. The container either exited with non-zero status or was terminated by the system. Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the pod.\n\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase",
1232112337
"type": [

master-standalone-strict/podcondition-v1.json

+8
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@
2424
"null"
2525
]
2626
},
27+
"observedGeneration": {
28+
"description": "If set, this represents the .metadata.generation that the pod condition was set based upon. This is an alpha field. Enable PodObservedGenerationTracking to be able to use this field.",
29+
"format": "int64",
30+
"type": [
31+
"integer",
32+
"null"
33+
]
34+
},
2735
"reason": {
2836
"description": "Unique, one-word, CamelCase reason for the condition's last transition.",
2937
"type": [

master-standalone-strict/podcondition.json

+8
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@
2424
"null"
2525
]
2626
},
27+
"observedGeneration": {
28+
"description": "If set, this represents the .metadata.generation that the pod condition was set based upon. This is an alpha field. Enable PodObservedGenerationTracking to be able to use this field.",
29+
"format": "int64",
30+
"type": [
31+
"integer",
32+
"null"
33+
]
34+
},
2735
"reason": {
2836
"description": "Unique, one-word, CamelCase reason for the condition's last transition.",
2937
"type": [

master-standalone-strict/podlist-v1.json

+16
Original file line numberDiff line numberDiff line change
@@ -10548,6 +10548,14 @@
1054810548
"null"
1054910549
]
1055010550
},
10551+
"observedGeneration": {
10552+
"description": "If set, this represents the .metadata.generation that the pod condition was set based upon. This is an alpha field. Enable PodObservedGenerationTracking to be able to use this field.",
10553+
"format": "int64",
10554+
"type": [
10555+
"integer",
10556+
"null"
10557+
]
10558+
},
1055110559
"reason": {
1055210560
"description": "Unique, one-word, CamelCase reason for the condition's last transition.",
1055310561
"type": [
@@ -12334,6 +12342,14 @@
1233412342
"null"
1233512343
]
1233612344
},
12345+
"observedGeneration": {
12346+
"description": "If set, this represents the .metadata.generation that the pod status was set based upon. This is an alpha field. Enable PodObservedGenerationTracking to be able to use this field.",
12347+
"format": "int64",
12348+
"type": [
12349+
"integer",
12350+
"null"
12351+
]
12352+
},
1233712353
"phase": {
1233812354
"description": "The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle. The conditions array, the reason and message fields, and the individual container status arrays contain more detail about the pod's status. There are five possible phase values:\n\nPending: The pod has been accepted by the Kubernetes system, but one or more of the container images has not been created. This includes time before being scheduled as well as time spent downloading images over the network, which could take a while. Running: The pod has been bound to a node, and all of the containers have been created. At least one container is still running, or is in the process of starting or restarting. Succeeded: All containers in the pod have terminated in success, and will not be restarted. Failed: All containers in the pod have terminated, and at least one container has terminated in failure. The container either exited with non-zero status or was terminated by the system. Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the pod.\n\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase",
1233912355
"type": [

0 commit comments

Comments
 (0)