Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 431 for rev (0.02 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/event_test.go

    					ModRevision:    1,
    					CreateRevision: 1,
    					Value:          []byte("value"),
    				},
    			},
    			expectedEvent: &event{
    				key:       "key",
    				value:     []byte("value"),
    				prevValue: nil,
    				rev:       1,
    				isDeleted: false,
    				isCreated: true,
    			},
    			expectedErr: "",
    		},
    		{
    			name: "unsuccessful delete",
    			etcdEvent: &clientv3.Event{
    				Type:   mvccpb.DELETE,
    				PrevKv: nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 13:53:06 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/configmap.go

    		ic.values = myic
    		ic.mu.Unlock()
    	}
    
    	return myic, nil
    }
    
    func (ic *injectConfig) configMapName() string {
    	cmName := "istio-sidecar-injector"
    	if rev := ic.revisions.Default(); rev != "default" && rev != "" {
    		cmName += "-" + rev
    	}
    	return cmName
    }
    
    func (mc *meshConfig) MeshConfig() (*meshconfig.MeshConfig, error) {
    	mc.mu.Lock()
    	mymc := mc.meshConfig
    	mc.mu.Unlock()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. istioctl/pkg/waypoint/waypoint_test.go

    		},
    	}
    }
    
    func makeGatewayWithRevision(name, namespace string, programmed, isWaypoint bool, rev string) *gateway.Gateway {
    	gw := makeGateway(name, namespace, programmed, isWaypoint)
    	if gw.Labels == nil {
    		gw.Labels = make(map[string]string)
    	}
    	gw.Labels[label.IoIstioRev.Name] = rev
    	return gw
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 15:53:09 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. operator/cmd/mesh/uninstall.go

    				" and will not function correctly.\n"
    		} else if rev != "" && err != nil {
    			needConfirmation = true
    			message += fmt.Sprintf("Unable to find any proxies pointing to the %s control plane. "+
    				"This may be because the control plane cannot be connected or there is no %s control plane.\n", rev, rev)
    		}
    		if gwList != "" {
    			needConfirmation = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. samples/ambient-argo/application/details-waypoint.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      labels:
        istio.io/rev: stable
      name: bookinfo-details
    spec:
      gatewayClassName: istio-waypoint
      listeners:
      - name: mesh
        port: 15008
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 234 bytes
    - Viewed (0)
  6. tests/integration/pilot/revisions/revision_tag_test.go

    				{
    					"prod tag pointed to stable",
    					"prod",
    					"stable",
    					"istio.io/rev=prod",
    					"",
    				},
    				{
    					"prod tag pointed to canary",
    					"prod",
    					"canary",
    					"istio.io/rev=prod",
    					"",
    				},
    				{
    					"tag pointed to non existent revision",
    					"prod",
    					"fake-revision",
    					"istio.io/rev=prod",
    					"cannot modify tag",
    				},
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/install_package_path.golden.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      labels:
        app: istiod
        install.operator.istio.io/owning-resource: unknown
        istio: pilot
        istio.io/rev: default
        operator.istio.io/component: Pilot
        release: istio
      name: istiod
      namespace: istio-system
    spec:
      selector:
        matchLabels:
          istio: pilot
      strategy:
        rollingUpdate:
          maxSurge: 100%
          maxUnavailable: 25%
      template:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/upgrade/1.9.5-install.yaml.tar

    istiod-1-9-5 namespace: istio-system labels: app: istiod istio.io/rev: 1-9-5 install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Pilot" release: istio istio: pilot spec: minAvailable: 1 selector: matchLabels: app: istiod istio.io/rev: 1-9-5 --- apiVersion: autoscaling/v2beta1 kind: HorizontalPodAutosca metadata: name: istiod-1-9-5 namespace: istio-system labels: app: istiod release: istio istio.io/rev: 1-9-5 install.operator.istio.io/owning-resource: unknown operator...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  9. istioctl/pkg/injector/injector-list_test.go

    	cases := []struct {
    		name             string
    		pod              *corev1.Pod
    		expectedRevision string
    	}{
    		{
    			name:             "no rev",
    			pod:              &corev1.Pod{},
    			expectedRevision: "",
    		},
    		{
    			name: "has rev annotation",
    			pod: &corev1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Annotations: map[string]string{
    						annotation.SidecarStatus.Name: `{"revision": "test-anno"}`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 04:33:57 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. releasenotes/notes/add-default-revision-webhook.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
      - |
        **Updated** non-revisioned installs to target the label `istio.io/rev=default` for injection in addition to the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 12 19:16:25 UTC 2021
    - 298 bytes
    - Viewed (0)
Back to top