Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 573 for nosidecar (0.16 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. 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)
  7. 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)
  8. 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)
  9. pkg/kube/inject/testdata/inject/native-sidecar.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: hello
    spec:
      initContainers:
        - name: other-sidecar
          restartPolicy: Always
          readinessProbe:
            httpGet:
              port: 3333
          image: "fake.docker.io/google-samples/hello-go-gke:1.0"
          ports:
            - name: http
              containerPort: 80
      containers:
        - name: hello
          image: "fake.docker.io/google-samples/hello-go-gke:1.0"
          ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 03:10:51 UTC 2023
    - 468 bytes
    - Viewed (0)
  10. releasenotes/notes/sidecar-api-connectionpool.yaml

      - '[reference] https://istio.io/latest/docs/reference/config/networking/sidecar/#Sidecar-inbound_connection_pool'
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 17:19:29 UTC 2023
    - 612 bytes
    - Viewed (0)
Back to top