Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 231 for Reconciled (0.16 sec)

  1. cluster/addons/metadata-proxy/gce/metadata-proxy.yaml

        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    ---
    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      name: metadata-proxy-v0.1
      namespace: kube-system
      labels:
        k8s-app: metadata-proxy
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
        version: v0.1
    spec:
      selector:
        matchLabels:
          k8s-app: metadata-proxy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/doc.go

    // over regular interface{}-based Informers/Listers
    //
    // Controller[T] provides a reusable way to reconcile objects out of an informer
    // using the tried and true controller design pattern found all over k8s
    // codebase based upon syncFunc/reconcile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. cluster/addons/dns/kube-dns/kube-dns.yaml.in

      namespace: kube-system
      labels:
        k8s-app: kube-dns
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      # replicas: not specified here:
      # 1. In order to make Addon Manager do not reconcile this replicas parameter.
      # 2. Default is 1.
      # 3. Will be tuned in real time if DNS horizontal auto-scaling is turned on.
      strategy:
        rollingUpdate:
          maxSurge: 10%
          maxUnavailable: 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. cluster/addons/metrics-server/metrics-server-deployment.yaml

    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: metrics-server
      namespace: kube-system
      labels:
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    ---
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: metrics-server-config
      namespace: kube-system
      labels:
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: EnsureExists
    data:
      NannyConfiguration: |-
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. hack/tools/go.work

    // This is a hack, but it prevents go from climbing further and trying to
    // reconcile the various deps across the "real" modules and this one.
    
    go 1.22.0
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 162 bytes
    - Viewed (0)
  6. cluster/addons/rbac/cluster-loadbalancing/glbc/roles.yaml

      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    rules:
    - apiGroups: [""]
      resources: ["configmaps"]
      verbs: ["get", "list", "watch", "update", "create", "patch"]
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      name: system:controller:glbc
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    rules:
    - apiGroups: [""]
      resources: ["secrets"]
      verbs: ["get"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 13:39:59 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  7. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	taintEvictionController = "taint-eviction-controller"
    )
    
    // labelReconcileInfo lists Node labels to reconcile, and how to reconcile them.
    // primaryKey and secondaryKey are keys of labels to reconcile.
    //   - If both keys exist, but their values don't match. Use the value from the
    //     primaryKey as the source of truth to reconcile.
    //   - If ensureSecondaryExists is true, and the secondaryKey does not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  8. releasenotes/notes/44152.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 29394
    releaseNotes:
      - |
        **Removed** operator skip reconcile for iop resources with names starting with `installed-state`. It now relies solely on the annotation `install.istio.io/ignoreReconcile`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 31 14:28:49 UTC 2023
    - 334 bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/command_headers_test.go

    			expectedHeaders: map[string]string{
    				kubectlCommandHeader: "kubectl apply",
    			},
    		},
    		"Kubectl auth reconcile example": {
    			commands: []*cobra.Command{kubectlCmd, authCmd, reconcileCmd},
    			expectedHeaders: map[string]string{
    				kubectlCommandHeader: "kubectl auth reconcile",
    			},
    		},
    		"Long kubectl create secret generic example": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 20:34:02 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  10. pkg/webhooks/validation/controller/controller.go

    	return c
    }
    
    func (c *Controller) Reconcile(key types.NamespacedName) error {
    	name := key.Name
    	whc := c.webhooks.Get(name, "")
    	scope := scope.WithLabels("webhook", name)
    	// Stop early if webhook is not present, rather than attempting (and failing) to reconcile permanently
    	// If the webhook is later added a new reconciliation request will trigger it to update
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top