Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for sidecars (0.28 sec)

  1. pilot/pkg/networking/core/sidecar_simulation_test.go

    			},
    		},
    		{
    			name: "ingress to same port",
    			configs: []config.Config{
    				{
    					Meta: config.Meta{GroupVersionKind: gvk.Sidecar, Namespace: "default", Name: "sidecar"},
    					Spec: &networking.Sidecar{Ingress: []*networking.IstioIngressListener{{
    						Port: &networking.SidecarPort{
    							Number:   80,
    							Protocol: "HTTP",
    							Name:     "http",
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/adminlte.min.js.map

    `.${DATA_KEY}`\n  const JQUERY_NO_CONFLICT = $.fn[NAME]\n\n  const Event = {\n    SIDEBAR: 'sidebar'\n  }\n\n  const Selector = {\n    HEADER         : '.main-header',\n    MAIN_SIDEBAR   : '.main-sidebar',\n    SIDEBAR        : '.main-sidebar .sidebar',\n    CONTENT        : '.content-wrapper',\n    BRAND          : '.brand-link',\n    CONTENT_HEADER : '.content-header',\n    WRAPPER        : '.wrapper',\n    CONTROL_SIDEBAR: '.control-sidebar',\n    CONTROL_SIDEBAR_CONTENT: '.control-sidebar-content',\n    CONTROL_SIDEBAR_BTN:...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context_test.go

    			describe: "gateway sidecar scope",
    		},
    	}
    	for _, c := range cases {
    		t.Run(c.describe, func(t *testing.T) {
    			scope := ps.getSidecarScope(c.proxy, c.labels)
    			if c.sidecar != scopeToSidecar(scope) {
    				t.Errorf("should get sidecar %s but got %s", c.sidecar, scopeToSidecar(scope))
    			}
    		})
    	}
    }
    
    func TestRootSidecarScopePropagation(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  4. istioctl/pkg/describe/describe.go

    		return
    	}
    
    	// Ref: https://istio.io/latest/docs/ops/deployment/requirements/#pod-requirements
    	if pod.Spec.SecurityContext != nil && pod.Spec.SecurityContext.RunAsUser != nil {
    		if *pod.Spec.SecurityContext.RunAsUser == UserID {
    			fmt.Fprintf(writer, "   WARNING: User ID (UID) 1337 is reserved for the sidecar proxy.\n")
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    			IstioVersion: "1.2.2",
    			Raw: map[string]any{
    				"foo": "sidecar",
    				"bar": "proxy",
    			},
    		},
    	}
    
    	gatewayProxy := &model.Proxy{
    		Type:            model.Router,
    		ConfigNamespace: "not-default",
    		Metadata: &model.NodeMetadata{
    			IstioVersion: "1.2.2",
    			Raw: map[string]any{
    				"foo": "sidecar",
    				"bar": "proxy",
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    		}
    	}
    	assert.Equal(t, expected, actual, desc)
    }
    
    func TestComputePodActionsWithInitContainers(t *testing.T) {
    	t.Run("sidecar containers disabled", func(t *testing.T) {
    		testComputePodActionsWithInitContainers(t, false)
    	})
    	t.Run("sidecar containers enabled", func(t *testing.T) {
    		testComputePodActionsWithInitContainers(t, true)
    	})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_tls_test.go

    						},
    						AlpnProtocols: util.ALPNH2Only,
    					},
    					Sni: "some-sni.com",
    				},
    				err: nil,
    			},
    		},
    		{
    			name: "tls mode MUTUAL, credentialName is set with proxy type Sidecar",
    			opts: &buildClusterOpts{
    				mutable: newTestCluster(),
    			},
    			tls: &networking.ClientTLSSettings{
    				Mode:           networking.ClientTLSSettings_MUTUAL,
    				CredentialName: "fake-cred",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    		enableSidecarContainers bool
    		wantPreFilterStatus     *framework.Status
    	}{
    		{
    			name: "allow pod without restartable init containers if sidecar containers is disabled",
    			pod:  newPod(),
    		},
    		{
    			name:                "not allow pod with restartable init containers if sidecar containers is disabled",
    			pod:                 newPodWithRestartableInitContainers(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			serviceInstances[0].Service.Hostname, hostname)
    	}
    
    	// Test that we can look up instances just by Proxy metadata
    	metaServices := controller.GetProxyServiceTargets(&model.Proxy{
    		Type:            "sidecar",
    		IPAddresses:     []string{"1.1.1.1"},
    		Locality:        &core.Locality{Region: "r", Zone: "z"},
    		ConfigNamespace: "nsa",
    		Labels: map[string]string{
    			"app":                      "prod-app",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  10. pilot/pkg/security/authn/policy_applier_test.go

    							},
    							OriginIsOptional: true,
    							PrincipalBinding: authn_alpha.PrincipalBinding_USE_ORIGIN,
    						},
    					}),
    				},
    			},
    		},
    		{
    			name:       "beta-jwt-for-sidecar",
    			forSidecar: true,
    			jwtIn: []*config.Config{
    				{
    					Spec: &v1beta1.RequestAuthentication{
    						JwtRules: []*v1beta1.JWTRule{
    							{
    								Issuer:  "https://secret.foo.com",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
Back to top