mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 04:08:16 +00:00 
			
		
		
		
	Generated changes for defaults updates
This commit is contained in:
		@@ -43326,7 +43326,7 @@
 | 
				
			|||||||
    ],
 | 
					    ],
 | 
				
			||||||
    "properties": {
 | 
					    "properties": {
 | 
				
			||||||
     "concurrencyPolicy": {
 | 
					     "concurrencyPolicy": {
 | 
				
			||||||
      "description": "ConcurrencyPolicy specifies how to treat concurrent executions of a Job.",
 | 
					      "description": "ConcurrencyPolicy specifies how to treat concurrent executions of a Job. Defaults to Allow.",
 | 
				
			||||||
      "type": "string"
 | 
					      "type": "string"
 | 
				
			||||||
     },
 | 
					     },
 | 
				
			||||||
     "failedJobsHistoryLimit": {
 | 
					     "failedJobsHistoryLimit": {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2186,7 +2186,7 @@
 | 
				
			|||||||
     },
 | 
					     },
 | 
				
			||||||
     "concurrencyPolicy": {
 | 
					     "concurrencyPolicy": {
 | 
				
			||||||
      "type": "string",
 | 
					      "type": "string",
 | 
				
			||||||
      "description": "ConcurrencyPolicy specifies how to treat concurrent executions of a Job."
 | 
					      "description": "ConcurrencyPolicy specifies how to treat concurrent executions of a Job. Defaults to Allow."
 | 
				
			||||||
     },
 | 
					     },
 | 
				
			||||||
     "suspend": {
 | 
					     "suspend": {
 | 
				
			||||||
      "type": "boolean",
 | 
					      "type": "boolean",
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -3720,7 +3720,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i
 | 
				
			|||||||
</tr>
 | 
					</tr>
 | 
				
			||||||
<tr>
 | 
					<tr>
 | 
				
			||||||
<td class="tableblock halign-left valign-top"><p class="tableblock">concurrencyPolicy</p></td>
 | 
					<td class="tableblock halign-left valign-top"><p class="tableblock">concurrencyPolicy</p></td>
 | 
				
			||||||
<td class="tableblock halign-left valign-top"><p class="tableblock">ConcurrencyPolicy specifies how to treat concurrent executions of a Job.</p></td>
 | 
					<td class="tableblock halign-left valign-top"><p class="tableblock">ConcurrencyPolicy specifies how to treat concurrent executions of a Job. Defaults to Allow.</p></td>
 | 
				
			||||||
<td class="tableblock halign-left valign-top"><p class="tableblock">false</p></td>
 | 
					<td class="tableblock halign-left valign-top"><p class="tableblock">false</p></td>
 | 
				
			||||||
<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
 | 
					<td class="tableblock halign-left valign-top"><p class="tableblock">string</p></td>
 | 
				
			||||||
<td class="tableblock halign-left valign-top"></td>
 | 
					<td class="tableblock halign-left valign-top"></td>
 | 
				
			||||||
@@ -5629,7 +5629,7 @@ Examples:<br>
 | 
				
			|||||||
</div>
 | 
					</div>
 | 
				
			||||||
<div id="footer">
 | 
					<div id="footer">
 | 
				
			||||||
<div id="footer-text">
 | 
					<div id="footer-text">
 | 
				
			||||||
Last updated 2017-04-05 12:45:13 UTC
 | 
					Last updated 2017-04-10 11:51:28 UTC
 | 
				
			||||||
</div>
 | 
					</div>
 | 
				
			||||||
</div>
 | 
					</div>
 | 
				
			||||||
</body>
 | 
					</body>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -72,6 +72,7 @@ message CronJobSpec {
 | 
				
			|||||||
  optional int64 startingDeadlineSeconds = 2;
 | 
					  optional int64 startingDeadlineSeconds = 2;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  // ConcurrencyPolicy specifies how to treat concurrent executions of a Job.
 | 
					  // ConcurrencyPolicy specifies how to treat concurrent executions of a Job.
 | 
				
			||||||
 | 
					  // Defaults to Allow.
 | 
				
			||||||
  // +optional
 | 
					  // +optional
 | 
				
			||||||
  optional string concurrencyPolicy = 3;
 | 
					  optional string concurrencyPolicy = 3;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -52,7 +52,7 @@ var map_CronJobSpec = map[string]string{
 | 
				
			|||||||
	"":                           "CronJobSpec describes how the job execution will look like and when it will actually run.",
 | 
						"":                           "CronJobSpec describes how the job execution will look like and when it will actually run.",
 | 
				
			||||||
	"schedule":                   "Schedule contains the schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.",
 | 
						"schedule":                   "Schedule contains the schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.",
 | 
				
			||||||
	"startingDeadlineSeconds":    "Optional deadline in seconds for starting the job if it misses scheduled time for any reason.  Missed jobs executions will be counted as failed ones.",
 | 
						"startingDeadlineSeconds":    "Optional deadline in seconds for starting the job if it misses scheduled time for any reason.  Missed jobs executions will be counted as failed ones.",
 | 
				
			||||||
	"concurrencyPolicy":          "ConcurrencyPolicy specifies how to treat concurrent executions of a Job.",
 | 
						"concurrencyPolicy":          "ConcurrencyPolicy specifies how to treat concurrent executions of a Job. Defaults to Allow.",
 | 
				
			||||||
	"suspend":                    "Suspend flag tells the controller to suspend subsequent executions, it does not apply to already started executions.  Defaults to false.",
 | 
						"suspend":                    "Suspend flag tells the controller to suspend subsequent executions, it does not apply to already started executions.  Defaults to false.",
 | 
				
			||||||
	"jobTemplate":                "JobTemplate is the object that describes the job that will be created when executing a CronJob.",
 | 
						"jobTemplate":                "JobTemplate is the object that describes the job that will be created when executing a CronJob.",
 | 
				
			||||||
	"successfulJobsHistoryLimit": "The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.",
 | 
						"successfulJobsHistoryLimit": "The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.",
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -12399,7 +12399,7 @@ func GetOpenAPIDefinitions(ref openapi.ReferenceCallback) map[string]openapi.Ope
 | 
				
			|||||||
						},
 | 
											},
 | 
				
			||||||
						"concurrencyPolicy": {
 | 
											"concurrencyPolicy": {
 | 
				
			||||||
							SchemaProps: spec.SchemaProps{
 | 
												SchemaProps: spec.SchemaProps{
 | 
				
			||||||
								Description: "ConcurrencyPolicy specifies how to treat concurrent executions of a Job.",
 | 
													Description: "ConcurrencyPolicy specifies how to treat concurrent executions of a Job. Defaults to Allow.",
 | 
				
			||||||
								Type:        []string{"string"},
 | 
													Type:        []string{"string"},
 | 
				
			||||||
								Format:      "",
 | 
													Format:      "",
 | 
				
			||||||
							},
 | 
												},
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user