Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 181 for Reconciled (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler.go

    	storageversionManager storageversion.Manager
    
    	// proxy transport
    	proxyTransport http.RoundTripper
    
    	// identity for this server
    	serverId string
    
    	// reconciler that is used to fetch host port of peer apiserver when proxying request to a peer
    	reconciler reconcilers.PeerEndpointLeaseReconciler
    
    	serializer runtime.NegotiatedSerializer
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. cluster/gce/addons/cloud-pvl-admission/mutating-webhook-configuration.yaml

    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
      name: "cloud-pvl-admission.k8s.io"
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
        k8s-app: cloud-pvl-admission
    webhooks:
    - name: "cloud-pvl-admission.k8s.io"
      rules:
      - apiGroups:   [""]
        apiVersions: ["v1"]
        operations:  ["CREATE"]
        resources:   ["persistentvolumes"]
        scope:       "*"
      clientConfig:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 02 23:15:32 UTC 2023
    - 699 bytes
    - Viewed (0)
  3. cluster/addons/volumesnapshots/volume-snapshot-controller/volume-snapshot-controller-deployment.yaml

    ---
    kind: StatefulSet
    apiVersion: apps/v1
    metadata:
      name: volume-snapshot-controller
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      serviceName: "volume-snapshot-controller"
      replicas: 1
      selector:
        matchLabels:
          app: volume-snapshot-controller
      template:
        metadata:
          labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:47:15 UTC 2024
    - 758 bytes
    - Viewed (0)
  4. cmd/kube-apiserver/app/options/options.go

    	fs.BoolVar(&s.AllowPrivileged, "allow-privileged", s.AllowPrivileged,
    		"If true, allow privileged containers. [default=false]")
    
    	fs.StringVar(&s.EndpointReconcilerType, "endpoint-reconciler-type", s.EndpointReconcilerType,
    		"Use an endpoint reconciler ("+strings.Join(reconcilers.AllTypes.Names(), ", ")+") master-count is deprecated, and will be removed in a future version.")
    
    	// See #14282 for details on how to test/try this option out.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/controller.go

    			}),
    		)
    	} else {
    		c.statusController.Store(nil)
    	}
    }
    
    // Reconcile takes in a current snapshot of the gateway-api configs, and regenerates our internal state.
    // Any status updates required will be enqueued as well.
    func (c *Controller) Reconcile(ps *model.PushContext) error {
    	t0 := time.Now()
    	defer func() {
    		log.Debugf("reconcile complete in %v", time.Since(t0))
    	}()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. cluster/addons/fluentd-gcp/scaler-deployment.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: fluentd-gcp-scaler
      namespace: kube-system
      labels:
        k8s-app: fluentd-gcp-scaler
        version: v0.5.1
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      selector:
        matchLabels:
          k8s-app: fluentd-gcp-scaler
      template:
        metadata:
          labels:
            k8s-app: fluentd-gcp-scaler
        spec:
          serviceAccountName: fluentd-gcp-scaler
          containers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 07 17:58:57 UTC 2023
    - 972 bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/common.go

    	// operatorLabelStr indicates Istio operator is managing this resource.
    	operatorLabelStr = name.OperatorAPINamespace + "/managed"
    	// operatorReconcileStr indicates that the operator will reconcile the resource.
    	operatorReconcileStr = "Reconcile"
    	// IstioComponentLabelStr indicates which Istio component a resource belongs to.
    	IstioComponentLabelStr = name.OperatorAPINamespace + "/component"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. cluster/addons/kube-network-policies/kube-network-policies.yaml

    kind: DaemonSet
    metadata:
      name: kube-network-policies
      namespace: kube-system
      labels:
        tier: node
        app: kube-network-policies
        k8s-app: kube-network-policies
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      selector:
        matchLabels:
          app: kube-network-policies
      template:
        metadata:
          labels:
            tier: node
            app: kube-network-policies
            k8s-app: kube-network-policies
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:27:59 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. pkg/controlplane/reconcilers/lease.go

    	epAdapter             EndpointsAdapter
    	masterLeases          Leases
    	stopReconcilingCalled atomic.Bool
    	reconcilingLock       sync.Mutex
    }
    
    // NewLeaseEndpointReconciler creates a new LeaseEndpoint reconciler
    func NewLeaseEndpointReconciler(epAdapter EndpointsAdapter, masterLeases Leases) EndpointReconciler {
    	return &leaseEndpointReconciler{
    		epAdapter:    epAdapter,
    		masterLeases: masterLeases,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. cluster/gce/addons/konnectivity-agent/konnectivity-agent-ds.yaml

    ---
    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
        k8s-app: konnectivity-agent
      namespace: kube-system
      name: konnectivity-agent
    spec:
      selector:
        matchLabels:
          k8s-app: konnectivity-agent
      updateStrategy:
        type: RollingUpdate
      template:
        metadata:
          labels:
            k8s-app: konnectivity-agent
        spec:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top