Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for 3306 (0.06 sec)

  1. samples/bookinfo/platform/kube/bookinfo-mysql.yaml

    type: Opaque
    data:
      rootpasswd: cGFzc3dvcmQ=
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: mysqldb
      labels:
        app: mysqldb
        service: mysqldb
    spec:
      ports:
      - port: 3306
        name: tcp
      selector:
        app: mysqldb
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: mysqldb-v1
      labels:
        app: mysqldb
        version: v1
    spec:
      replicas: 1
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. pkg/config/kube/conversion_test.go

    			expectedProto: protocol.Unsupported,
    		},
    		{
    			name:          "resolves based on known ports",
    			port:          3306, // mysql
    			portName:      "random-name",
    			expectedProto: protocol.TCP,
    		},
    		{
    			name:          "standard app protocol",
    			port:          3306, // mysql
    			portName:      "random-name",
    			appProto:      ptr.Of("kubernetes.io/h2c"),
    			expectedProto: protocol.HTTP2,
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 28 15:30:30 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. samples/bookinfo/platform/kube/bookinfo-ratings-v2-mysql-vm.yaml

              - name: DB_TYPE
                value: "mysql"
              - name: MYSQL_DB_HOST
                value: mysqldb.vm.svc.cluster.local
              - name: MYSQL_DB_PORT
                value: "3306"
              - name: MYSQL_DB_USER
                value: root
              - name: MYSQL_DB_PASSWORD
                value: password
            ports:
            - containerPort: 9080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. samples/bookinfo/platform/kube/bookinfo-ratings-v2-mysql.yaml

              - name: DB_TYPE
                value: "mysql"
              - name: MYSQL_DB_HOST
                value: mysqldb
              - name: MYSQL_DB_PORT
                value: "3306"
              - name: MYSQL_DB_USER
                value: root
              - name: MYSQL_DB_PASSWORD
                value: password
            ports:
            - containerPort: 9080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. samples/bookinfo/platform/kube/bookinfo-ratings-v2.yaml

              # - name: DB_TYPE #default to
              #   value: "mysql"
              # - name: MYSQL_DB_HOST
              #   value: mysqldb
              # - name: MYSQL_DB_PORT
              #   value: "3306"
              # - name: MYSQL_DB_USER
              #   value: root
              # - name: MYSQL_DB_PASSWORD
              #  value: password
              - name: MONGO_DB_URL
                value: mongodb://mongodb:27017/test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. pkg/config/kube/conversion.go

    package kube
    
    import (
    	"strings"
    
    	corev1 "k8s.io/api/core/v1"
    
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/util/sets"
    )
    
    const (
    	SMTP    = 25
    	DNS     = 53
    	MySQL   = 3306
    	MongoDB = 27017
    )
    
    // Ports be skipped for protocol sniffing. Applications bound to these ports will be broken if
    // protocol sniffing is enabled.
    var wellKnownPorts = sets.New[int32](
    	SMTP,
    	DNS,
    	MySQL,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/conversion_test.go

    	}
    	protocols := []protocolCase{
    		{8888, "", nil, corev1.ProtocolTCP, protocol.Unsupported},
    		{25, "", nil, corev1.ProtocolTCP, protocol.TCP},
    		{53, "", nil, corev1.ProtocolTCP, protocol.TCP},
    		{3306, "", nil, corev1.ProtocolTCP, protocol.TCP},
    		{27017, "", nil, corev1.ProtocolTCP, protocol.TCP},
    		{8888, "http", nil, corev1.ProtocolTCP, protocol.HTTP},
    		{8888, "http-test", nil, corev1.ProtocolTCP, protocol.HTTP},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_test.go

    	// storing the services out of time order to test that it's being sorted properly.
    	testOutboundListenerConflict(t,
    		buildServiceWithPort("test1.com", 3306, protocol.HTTP, tnow.Add(1*time.Second)),
    		buildServiceWithPort("test2.com", 3306, protocol.MySQL, tnow))
    	testOutboundListenerConflict(t,
    		buildServiceWithPort("test1.com", 9999, protocol.HTTP, tnow.Add(1*time.Second)),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  9. pkg/dns/server/name_table_test.go

    		},
    	}
    
    	serviceWithVIP1 := &model.Service{
    		Hostname:       host.Name("mysql.foo.bar"),
    		DefaultAddress: "10.0.0.5",
    		Ports: model.PortList{
    			&model.Port{
    				Name:     "tcp",
    				Port:     3306,
    				Protocol: protocol.TCP,
    			},
    		},
    		Resolution: model.Passthrough,
    		Attributes: model.ServiceAttributes{
    			Name:            "mysql-svc",
    			Namespace:       "testns",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. cni/pkg/plugin/plugin_test.go

    	pod.Spec.Containers[0].Name = "mockContainer"
    	pod.Spec.Containers[1].Name = "istio-proxy"
    	pod.ObjectMeta.Annotations[sidecarStatusKey] = "true"
    	pod.ObjectMeta.Annotations[excludeInboundPortsKey] = "3306"
    
    	mockIntercept := testDoAddRun(t, buildMockConf(true, ""), testNSName, pod, ns)
    
    	if len(mockIntercept.lastRedirect) == 0 {
    		t.Fatalf("expected nsenterFunc to be called")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top