Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for Mongo (0.16 sec)

  1. pkg/config/protocol/instance_test.go

    		{"grpc", protocol.GRPC},
    		{"grpc-web", protocol.GRPCWeb},
    		{"gRPC-Web", protocol.GRPCWeb},
    		{"grpc-Web", protocol.GRPCWeb},
    		{"udp", protocol.UDP},
    		{"Mongo", protocol.Mongo},
    		{"mongo", protocol.Mongo},
    		{"MONGO", protocol.Mongo},
    		{"Redis", protocol.Redis},
    		{"redis", protocol.Redis},
    		{"REDIS", protocol.Redis},
    		{"Mysql", protocol.MySQL},
    		{"mysql", protocol.MySQL},
    		{"MYSQL", protocol.MySQL},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 11 16:27:16 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. pkg/config/protocol/instance.go

    	TLS Instance = "TLS"
    	// UDP declares that the port uses UDP.
    	// Note that UDP protocol is not currently supported by the proxy.
    	UDP Instance = "UDP"
    	// Mongo declares that the port carries MongoDB traffic.
    	Mongo Instance = "Mongo"
    	// Redis declares that the port carries Redis traffic.
    	Redis Instance = "Redis"
    	// MySQL declares that the port carries MySQL traffic.
    	MySQL Instance = "MySQL"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 02:46:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features-external/tests/requiringFeaturesFromExternalRepo.sample.conf

        execution-subdirectory: project
        executable: gradle
        args: "dependencyInsight --configuration compileClasspath --dependency mongo"
        expected-output-file: compileClasspath.out
    },{
        execution-subdirectory: project
        executable: gradle
        args: "dependencyInsight --configuration runtimeClasspath --dependency mongo"
        expected-output-file: runtimeClasspath.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 396 bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/networkfilter.go

    	// TODO: add a watcher for /var/lib/istio/mongo/certs
    	// if certs are found use, TLS or mTLS clusters for talking to MongoDB.
    	// User is responsible for mounting those certs in the pod.
    	mongoProxy := &mongo.MongoProxy{
    		StatPrefix: statPrefix, // mongo stats are prefixed with mongo.<statPrefix> by Envoy
    		// TODO enable faults in mongo
    	}
    
    	out := &listener.Filter{
    		Name:       wellknown.MongoProxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/mock/discovery.go

    				Protocol: protocol.HTTP,
    			}, {
    				Name:     "custom",
    				Port:     90, // target port 1090
    				Protocol: protocol.TCP,
    			}, {
    				Name:     "mongo",
    				Port:     100, // target port 1100
    				Protocol: protocol.Mongo,
    			}, {
    				Name:     "redis",
    				Port:     110, // target port 1110
    				Protocol: protocol.Redis,
    			}, {
    				Name:     "mysql",
    				Port:     120, // target port 1120
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 18:40:05 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java-feature-variant/incompatible-variants/kotlin/producer/build.gradle.kts

        }
        registerFeature("mongoSupport") {
            usingSourceSet(sourceSets["mongoSupport"])
            capability("org.gradle.demo", "producer-db-support", "1.0")
            capability("org.gradle.demo", "producer-mongo-support", "1.0")
        }
    }
    
    dependencies {
        "mysqlSupportImplementation"("mysql:mysql-connector-java:8.0.14")
        "postgresSupportImplementation"("org.postgresql:postgresql:42.2.5")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 05:16:22 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. samples/bookinfo/src/mongodb/Dockerfile

    #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    FROM mongo:7.0.5
    WORKDIR /app/data/
    COPY ratings_data.json /app/data/
    COPY script.sh /docker-entrypoint-initdb.d/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 756 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java-feature-variant/incompatible-variants/groovy/producer/build.gradle

        }
        registerFeature('mongoSupport') {
            usingSourceSet(sourceSets.mongoSupport)
            capability('org.gradle.demo', 'producer-db-support', '1.0')
            capability('org.gradle.demo', 'producer-mongo-support', '1.0')
        }
    }
    
    dependencies {
        mysqlSupportImplementation 'mysql:mysql-connector-java:8.0.14'
        postgresSupportImplementation 'org.postgresql:postgresql:42.2.5'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 05:16:22 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/networking.go

    	switch p {
    	case protocol.HTTP, protocol.HTTP2, protocol.HTTP_PROXY, protocol.GRPC, protocol.GRPCWeb:
    		return ListenerProtocolHTTP
    	case protocol.TCP, protocol.HTTPS, protocol.TLS,
    		protocol.Mongo, protocol.Redis, protocol.MySQL:
    		return ListenerProtocolTCP
    	case protocol.UDP:
    		return ListenerProtocolUnknown
    	case protocol.Unsupported:
    		return ListenerProtocolAuto
    	default:
    		// Should not reach here.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 18 09:42:04 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. samples/bookinfo/platform/kube/bookinfo-db.yaml

    #   limitations under the License.
    
    apiVersion: v1
    kind: Service
    metadata:
      name: mongodb
      labels:
        app: mongodb
        service: mongodb
    spec:
      ports:
      - port: 27017
        name: mongo
      selector:
        app: mongodb
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: mongodb-v1
      labels:
        app: mongodb
        version: v1
    spec:
      replicas: 1
      selector:
        matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top