Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 130 for Collins (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

    message DaemonSetUpdateStrategy {
      // Type of daemon set update. Can be "RollingUpdate" or "OnDelete".
      // Default is OnDelete.
      // +optional
      optional string type = 1;
    
      // Rolling update config params. Present only if type = "RollingUpdate".
      // ---
      // TODO: Update this to follow our convention for oneOf, whatever we decide it
      // to be. Same as Deployment `strategy.rollingUpdate`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	RecreateDeploymentStrategyType DeploymentStrategyType = "Recreate"
    
    	// Replace the old RCs by new one using rolling update i.e gradually scale down the old RCs and scale up the new one.
    	RollingUpdateDeploymentStrategyType DeploymentStrategyType = "RollingUpdate"
    )
    
    // Spec to control the desired behavior of rolling update.
    type RollingUpdateDeployment struct {
    	// The maximum number of pods that can be unavailable during the update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/extensions/v1beta1/generated.proto

    message DaemonSetUpdateStrategy {
      // Type of daemon set update. Can be "RollingUpdate" or "OnDelete".
      // Default is OnDelete.
      // +optional
      optional string type = 1;
    
      // Rolling update config params. Present only if type = "RollingUpdate".
      // ---
      // TODO: Update this to follow our convention for oneOf, whatever we decide it
      // to be. Same as Deployment `strategy.rollingUpdate`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go

    	Col    uint16
    	Xpixel uint16
    	Ypixel uint16
    }
    
    type PollFd struct {
    	Fd      int32
    	Events  uint16
    	Revents uint16
    }
    
    const (
    	POLLERR    = 0x4000
    	POLLHUP    = 0x2000
    	POLLIN     = 0x1
    	POLLNVAL   = 0x8000
    	POLLOUT    = 0x2
    	POLLPRI    = 0x4
    	POLLRDBAND = 0x20
    	POLLRDNORM = 0x10
    	POLLWRBAND = 0x40
    	POLLWRNORM = 0x2
    )
    
    type Flock_t struct {
    	Type   int16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. pkg/test/framework/components/istio/configmap.go

    			return nil
    		})
    	}
    
    	// Restore the original value of the MeshConfig when the context completes.
    	t.CleanupStrategy(cleanupStrategy, func() {
    		// Invalidate the member mesh config again, since we're rolling back the changes.
    		ic.mu.Lock()
    		ic.injectConfig = nil
    		ic.mu.Unlock()
    
    		errG := multierror.Group{}
    		mu.RLock()
    		defer mu.RUnlock()
    		for cn, mcYAML := range origCfg {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go

    	Col    uint16
    	Xpixel uint16
    	Ypixel uint16
    }
    
    type PollFd struct {
    	Fd      int32
    	Events  uint16
    	Revents uint16
    }
    
    const (
    	POLLERR    = 0x4000
    	POLLHUP    = 0x2000
    	POLLIN     = 0x1
    	POLLNVAL   = 0x8000
    	POLLOUT    = 0x2
    	POLLPRI    = 0x4
    	POLLRDBAND = 0x20
    	POLLRDNORM = 0x10
    	POLLWRBAND = 0x40
    	POLLWRNORM = 0x2
    )
    
    type Flock_t struct {
    	Type   int16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top