Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for pdb (0.03 sec)

  1. releasenotes/notes/update-pdb-version.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - 32005
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 09 21:42:52 UTC 2022
    - 134 bytes
    - Viewed (0)
  2. pkg/registry/policy/poddisruptionbudget/storage/storage_test.go

    		t.Fatalf("unexpected error: %v", err)
    	}
    
    	pdb := obj.(*policy.PodDisruptionBudget)
    	if pdb.Spec.MinAvailable.IntValue() != 7 {
    		t.Errorf("we expected .spec.replicas to not be updated but it was updated to %v", pdb.Spec.MinAvailable)
    	}
    	if pdb.Status.ExpectedPods != 8 {
    		t.Errorf("we expected .status.replicas to be updated to %d but it was %v", 7, pdb.Status.ExpectedPods)
    	}
    }
    
    func TestGet(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:45 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. pkg/apis/policy/types.go

    	// Healthy pods will be subject to the PDB for eviction.
    	//
    	// AlwaysAllow policy means that all running pods (status.phase="Running"),
    	// but not yet healthy are considered disrupted and can be evicted regardless
    	// of whether the criteria in a PDB is met. This means perspective running
    	// pods of a disrupted application might not get a chance to become healthy.
    	// Healthy pods will be subject to the PDB for eviction.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. tests/prepared_stmt_test.go

    	tx = tx.Create(&user)
    
    	pdb, ok := tx.ConnPool.(*gorm.PreparedStmtDB)
    	if !ok {
    		t.Fatalf("should assign PreparedStatement Manager back to database when using PrepareStmt mode")
    	}
    
    	pdb.Mux.Lock()
    	if len(pdb.Stmts) == 0 {
    		pdb.Mux.Unlock()
    		t.Fatalf("prepared stmt can not be empty")
    	}
    	pdb.Mux.Unlock()
    
    	pdb.Reset()
    	pdb.Mux.Lock()
    	defer pdb.Mux.Unlock()
    	if len(pdb.Stmts) != 0 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 21 07:55:43 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. pkg/apis/policy/v1/conversion_test.go

    			In: &v1.PodDisruptionBudget{
    				Spec: v1.PodDisruptionBudgetSpec{
    					Selector: &metav1.LabelSelector{
    						MatchExpressions: []metav1.LabelSelectorRequirement{
    							{
    								Key:      "pdb.kubernetes.io/deprecated-v1beta1-empty-selector-match",
    								Operator: metav1.LabelSelectorOpExists,
    							},
    						},
    					},
    				},
    			},
    			Out: &policy.PodDisruptionBudget{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 09 15:29:11 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  6. pkg/apis/policy/v1beta1/conversion_test.go

    				},
    			},
    		},
    		{
    			Name: "v1beta1 to internal with existing pdb selector",
    			In: &v1beta1.PodDisruptionBudget{
    				Spec: v1beta1.PodDisruptionBudgetSpec{
    					Selector: &metav1.LabelSelector{
    						MatchLabels: map[string]string{
    							"foo": "bar",
    						},
    						MatchExpressions: []metav1.LabelSelectorRequirement{
    							{
    								Key:      "pdb.kubernetes.io/deprecated-v1beta1-empty-selector-match",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 09 15:29:11 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/policy/v1beta1/generated.proto

      // disrupted (status.currentHealthy is at least equal to status.desiredHealthy).
      // Healthy pods will be subject to the PDB for eviction.
      //
      // AlwaysAllow policy means that all running pods (status.phase="Running"),
      // but not yet healthy are considered disrupted and can be evicted regardless
      // of whether the criteria in a PDB is met. This means perspective running
      // pods of a disrupted application might not get a chance to become healthy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/policy/v1/generated.proto

      // disrupted (status.currentHealthy is at least equal to status.desiredHealthy).
      // Healthy pods will be subject to the PDB for eviction.
      //
      // AlwaysAllow policy means that all running pods (status.phase="Running"),
      // but not yet healthy are considered disrupted and can be evicted regardless
      // of whether the criteria in a PDB is met. This means perspective running
      // pods of a disrupted application might not get a chance to become healthy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/OutputCleaningCompiler.java

            for (File removedSource : spec.getRemovedSourceFiles()) {
                File objectFile = getObjectFile(spec.getObjectFileDir(), removedSource);
    
                // Remove .pdb file if present
                new File(objectFile.getParentFile(), objectFile.getName() + ".pdb").delete();
    
                if (objectFile.delete()) {
                    didRemove = true;
                    objectFile.getParentFile().delete();
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/policy/v1/types_swagger_doc_generated.go

    least equal to status.desiredHealthy). Healthy pods will be subject to the PDB for eviction.\n\nAlwaysAllow policy means that all running pods (status.phase=\"Running\"), but not yet healthy are considered disrupted and can be evicted regardless of whether the criteria in a PDB is met. This means perspective running pods of a disrupted application might not get a chance to become healthy. Healthy pods will be subject to the PDB for eviction.\n\nAdditional policies may be added in the future. Clients...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 20 23:36:45 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top