Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 449 for sidecars (3.6 sec)

  1. pkg/config/validation/agent/validation.go

    	}
    
    	if !isGateway {
    		// namespace can be * or . or ~ or a valid DNS label in sidecars
    		if parts[0] != "*" && parts[0] != "." && parts[0] != "~" {
    			if !labels.IsDNS1123Label(parts[0]) {
    				errs = AppendErrors(errs, fmt.Errorf("invalid namespace value %q in sidecar", parts[0]))
    			}
    		}
    	} else {
    		// namespace can be * or . or a valid DNS label in gateways
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  2. pilot/pkg/model/gateway.go

    	if len(duplicates) == 0 {
    		for _, h := range hosts {
    			knownHosts[h] = bind
    		}
    	}
    	return duplicates
    }
    
    // gatewayRDSRouteName generates the RDS route config name for gateway's servers.
    // Unlike sidecars where the RDS route name is the listener port number, gateways have a different
    // structure for RDS.
    // HTTP servers have route name set to http.<portNumber>.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/httproute.go

    // foo.ns2.svc.cluster.local). In this case, if the proxy is in ns2.svc.cluster.local, then while
    // generating alt virtual hosts for service foo.ns1 for the sidecars in ns2 namespace, we should generate
    // foo.ns1, foo.ns1.svc, foo.ns1.svc.cluster.local and should not generate a virtual host called "foo" for
    // foo.ns1 service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. operator/cmd/mesh/manifest-generate_test.go

    	objEnabled := klabels.Set{"sidecar.istio.io/inject": "true"}
    	objDisable := klabels.Set{"sidecar.istio.io/inject": "false"}
    	objEnabledAndRev := klabels.Set{"sidecar.istio.io/inject": "true", "istio.io/rev": "canary"}
    	objDisableAndRev := klabels.Set{"sidecar.istio.io/inject": "false", "istio.io/rev": "canary"}
    
    	defaultWebhook := getWebhooks(t, "", "istio-sidecar-injector")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

        app: istio-pilot
        chart: istio
        heritage: Tiller
        release: istio
      name: sidecars.networking.istio.io
    spec:
      group: networking.istio.io
      names:
        categories:
        - istio-io
        - networking-istio-io
        kind: Sidecar
        listKind: SidecarList
        plural: sidecars
        singular: sidecar
      scope: Namespaced
      versions:
      - name: v1
        schema:
          openAPIV3Schema:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  6. manifests/charts/base/crds/crd-all.gen.yaml

        app: istio-pilot
        chart: istio
        heritage: Tiller
        release: istio
      name: sidecars.networking.istio.io
    spec:
      group: networking.istio.io
      names:
        categories:
        - istio-io
        - networking-istio-io
        kind: Sidecar
        listKind: SidecarList
        plural: sidecars
        singular: sidecar
      scope: Namespaced
      versions:
      - name: v1
        schema:
          openAPIV3Schema:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route.go

    // once for all sidecars in the cluster to compute all RDS for inside the mesh and arrange
    // it by listener port. However to properly use such an optimization, we need to have an
    // eventing subsystem to invalidate the computed routes if any service changes/virtual Services change.
    type VirtualHostWrapper struct {
    	// Port is the listener port for outbound sidecar (e.g. service port)
    	Port int
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    				errs = AppendValidation(errs, fmt.Errorf("sidecar: ingress may not be null"))
    				continue
    			}
    			if i.Port == nil {
    				errs = AppendValidation(errs, fmt.Errorf("sidecar: port is required for ingress listeners"))
    				continue
    			}
    
    			// nolint: staticcheck
    			if i.Port.TargetPort > 0 {
    				errs = AppendValidation(errs, fmt.Errorf("targetPort has no impact on Sidecars"))
    			}
    
    			bind := i.GetBind()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-configmap.yaml

              {{ if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) -}}
              requests:
                {{ if (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) -}}
                cpu: "{{ index .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU` }}"
                {{ end}}
                {{ if (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) -}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  10. pkg/test/datasets/validation/dataset/networking-v1-Sidecar.yaml

    apiVersion: networking.istio.io/v1
    kind: Sidecar
    metadata:
      name: valid-sidecar-config
    spec:
      egress:
      - hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 01 14:30:05 UTC 2024
    - 129 bytes
    - Viewed (0)
Back to top