Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 532 for proxyv2 (0.14 sec)

  1. cmd/kube-proxy/proxy.go

    	_ "k8s.io/component-base/metrics/prometheus/clientgo" // for client metric registration
    	_ "k8s.io/component-base/metrics/prometheus/version"  // for version metric registration
    	"k8s.io/kubernetes/cmd/kube-proxy/app"
    )
    
    func main() {
    	command := app.NewProxyCommand()
    	code := cli.Run(command)
    	os.Exit(code)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 06:33:33 UTC 2023
    - 989 bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/addons/proxy/proxy.go

    )
    
    const (
    	// KubeProxyServiceAccountName describes the name of the ServiceAccount for the kube-proxy addon
    	KubeProxyServiceAccountName = "kube-proxy"
    
    	// KubeProxyConfigMapRoleName sets the name of ClusterRole for ConfigMap
    	KubeProxyConfigMapRoleName = "kube-proxy"
    )
    
    // EnsureProxyAddon creates the kube-proxy addons
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 13:23:44 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. pilot/pkg/xds/debug_test.go

    	tests := []struct {
    		name     string
    		wantCode int
    		proxyID  string
    	}{
    		{
    			name:     "dumps most recent proxy with 200",
    			proxyID:  "test.default",
    			wantCode: 200,
    		},
    		{
    			name:     "returns 404 if proxy not found",
    			proxyID:  "not-found",
    			wantCode: 404,
    		},
    		{
    			name:     "returns 400 if no proxyID",
    			proxyID:  "",
    			wantCode: 400,
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. pilot/pkg/xds/debug.go

    func (s *DiscoveryServer) getDebugConnection(req *http.Request) (string, *Connection) {
    	if proxyID := req.URL.Query().Get("proxyID"); proxyID != "" {
    		return proxyID, s.getProxyConnection(proxyID)
    	}
    	return "", nil
    }
    
    func (s *DiscoveryServer) errorHandler(w http.ResponseWriter, proxyID string, con *Connection) {
    	if proxyID == "" {
    		w.WriteHeader(http.StatusBadRequest)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  5. docker/Dockerfile.distroless

    FROM ubuntu:noble as ubuntu_source
    
    # Modify contents of container
    COPY --from=distroless_source /etc/ /home/etc
    COPY --from=distroless_source /home/nonroot /home/nonroot
    RUN echo istio-proxy:x:1337: >> /home/etc/group
    RUN echo istio-proxy:x:1337:1337:istio-proxy:/nonexistent:/sbin/nologin >> /home/etc/passwd
    
    # Customize distroless with the following:
    # - password file
    # - groups file
    # - /home/nonroot directory
    FROM distroless_source
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 828 bytes
    - Viewed (0)
  6. maven-settings-builder/src/test/java/org/apache/maven/settings/validation/DefaultSettingsValidatorTest.java

        @Test
        void testValidateUniqueProxyId() throws Exception {
            Settings settings = new Settings();
            Proxy proxy = new Proxy();
            String id = "foo";
            proxy.setId(id);
            proxy.setHost("www.example.com");
            settings.addProxy(proxy);
            settings.addProxy(proxy);
    
            SimpleProblemCollector problems = new SimpleProblemCollector();
            validator.validate(settings, problems);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/util/workloadinstances/util.go

    // corresponds to a given proxy, if any.
    func GetInstanceForProxy(index Index, proxy *model.Proxy, proxyIP string) *model.WorkloadInstance {
    	if !slices.Contains(proxy.IPAddresses, proxyIP) {
    		return nil
    	}
    	instances := index.GetByIP(proxyIP) // list is ordered by namespace/name
    	if len(instances) == 0 {
    		return nil
    	}
    	if len(instances) == 1 { // dominant use case
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 17:36:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. cluster/gce/manifests/kube-proxy.manifest

    # Please keep kube-proxy configuration in-sync with:
    # cluster/addons/kube-proxy/kube-proxy-ds.yaml
    apiVersion: v1
    kind: Pod
    metadata:
      name: kube-proxy
      namespace: kube-system
      labels:
        tier: node
        component: kube-proxy
    spec:
      priorityClassName: system-node-critical
      priority: 2000001000
      hostNetwork: true
      tolerations:
      - operator: "Exists"
        effect: "NoExecute"
      - operator: "Exists"
        effect: "NoSchedule"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/util_test.go

    	testCases := []struct {
    		name        string
    		proxy       *model.Proxy
    		expectedKey types.NamespacedName
    	}{
    		{
    			name: "invalid id: bad format",
    			proxy: &model.Proxy{
    				ID: "invalid",
    				Metadata: &model.NodeMetadata{
    					Namespace: "default",
    				},
    			},
    		},
    		{
    			name: "invalid id: namespace mismatch",
    			proxy: &model.Proxy{
    				ID: "pod1.ns1",
    				Metadata: &model.NodeMetadata{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 20:45:12 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/proxy-override.yaml

            - my
            - custom
            - args
            image: fake/custom-image
          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
            - name: istio-proxy
              image: auto
              resources:
                requests:
                  cpu: 123m
                limits:
                  cpu: 3000m
              livenessProbe:
                failureThreshold: 30
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 19:52:06 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top