Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for 3306 (0.33 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. docs/en/docs/release-notes.md

    * 🌐 Add Vietnamese translation for `docs/vi/docs/features.md` and `docs/vi/docs/index.md`. PR [#3006](https://github.com/tiangolo/fastapi/pull/3006) by [@magiskboy](https://github.com/magiskboy).
    * 🌐 Add Korean translation for `docs/ko/docs/async.md`. PR [#4179](https://github.com/tiangolo/fastapi/pull/4179) by [@NinaHwang](https://github.com/NinaHwang).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    	return common.OpenAPIDefinition{
    		Schema: spec.Schema{
    			SchemaProps: spec.SchemaProps{
    				Description: "Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.",
    				Type:        []string{"object"},
    				Properties: map[string]spec.Schema{
    					"kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  8. api/openapi-spec/swagger.json

          },
          "type": "object"
        },
        "io.k8s.api.core.v1.Service": {
          "description": "Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top