Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,326 for deploymentID (0.18 sec)

  1. staging/src/k8s.io/api/admission/v1/generated.proto

      //
      // For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
      // `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]` and `matchPolicy: Equivalent`,
      // an API request to apps/v1beta1 deployments would be converted and sent to the webhook
      // with `resource: {group:"apps", version:"v1", resource:"deployments"}` (matching the resource the webhook registered for),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admission/v1beta1/generated.proto

      //
      // For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
      // `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]` and `matchPolicy: Equivalent`,
      // an API request to apps/v1beta1 deployments would be converted and sent to the webhook
      // with `resource: {group:"apps", version:"v1", resource:"deployments"}` (matching the resource the webhook registered for),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admission/v1beta1/types_swagger_doc_generated.go

    registered a rule of `apiGroups:[\"apps\"], apiVersions:[\"v1\"], resources: [\"deployments\"]` and `matchPolicy: Equivalent`, an API request to apps/v1beta1 deployments would be converted and sent to the webhook with `resource: {group:\"apps\", version:\"v1\", resource:\"deployments\"}` (matching the resource the webhook registered for), and `requestResource: {group:\"apps\", version:\"v1beta1\", resource:\"deployments\"}` (indicating the resource of the original API request).\n\nSee documentation...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admission/v1/types.go

    	//
    	// For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
    	// `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]` and `matchPolicy: Equivalent`,
    	// an API request to apps/v1beta1 deployments would be converted and sent to the webhook
    	// with `resource: {group:"apps", version:"v1", resource:"deployments"}` (matching the resource the webhook registered for),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"paused":                  "Indicates that the deployment is paused.",
    	"progressDeadlineSeconds": "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.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/deployment/internal/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Internal types for handling deployments.
     */
    @NonNullApi
    package org.gradle.deployment.internal;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 18:00:07 UTC 2022
    - 756 bytes
    - Viewed (0)
  7. pkg/registry/apps/rest/storage_apps.go

    	storage := map[string]rest.Storage{}
    
    	// deployments
    	if resource := "deployments"; apiResourceConfigSource.ResourceEnabled(appsapiv1.SchemeGroupVersion.WithResource(resource)) {
    		deploymentStorage, err := deploymentstore.NewStorage(restOptionsGetter)
    		if err != nil {
    			return storage, err
    		}
    		storage[resource] = deploymentStorage.Deployment
    		storage[resource+"/status"] = deploymentStorage.Status
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/installer_test.go

    				},
    				{
    					Name:       "deployments",
    					Namespaced: true,
    					Kind:       "Deployment",
    					Group:      "apps",
    					Version:    "v1",
    					ShortNames: []string{"deploy"},
    					Verbs:      []string{"create", "delete", "deletecollection", "get", "list", "patch", "update", "watch"},
    				},
    				{
    					Name:       "deployments/status",
    					Namespaced: true,
    					Kind:       "Deployment",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. tests/integration/operator/switch_cr_test.go

    					return fmt.Errorf("got operator service: %s from cluster, expected to be removed", svc.Name)
    				}
    				if dp, _ := cs.Kube().AppsV1().Deployments(OperatorNamespace).Get(context.TODO(), "istio-operator", metav1.GetOptions{}); dp.Name != "" {
    					return fmt.Errorf("got operator deployment %s from cluster, expected to be removed", dp.Name)
    				}
    
    				// check the revision of operator which should not to be removed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // Indicates that the deployment is paused.
      // +optional
      optional bool paused = 7;
    
      // 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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top