Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 101 for Reconciled (0.14 sec)

  1. pkg/registry/core/service/ipallocator/controller/repairip_test.go

    			actions:     [][]string{{"create", "ipaddresses"}},
    			events:      []string{"Warning ClusterIPNotAllocated Cluster IP [IPv4]: 192.168.1.1 is not allocated; repairing"},
    		},
    		{
    			name: "reconcile IPAddress single stack wrong reference",
    			svcs: []*v1.Service{newService("test-svc", []string{"10.0.1.1"})},
    			ipAddresses: []*networkingv1alpha1.IPAddress{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  2. cmd/kube-apiserver/app/options/options_test.go

    		"--egress-selector-config-file=/var/run/kubernetes/egress-selector/connectivity.yaml",
    		"--enable-aggregator-routing=true",
    		"--enable-priority-and-fairness=false",
    		"--enable-logs-handler=false",
    		"--endpoint-reconciler-type=" + string(reconcilers.LeaseEndpointReconcilerType),
    		"--etcd-keyfile=/var/run/kubernetes/etcd.key",
    		"--etcd-certfile=/var/run/kubernetes/etcdce.crt",
    		"--etcd-cafile=/var/run/kubernetes/etcdca.crt",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. pkg/registry/flowcontrol/rest/storage_flowcontrol.go

    		}
    		return nil
    	}()
    	if err != nil {
    		return err
    	}
    
    	// we have successfully initialized the bootstrap configuration, now we
    	// spin up a goroutine which reconciles the bootstrap configuration periodically.
    	go func() {
    		ctx := wait.ContextForChannel(hookContext.StopCh)
    		wait.PollImmediateUntil(
    			time.Minute,
    			func() (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  4. istioctl/pkg/tag/generate_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			Name: "istio-sidecar-injector-revision",
    			Labels: map[string]string{
    				label.IoIstioRev.Name: "revision",
    				operatorManaged:       "Reconcile",
    			},
    		},
    		Webhooks: []admitv1.MutatingWebhook{
    			{
    				Name: fmt.Sprintf("namespace.%s", istioInjectionWebhookSuffix),
    				ClientConfig: admitv1.WebhookClientConfig{
    					Service: &admitv1.ServiceReference{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. pkg/kubelet/lifecycle/predicate.go

    			Message: message,
    		}
    	}
    	return PodAdmitResult{
    		Admit: true,
    	}
    }
    
    // rejectPodAdmissionBasedOnOSSelector rejects pod if it's nodeSelector doesn't match
    // We expect the kubelet status reconcile which happens every 10sec to update the node labels if there is a mismatch.
    func rejectPodAdmissionBasedOnOSSelector(pod *v1.Pod, node *v1.Node) bool {
    	labels := node.Labels
    	osName, osLabelExists := labels[v1.LabelOSStable]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 00:47:50 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/policy/v1/types.go

    	// that signal whether any of the pods covered by the PDB can be disrupted.
    	DisruptionAllowedCondition = "DisruptionAllowed"
    
    	// SyncFailedReason is set on the DisruptionAllowed condition if reconcile
    	// of the PDB failed and therefore disruption of pods are not allowed.
    	SyncFailedReason = "SyncFailed"
    	// SufficientPodsReason is set on the DisruptionAllowed condition if there are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. operator/cmd/mesh/uninstall.go

    		if err != nil {
    			return err
    		}
    		iop.Name = savedIOPName(iop)
    	}
    
    	h, err = helmreconciler.NewHelmReconciler(client, kubeClient, iop, opts)
    	if err != nil {
    		return fmt.Errorf("failed to create reconciler: %v", err)
    	}
    	objectsList, err := h.GetPrunedResources(uiArgs.revision, uiArgs.purge, "")
    	if err != nil {
    		return err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/egressselector/config_test.go

    			expectedError: nil,
    		},
    		{
    			name:       "wrong_type",
    			createFile: true,
    			contents: `
    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
        k8s-app: konnectivity-agent
      namespace: kube-system
      name: proxy-agent
    spec:
      selector:
        matchLabels:
          k8s-app: konnectivity-agent
      updateStrategy:
        type: RollingUpdate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/cache/actual_state_of_world.go

    	// based on the current actual state of the world. This function is currently used by
    	// reconciler to verify whether the volume is still attached to the node.
    	GetAttachedVolumesPerNode() map[types.NodeName][]operationexecutor.AttachedVolume
    
    	// GetNodesForAttachedVolume returns the nodes on which the volume is attached.
    	// This function is used by reconciler for multi-attach check.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller_test.go

    	"k8s.io/kubernetes/pkg/controller"
    )
    
    // Most of the tests related to EndpointSlice allocation can be found in reconciler_test.go
    // Tests here primarily focus on unique controller functionality before the reconciler begins
    
    var alwaysReady = func() bool { return true }
    
    type endpointSliceMirroringController struct {
    	*Controller
    	endpointsStore     cache.Store
    	endpointSliceStore cache.Store
    	serviceStore       cache.Store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top