Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 81 for Reconciled (0.16 sec)

  1. 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)
  2. cluster/addons/cloud-controller-manager/pvl-controller-role.yaml

    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
      name: system:controller:pvl-controller
    rules:
    - apiGroups:
      - ""
      resources:
      - events
      verbs:
      - create
      - patch
      - update
    - apiGroups:
      - ""
      resources:
      - persistentvolumeclaims
      - persistentvolumes
      verbs:
      - list
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 17:38:23 UTC 2022
    - 369 bytes
    - Viewed (0)
  3. operator/cmd/mesh/operator-remove.go

    			l.LogAndFatal(err)
    		}
    	}
    	reconciler, err := helmreconciler.NewHelmReconciler(client, kubeClient, iop, &helmreconciler.Options{DryRun: args.DryRun, Log: l})
    	if err != nil {
    		l.LogAndFatal(err)
    	}
    	rs, err := reconciler.GetPrunedResources(orArgs.revision, false, string(name.IstioOperatorComponentName))
    	if err != nil {
    		l.LogAndFatal(err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. cluster/addons/rbac/kubelet-api-auth/kubelet-api-admin-role.yaml

    # This role allows full access to the kubelet API
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      name: kubelet-api-admin
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    rules:
    - apiGroups:
      - ""
      resources:
      - nodes/proxy
      - nodes/log
      - nodes/stats
      - nodes/metrics
      verbs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 21 18:57:07 UTC 2022
    - 323 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/kubelet/types/pod_update.go

    	DELETE
    	// REMOVE signifies pods that have been removed from this source.
    	REMOVE
    	// UPDATE signifies pods have been updated in this source.
    	UPDATE
    	// RECONCILE signifies pods that have unexpected status in this source,
    	// kubelet should reconcile status with this source.
    	RECONCILE
    )
    
    // These constants identify the sources of pods.
    const (
    	// Filesource idenitified updates from a file.
    	FileSource = "file"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. 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)
Back to top