Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 193 for Networking (0.19 sec)

  1. CODEOWNERS

    /pilot/pkg/serviceregistry/                                      @istio/wg-networking-maintainers-pilot
    /pilot/pkg/model/                                                @istio/wg-networking-maintainers-pilot
    /pilot/pkg/networking/core                                       @istio/wg-networking-maintainers-pilot
    /pilot/pkg/proxy                                                 @istio/wg-networking-maintainers-pilot
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Apr 22 19:22:33 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/templates/clusterrole.yaml

      # Use for Kubernetes Service APIs
      - apiGroups: ["networking.x-k8s.io", "gateway.networking.k8s.io"]
        resources: ["*"]
        verbs: ["get", "watch", "list"]
      - apiGroups: ["networking.x-k8s.io", "gateway.networking.k8s.io"]
        resources: ["*"] # TODO: should be on just */status but wildcard is not supported
        verbs: ["update", "patch"]
      - apiGroups: ["gateway.networking.k8s.io"]
        resources: ["gatewayclasses"]
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Nov 09 01:32:06 GMT 2023
    - 5.7K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/templates/reader-clusterrole.yaml

          - "security.istio.io"
          - "networking.istio.io"
          - "authentication.istio.io"
          - "rbac.istio.io"
        resources: ["*"]
        verbs: ["get", "list", "watch"]
      - apiGroups: [""]
        resources: ["endpoints", "pods", "services", "nodes", "replicationcontrollers", "namespaces", "secrets"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["networking.istio.io"]
        verbs: [ "get", "watch", "list" ]
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Jul 17 21:19:52 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/files/waypoint.yaml

      labels:
        {{- toJsonMap
          .InfrastructureLabels
          (strdict
            "gateway.networking.k8s.io/gateway-name" .Name
            "istio.io/gateway-name" .Name
          ) | nindent 4 }}
      {{- if ge .KubeVersion 128 }}
      # Safe since 1.28: https://github.com/kubernetes/kubernetes/pull/117412
      ownerReferences:
      - apiVersion: gateway.networking.k8s.io/v1beta1
        kind: Gateway
        name: "{{.Name}}"
        uid: "{{.UID}}"
      {{- end }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/templates/clusterrole.yaml

      # Use for Kubernetes Service APIs
      - apiGroups: ["networking.x-k8s.io", "gateway.networking.k8s.io"]
        resources: ["*"]
        verbs: ["get", "watch", "list"]
      - apiGroups: ["networking.x-k8s.io", "gateway.networking.k8s.io"]
        resources: ["*"] # TODO: should be on just */status but wildcard is not supported
        verbs: ["update", "patch"]
      - apiGroups: ["gateway.networking.k8s.io"]
        resources: ["gatewayclasses"]
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Nov 09 01:32:06 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  6. helm/minio/templates/_helpers.tpl

    semverCompare ">=1.4-0, <1.7-0" .Capabilities.KubeVersion.Version -}} {{- print "extensions/v1beta1" -}} {{- else if semverCompare ">=1.7-0, <1.16-0" .Capabilities.KubeVersion.Version -}} {{- print "networking.k8s.io/v1beta1" -}} {{- else if semverCompare "^1.16-0" .Capabilities.KubeVersion.Version -}} {{- print "networking.k8s.io/v1" -}} {{- end -}} {{- end -}} {{/* Return the appropriate apiVersion for deployment. */}} {{- define "minio.deployment.apiVersion" -}} {{- if semverCompare "<1.9-0" .Capabilitie...
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 17 06:04:15 GMT 2023
    - 6.5K bytes
    - Viewed (2)
  7. manifests/charts/istio-control/istio-discovery/templates/reader-clusterrole.yaml

          - "security.istio.io"
          - "networking.istio.io"
          - "authentication.istio.io"
          - "rbac.istio.io"
        resources: ["*"]
        verbs: ["get", "list", "watch"]
      - apiGroups: [""]
        resources: ["endpoints", "pods", "services", "nodes", "replicationcontrollers", "namespaces", "secrets"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["networking.istio.io"]
        verbs: [ "get", "watch", "list" ]
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Jul 17 21:19:52 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  8. istioctl/pkg/util/handlers/handlers_test.go

    			wantNamespace: "istio-system",
    		},
    		{
    			proxyName:     "gateway.gateway.networking.k8s.io/istiod",
    			namespace:     "",
    			wantPodName:   "gateway.gateway.networking.k8s.io/istiod",
    			wantNamespace: "",
    		},
    		{
    			proxyName:     "gateway.gateway.networking.k8s.io/istiod",
    			namespace:     "namespace",
    			wantPodName:   "gateway.gateway.networking.k8s.io/istiod",
    			wantNamespace: "namespace",
    		},
    		{
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Jun 09 18:17:49 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  9. istioctl/pkg/precheck/precheck.go

    		return err
    	}
    	checkVerify := func(tls *networking.ClientTLSSettings) bool {
    		if tls == nil {
    			return false
    		}
    		if tls.Mode == networking.ClientTLSSettings_DISABLE || tls.Mode == networking.ClientTLSSettings_ISTIO_MUTUAL {
    			return false
    		}
    		return tls.CaCertificates == "" && tls.CredentialName == "" && !tls.InsecureSkipVerify.GetValue()
    	}
    	checkSNI := func(tls *networking.ClientTLSSettings) bool {
    		if tls == nil {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Apr 12 02:57:30 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

      labels:
        {{- toJsonMap
          .InfrastructureLabels
          (strdict
            "gateway.networking.k8s.io/gateway-name" .Name
            "istio.io/gateway-name" .Name
          ) | nindent 4 }}
      {{- if ge .KubeVersion 128 }}
      # Safe since 1.28: https://github.com/kubernetes/kubernetes/pull/117412
      ownerReferences:
      - apiVersion: gateway.networking.k8s.io/v1beta1
        kind: Gateway
        name: "{{.Name}}"
        uid: "{{.UID}}"
      {{- end }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 12.1K bytes
    - Viewed (0)
Back to top