Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,003 for daemons (0.32 sec)

  1. manifests/charts/ztunnel/templates/daemonset.yaml

    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      name: ztunnel
      namespace: {{ .Release.Namespace }}
      labels:
        {{- .Values.labels | toYaml | nindent 4}}
      annotations:
        {{- .Values.annotations | toYaml | nindent 4 }}
    spec:
      updateStrategy:
        rollingUpdate:
          maxSurge: 1
          maxUnavailable: 0
      selector:
        matchLabels:
          app: ztunnel
      template:
        metadata:
          labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. cluster/log-dump/logexporter-daemonset.yaml

    # Creates everything within 'logexporter' namespace.
    #
    # Note: Since daemonsets have "AlwaysRestart" policy for pods, we provide a long
    # sleep-duration (24 hr) to the logexporter pods so they don't finish the work and
    # get restarted while some pods are still running. So it is your duty to detect
    # the work has been done (or use some timeout) and delete the daemonset yourself.
    
    apiVersion: v1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 25 13:45:49 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  3. hack/testdata/rollingupdate-daemonset.yaml

    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      name: bind
      labels:
        service: bind
    spec:
      selector:
        matchLabels:
          service: bind
      updateStrategy:
        type: RollingUpdate
        rollingUpdate:
          maxUnavailable: 10%
      template:
        metadata:
          labels:
            service: bind
        spec:
          affinity:
            podAntiAffinity:
              requiredDuringSchedulingIgnoredDuringExecution:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 735 bytes
    - Viewed (0)
  4. manifests/charts/istio-cni/templates/daemonset.yaml

    # each master and worker node in a Kubernetes cluster.
    {{- $defaultBinDir :=
        (.Capabilities.KubeVersion.GitVersion | contains "-gke") | ternary
          "/home/kubernetes/bin"
          "/opt/cni/bin"
    }}
    kind: DaemonSet
    apiVersion: apps/v1
    metadata:
      name: {{ template "name" . }}-node
      namespace: {{ .Release.Namespace }}
      labels:
        k8s-app: {{ template "name" . }}-node
        release: {{ .Release.Name }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. releasenotes/notes/ingressgateway-support-daemonset.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 37610
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 08 13:48:57 UTC 2022
    - 156 bytes
    - Viewed (0)
  6. pkg/controller/daemon/daemon_controller.go

    //     running on that node.
    //   - shouldContinueRunning:
    //     Returns true when a daemonset should continue running on a node if a daemonset pod is already
    //     running on that node.
    func NodeShouldRunDaemonPod(node *v1.Node, ds *apps.DaemonSet) (bool, bool) {
    	pod := NewPod(ds, node.Name)
    
    	// If the daemon set specifies a node name, check that it matches with node.Name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  7. hack/testdata/rollingupdate-daemonset-rv2.yaml

    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      name: bind
      labels:
        service: bind
    spec:
      selector:
        matchLabels:
          service: bind
      updateStrategy:
        type: RollingUpdate
        rollingUpdate:
          maxUnavailable: 10%
      template:
        metadata:
          labels:
            service: bind
        spec:
          affinity:
            podAntiAffinity:
              requiredDuringSchedulingIgnoredDuringExecution:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 802 bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.7.md

    #### DaemonSet
    * [beta] DaemonSet supports history and rollback. See [Performing a Rollback on a DaemonSet](https://kubernetes.io/docs/tasks/manage-daemon/rollback-daemon-set/).
    
    #### Deployments
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  9. pkg/registry/apps/daemonset/strategy.go

    }
    
    // PrepareForCreate clears the status of a daemon set before creation.
    func (daemonSetStrategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
    	daemonSet := obj.(*apps.DaemonSet)
    	daemonSet.Status = apps.DaemonSetStatus{}
    
    	daemonSet.Generation = 1
    	if daemonSet.Spec.TemplateGeneration < 1 {
    		daemonSet.Spec.TemplateGeneration = 1
    	}
    
    	pod.DropDisabledTemplateFields(&daemonSet.Spec.Template, nil)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/daemonset.yaml.injected

    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      creationTimestamp: null
      name: hello
    spec:
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      template:
        metadata:
          annotations:
            istio.io/rev: default
            kubectl.kubernetes.io/default-container: hello
            kubectl.kubernetes.io/default-logs-container: hello
            prometheus.io/path: /stats/prometheus
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top