Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,252 for Listeners (0.1 sec)

  1. tests/integration/security/policy_attachment_only/testdata/requestauthn/gateway-api.yaml.tmpl

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: {{ .To.ServiceName }}-gateway
    spec:
      gatewayClassName: istio
      listeners:
      - name: http
        port: 80
        protocol: HTTP
        hostname: "*.{{ .To.ServiceName }}.com"
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      parentRefs:
      - name: {{ .To.ServiceName }}-gateway
      hostnames:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 574 bytes
    - Viewed (0)
  2. tests/testdata/mcp_bootstrap_tmpl.json

        "access_log_path": "/dev/stdout",
        "address": {
          "socket_address": {
            "address": "0.0.0.0",
            "port_value": {{.Ports.AdminPort}}
          }
        }
      },
      "static_resources": {
        "listeners": [],
        "clusters": [
          {
            "name": "xds-grpc",
            "type": "STRICT_DNS",
            "connect_timeout": {
              "seconds": 5,
              "nanos": 0
            },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 08 21:09:56 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-routing/gateway.yaml

    #$ Used in:
    #$ - site-src/guides/http-routing.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: example-gateway
    spec:
      gatewayClassName: example-gateway-class
      listeners:
      - name: http
        protocol: HTTP
        port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: example-route
    spec:
      parentRefs:
      - name: example-gateway
      hostnames:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 491 bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/mismatch.yaml

    kind: Gateway
    metadata:
      name: gateway
      namespace: istio-system
    spec:
      addresses:
      - value: istio-ingressgateway
        type: Hostname
      gatewayClassName: something-else
      listeners:
      - name: default
        port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 520 bytes
    - Viewed (0)
  5. src/net/sock_posix.go

    	//   as talking to the protocol stack inside the kernel
    	//
    	// For stream and datagram listeners, they will only require
    	// named sockets, so we can assume that it's just a request
    	// from stream or datagram listeners when laddr is not nil but
    	// raddr is nil. Otherwise we assume it's just for dialers or
    	// the other connection holders.
    
    	if laddr != nil && raddr == nil {
    		switch sotype {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. releasenotes/notes/sidecar-port-merge.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
    - |
      **Fixed** a bug when a Sidecar is resource is defined with multiple egress listeners with different ports 
      of a Kubernetes service, does not merge the ports correctly. This leads to creating only one Cluster with 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 348 bytes
    - Viewed (0)
  7. releasenotes/notes/48814.yaml

    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 14:00:48 UTC 2024
    - 338 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-route-attachment/gateway-strict.yaml

    #$ Used in:
    #$ - site-src/concepts/api-overview.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: foo-gateway
      namespace: gateway-api-example-ns1
    spec:
      gatewayClassName: foo-lb
      listeners:
      - name: prod-web
        port: 80
        protocol: HTTP
        allowedRoutes:
          kinds:
          - kind: HTTPRoute
          namespaces:
            from: Selector
            selector:
              matchLabels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 573 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/tls-basic.yaml

    #$ Used in:
    #$ - site-src/guides/tls.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: tls-basic
    spec:
      gatewayClassName: acme-lb
      listeners:
      - name: foo-https
        protocol: HTTPS
        port: 443
        hostname: foo.example.com
        tls:
          certificateRefs:
          - kind: Secret
            group: ""
            name: foo-example-com-cert
      - name: bar-https
        protocol: HTTPS
        port: 443
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 555 bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/model/RuleBasedPluginListener.java

     * limitations under the License.
     */
    
    package org.gradle.internal.model;
    
    import org.gradle.api.Project;
    
    /**
     * This listener is notified when a rule based plugin is applied to a project.
     * Listeners can react to this by activating compatibility layers that are otherwise not necessary.
     */
    public interface RuleBasedPluginListener {
    
        void prepareForRuleBasedPlugins(Project project);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 02 15:31:41 UTC 2018
    - 972 bytes
    - Viewed (0)
Back to top