Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 48 for networkingv1 (0.21 sec)

  1. pkg/config/analysis/analyzers/testdata/destinationrule-simple-destination-credentialname-selector.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-tls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        tls:
          mode: SIMPLE
          credentialName: db-credential
      workloadSelector:
          matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 271 bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_inbound.go

    	extensions "istio.io/api/extensions/v1alpha1"
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	istionetworking "istio.io/istio/pilot/pkg/networking"
    	"istio.io/istio/pilot/pkg/networking/core/extension"
    	"istio.io/istio/pilot/pkg/networking/plugin/authz"
    	"istio.io/istio/pilot/pkg/networking/telemetry"
    	"istio.io/istio/pilot/pkg/networking/util"
    	"istio.io/istio/pilot/pkg/security/authn"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/peer_authentication_simulation_test.go

    metadata:
      name: default
    spec:
      selector:
        matchLabels:
          app: foo
      mtls:
        mode: DISABLE
      portLevelMtls:
        9000:
          mode: PERMISSIVE
    ---`
    	sePort8000 := `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
     name: se
    spec:
     hosts:
     - foo.bar
     endpoints:
     - address: 1.1.1.1
     location: MESH_INTERNAL
     resolution: STATIC
     ports:
     - name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    					"Destination": dst.Config().Service,
    				}, `apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: route
    spec:
      hosts:
      - "{{.Destination}}"
      http:
      - route:
        - destination:
            host: "{{.Destination}}"
            subset: v1
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: route
      namespace:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder.go

    	"google.golang.org/protobuf/types/known/structpb"
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/telemetry"
    	"istio.io/istio/pilot/pkg/networking/util"
    	networkutil "istio.io/istio/pilot/pkg/util/network"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    func TestPrintIngress(t *testing.T) {
    	ingress := networking.Ingress{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:              "test1",
    			CreationTimestamp: metav1.Time{Time: time.Now().Add(time.Duration(-10 * 365 * 24 * time.Hour))},
    		},
    		Spec: networking.IngressSpec{
    			IngressClassName: utilpointer.StringPtr("foo"),
    			DefaultBackend: &networking.IngressBackend{
    				Service: &networking.IngressServiceBackend{
    					Name: "default-backend",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/destinationrule/ca-certificates.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package destinationrule
    
    import (
    	"fmt"
    
    	"istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/analysis"
    	"istio.io/istio/pkg/config/analysis/analyzers/util"
    	"istio.io/istio/pkg/config/analysis/msg"
    	"istio.io/istio/pkg/config/resource"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. samples/addons/kiali.yaml

    - apiGroups: ["batch"]
      resources:
      - cronjobs
      - jobs
      verbs:
      - get
      - list
      - watch
      - patch
    - apiGroups:
      - networking.istio.io
      - security.istio.io
      - extensions.istio.io
      - telemetry.istio.io
      - gateway.networking.k8s.io
      resources: ["*"]
      verbs:
      - get
      - list
      - watch
      - create
      - delete
      - patch
    - apiGroups: ["apps.openshift.io"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. tests/integration/telemetry/api/dashboard_test.go

    		}
    	} else {
    		if numSamples != 0 {
    			scopes.Framework.Infof("Filtered out metric '%v', but got samples: %v", query, numSamples)
    		}
    	}
    	return nil
    }
    
    const gatewayConfig = `
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: echo-gateway
    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers.go

    	if more {
    		return fmt.Sprintf("%s + %d more...", ret, len(rules)-max)
    	}
    	return ret
    }
    
    func formatPorts(tls []networking.IngressTLS) string {
    	if len(tls) != 0 {
    		return "80, 443"
    	}
    	return "80"
    }
    
    func printIngress(obj *networking.Ingress, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top