Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for deletion (0.17 sec)

  1. istioctl/pkg/tag/tag.go

    	}
    	// warn user if deleting a tag that still has namespaces pointed to it
    	if len(taggedNamespaces) > 0 && !skipConfirmation {
    		if !util.Confirm(buildDeleteTagConfirmation(tagName, taggedNamespaces), w) {
    			fmt.Fprintf(w, "Aborting operation.\n")
    			return nil
    		}
    	}
    
    	// proceed with webhook deletion
    	err = DeleteTagWebhooks(ctx, kubeClient, tagName)
    	if err != nil {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 08:32:06 GMT 2024
    - 16.3K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/events/v1/generated.proto

      // +optional
      optional k8s.io.api.core.v1.ObjectReference regarding = 8;
    
      // related is the optional secondary object for more complex actions. E.g. when regarding object triggers
      // a creation or deletion of related object.
      // +optional
      optional k8s.io.api.core.v1.ObjectReference related = 9;
    
      // note is a human-readable description of the status of this operation.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  3. istioctl/pkg/waypoint/waypoint.go

    	waypointCmd.PersistentFlags().StringVarP(&waypointName, "name", "", constants.DefaultNamespaceWaypoint, "name of the waypoint")
    
    	return waypointCmd
    }
    
    // deleteWaypoints handles the deletion of waypoints based on the provided names, or all if names is nil
    func deleteWaypoints(cmd *cobra.Command, kubeClient kube.CLIClient, namespace string, names []string) error {
    	var multiErr *multierror.Error
    	if names == nil {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:40 GMT 2024
    - 15K bytes
    - Viewed (0)
  4. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // field is set by the server when a graceful deletion is requested by the user, and is not
      // directly settable by a client. The resource is expected to be deleted (no longer visible
      // from resource lists, and not reachable by name) after the time in this field, once the
      // finalizers list is empty. As long as the finalizers list contains items, deletion is blocked.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // WhenDeleted specifies what happens to PVCs created from StatefulSet
      // VolumeClaimTemplates when the StatefulSet is deleted. The default policy
      // of `Retain` causes PVCs to not be affected by StatefulSet deletion. The
      // `Delete` policy causes those PVCs to be deleted.
      optional string whenDeleted = 1;
    
      // WhenScaled specifies what happens to PVCs created from StatefulSet
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 36.4K bytes
    - Viewed (0)
  6. licenses/github.com/hashicorp/go-multierror/LICENSE

         this License.
    
    1.10. “Modifications”
    
         means any of the following:
    
         a. any file in Source Code Form that results from an addition to, deletion
            from, or modification of the contents of Covered Software; or
    
         b. any new file in Source Code Form that contains any Covered Software.
    
    1.11. “Patent Claims” of a Contributor
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/policy/v1/generated.proto

      // eviction request to the time when the pod is seen by PDB controller
      // as having been marked for deletion (or after a timeout). The key in the map is the name of the pod
      // and the value is the time when the API server processed the eviction request. If
      // the deletion didn't occur and a pod is still there it will be removed from
      // the list automatically by PodDisruptionBudget controller after some time.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8K bytes
    - Viewed (0)
  8. cni/pkg/repair/repaircontroller.go

    )
    
    func (c *Controller) deleteBrokenPod(pod *corev1.Pod) error {
    	m := podsRepaired.With(typeLabel.Value(deleteType))
    	repairLog.Infof("Pod detected as broken, deleting: %s/%s", pod.Namespace, pod.Name)
    
    	// Make sure we are deleting what we think we are...
    	preconditions := &metav1.Preconditions{
    		UID:             &pod.UID,
    		ResourceVersion: &pod.ResourceVersion,
    	}
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Feb 10 00:31:55 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  9. istioctl/pkg/tag/util.go

    		return false
    	}
    	return len(mwhs.Items) > 0
    }
    
    // DeactivateIstioInjectionWebhook deactivates the istio-injection webhook from the given MutatingWebhookConfiguration if exists.
    // used rather than just deleting the webhook since we want to keep it around after changing the default so user can later
    // switch back to it. This is a hack but it is meant to cover a corner case where a user wants to migrate from a non-revisioned
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jan 16 17:43:42 GMT 2024
    - 5.4K bytes
    - Viewed (1)
  10. istioctl/pkg/describe/describe_test.go

       Matching subsets: 
          (Non-matching subsets v1)
       Traffic Policy TLS Mode: ISTIO_MUTUAL
       Policies: load balancer/connection pool/outlier detection
       Port Level Settings:
        8080:
          TLS Mode: DISABLE
          Policies: load balancer/connection pool/outlier detection
    VirtualService: bookinfo
       Route to host "productpage" with weight 30%
       Route to host "productpage2" with weight 20%
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Mar 28 09:54:01 GMT 2024
    - 30.4K bytes
    - Viewed (0)
Back to top