Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 665 for nosidecar (0.13 sec)

  1. pkg/test/framework/components/echo/kube/testdata/two-workloads-one-nosidecar.yaml

              failureThreshold: 10
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: foo-nosidecar
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: foo
          version: nosidecar
      template:
        metadata:
          labels:
            app: foo
            version: nosidecar
            test.istio.io/class: naked
          annotations:
            prometheus.io/scrape: "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context_test.go

    			sidecar:  "default/global",
    			describe: "no match local sidecar",
    		},
    		{
    			proxy:    &Proxy{Type: SidecarProxy, ConfigNamespace: "nosidecar"},
    			labels:   labels.Instance{"app": "bar"},
    			sidecar:  "nosidecar/global",
    			describe: "no sidecar",
    		},
    		{
    			proxy:    &Proxy{Type: Router, ConfigNamespace: "istio-system"},
    			labels:   labels.Instance{"app": "istio-gateway"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/sidecar.go

    )
    
    var _ echo.Sidecar = &sidecar{}
    
    type sidecar struct {
    	podNamespace string
    	podName      string
    	cluster      cluster.Cluster
    }
    
    func newSidecar(pod corev1.Pod, cluster cluster.Cluster) *sidecar {
    	sidecar := &sidecar{
    		podNamespace: pod.Namespace,
    		podName:      pod.Name,
    		cluster:      cluster,
    	}
    
    	return sidecar
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 03:49:49 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/sidecar.go

    package echo
    
    import (
    	admin "github.com/envoyproxy/go-control-plane/envoy/admin/v3"
    
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    // Sidecar provides an interface to execute queries against a single Envoy sidecar.
    type Sidecar interface {
    	// Info about the Envoy instance.
    	Info() (*admin.ServerInfo, error)
    	InfoOrFail(t test.Failer) *admin.ServerInfo
    
    	// Config of the Envoy instance.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 03:49:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar.go

    type SidecarScope struct {
    	Name string
    	// This is the namespace where the sidecar takes effect,
    	// maybe different from the ns where sidecar resides if sidecar is in root ns.
    	Namespace string
    	// The cr itself. Can be nil if we are constructing the default
    	// sidecar scope
    	Sidecar *networking.Sidecar
    
    	// Version this sidecar was computed for
    	Version string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  6. tools/packaging/common/sidecar.env

    # Environment variables used to configure istio startup
    
    # Comma separated list of CIDRs used for services. If set, iptables will be run to allow istio
    # sidecar to intercept outbound calls to configured addresses. If not set, outbound istio sidecar
    # will not be used via iptables.
    # ISTIO_SERVICE_CIDR=
    
    # Name of the service exposed by the machine.
    # ISTIO_SERVICE=myservice
    
    # The mode used to redirect inbound connections to Envoy. This setting
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 18:02:42 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/sidecar-selector.yaml

    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: maps-correctly-no-conflicts
      namespace: default
    spec:
      workloadSelector:
        labels:
          app: productpage # Maps to an existing workload without conflicts in the same ns, no error
      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: maps-to-nonexistent
      namespace: default
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  8. samples/security/psp/sidecar-psp.yaml

    rules:
      - apiGroups:
          - extensions
        resources:
          - podsecuritypolicies
        resourceNames:
          - istio-sidecar
        verbs:
          - use
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: istio-sidecar-psp
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: istio-sidecar-psp
    subjects:
      - apiGroup: rbac.authorization.k8s.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 27 17:55:37 UTC 2023
    - 881 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/config/analysis/analyzers/testdata/sidecar-default-selector.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: no-selector # Since this is the only Sidecar in the namespace without a workload selector, no conflict
      namespace: ns1
    spec:
      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: has-selector
      namespace: ns1
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 23 13:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top