Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 237 for Rolling (0.15 sec)

  1. pkg/kube/inject/testdata/inject/deploymentconfig-multi.yaml.injected

      kind: DeploymentConfig
      metadata:
        creationTimestamp: null
        name: hello
      spec:
        replicas: 7
        revisionHistoryLimit: 2
        strategy:
          resources: {}
          type: Rolling
        template:
          metadata:
            annotations:
              istio.io/rev: default
              kubectl.kubernetes.io/default-container: hello
              kubectl.kubernetes.io/default-logs-container: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/deploymentconfig-with-canonical-service-label.yaml.injected

    apiVersion: v1
    kind: DeploymentConfig
    metadata:
      creationTimestamp: null
      name: hello
    spec:
      replicas: 7
      revisionHistoryLimit: 2
      strategy:
        resources: {}
        type: Rolling
      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.9K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/deploymentconfig.yaml.injected

    apiVersion: apps.openshift.io/v1
    kind: DeploymentConfig
    metadata:
      creationTimestamp: null
      name: hello
    spec:
      replicas: 7
      revisionHistoryLimit: 2
      strategy:
        resources: {}
        type: Rolling
      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.9K bytes
    - Viewed (0)
  4. tests/integration/pilot/revisioned_upgrade_test.go

    		Interval: callInterval,
    	}).Start()
    
    	if err := enableDefaultInjection(revisionedNamespace); err != nil {
    		t.Fatalf("could not relabel namespace to enable default injection: %v", err)
    	}
    
    	log.Infof("rolling out echo workloads for service %q", revisionedInstance.Config().Service)
    	if err := revisionedInstance.Restart(); err != nil {
    		t.Fatalf("revisioned instance rollout failed with: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. manifests/charts/istio-cni/values.yaml

        resources:
          requests:
            cpu: 100m
            memory: 100Mi
    
        resourceQuotas:
          enabled: false
          pods: 5000
    
        # The number of pods that can be unavailable during rolling update (see
        # `updateStrategy.rollingUpdate.maxUnavailable` here:
        # https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/daemon-set-v1/#DaemonSetSpec).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. manifests/charts/istio-cni/templates/daemonset.yaml

              operator: Exists
            - effect: NoExecute
              operator: Exists
          priorityClassName: system-node-critical
          serviceAccountName: {{ template "name" . }}
          # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a "force
          # deletion": https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods.
          terminationGracePeriodSeconds: 5
          containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/tooling-api-provider/src/main/resources/META-INF/services/org.gradle.tooling.internal.protocol.ConnectionVersion4

    org.gradle.tooling.internal.provider.DefaultConnection...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 54 bytes
    - Viewed (0)
  8. pkg/util/filesystem/watcher.go

    // Multiple observed events may collapse to a single invocation of eventHandler().
    //
    // eventHandler() is invoked immediately after successful initialization of the filesystem watch,
    // in case the path changed concurrent with calling WatchUntil().
    func WatchUntil(ctx context.Context, pollInterval time.Duration, path string, eventHandler func(), errorHandler func(err error)) {
    	if pollInterval <= 0 {
    		panic(fmt.Errorf("pollInterval must be > 0"))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. src/os/fifo_test.go

    	// Per https://pubs.opengroup.org/onlinepubs/9699919799/functions/open.html#tag_16_357_03:
    	//
    	// - “If O_NONBLOCK is clear, an open() for reading-only shall block the
    	//   calling thread until a thread opens the file for writing. An open() for
    	//   writing-only shall block the calling thread until a thread opens the file
    	//   for reading.”
    	//
    	// In order to unblock both open calls, we open the two ends of the FIFO
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:47:23 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/dra/plugin/client.go

    	logger.V(4).Info(log("calling NodePrepareResources rpc"), "request", req)
    
    	conn, err := p.getOrCreateGRPCConn()
    	if err != nil {
    		return nil, err
    	}
    
    	ctx, cancel := context.WithTimeout(ctx, p.clientTimeout)
    	defer cancel()
    
    	nodeClient := drapb.NewNodeClient(conn)
    	response, err := nodeClient.NodePrepareResources(ctx, req)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top