Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for ready (0.14 sec)

  1. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      optional DaemonSetUpdateStrategy updateStrategy = 3;
    
      // The minimum number of seconds for which a newly created DaemonSet pod should
      // be ready without any of its container crashing, for it to be considered
      // available. Defaults to 0 (pod will be considered available as soon as it
      // is ready).
      // +optional
      optional int32 minReadySeconds = 4;
    
      // The number of old history to retain to allow rollback.
    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)
  2. istioctl/pkg/describe/describe_test.go

    							},
    						},
    					},
    					Status: corev1.PodStatus{
    						Phase: corev1.PodRunning,
    						ContainerStatuses: []corev1.ContainerStatus{
    							{
    								Name:  "istio-proxy",
    								Ready: true,
    							},
    						},
    					},
    				},
    				&corev1.Pod{
    					ObjectMeta: metav1.ObjectMeta{
    						Name:      "ingress",
    						Namespace: "default",
    						Labels: map[string]string{
    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)
  3. manifests/charts/istiod-remote/templates/validatingwebhookconfiguration.yaml

        # Disable webhook controller in Pilot to stop patching it
        failurePolicy: Fail
        {{- else }}
        # Fail open until the validation webhook is ready. The webhook controller
        # will update this to `Fail` and patch in the `caBundle` when the webhook
        # endpoint is ready.
        failurePolicy: Ignore
        {{- end }}
        sideEffects: None
        admissionReviewVersions: ["v1beta1", "v1"]
        objectSelector:
          matchExpressions:
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Mar 07 06:39:27 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/envoy/configdump/testdata/routes/empty-gateway/output.txt

    NAME     VHOST NAME     DOMAINS     MATCH                  VIRTUAL SERVICE
             backend        *           /healthz/ready*        
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Nov 29 12:37:14 GMT 2023
    - 190 bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/server.go

    	pods := s.handlers.GetAmbientPods()
    	err := s.dataplane.ConstructInitialSnapshot(pods)
    	if err != nil {
    		log.Warnf("failed to construct initial snapshot: %v", err)
    	}
    
    	log.Info("CNI ambient server marking ready")
    	s.Ready()
    	s.dataplane.Start(s.ctx)
    	s.handlers.Start()
    }
    
    func (s *Server) Stop() {
    	log.Info("CNI ambient server terminating, cleaning up node net rules")
    
    	s.cniServerStopFunc()
    	s.dataplane.Stop()
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 01:42:30 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

    message EndpointConditions {
      // ready indicates that this endpoint is prepared to receive traffic,
      // according to whatever system is managing the endpoint. A nil value
      // indicates an unknown state. In most cases consumers should interpret this
      // unknown state as ready. For compatibility reasons, ready should never be
      // "true" for terminating endpoints.
      // +optional
      optional bool ready = 1;
    
    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)
  7. manifests/charts/istiod-remote/templates/default.yaml

        # Disable webhook controller in Pilot to stop patching it
        failurePolicy: Fail
        {{- else }}
        # Fail open until the validation webhook is ready. The webhook controller
        # will update this to `Fail` and patch in the `caBundle` when the webhook
        # endpoint is ready.
        failurePolicy: Ignore
        {{- end }}
        sideEffects: None
        admissionReviewVersions: ["v1beta1", "v1"]
    {{- end }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Mar 07 06:39:27 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      optional DeploymentStrategy strategy = 4;
    
      // minReadySeconds is the minimum number of seconds for which a newly created pod should be ready
      // without any of its container crashing, for it to be considered available.
      // Defaults to 0 (pod will be considered available as soon as it is ready)
      // +optional
      optional int32 minReadySeconds = 5;
    
      // revisionHistoryLimit is the number of old ReplicaSets to retain to allow rollback.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24K bytes
    - Viewed (0)
  9. cni/pkg/install/monitoring.go

    	cniInstalls = monitoring.NewSum(
    		"istio_cni_installs_total",
    		"Total number of CNI plugins installed by the Istio CNI installer",
    	)
    
    	installReady = monitoring.NewGauge(
    		"istio_cni_install_ready",
    		"Whether the CNI plugin installation is ready or not",
    	)
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Jul 17 20:25:52 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  10. istioctl/pkg/util/constants.go

    	DefaultRevisionName = "default"
    )
    
    const (
    	// ExperimentalMsg indicate active development and not for production use warning.
    	ExperimentalMsg = `THIS COMMAND IS UNDER ACTIVE DEVELOPMENT AND NOT READY FOR PRODUCTION USE.`
    )
    
    const (
    	JSONFormat  = "json"
    	TableFormat = "table"
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 1.3K bytes
    - Viewed (0)
Back to top