Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 545 for redirection (0.15 sec)

  1. istioctl/pkg/kubeinject/testdata/mesh-config.yaml

      # has no effect on outbound traffic: iptables REDIRECT is always used for
      # outbound connections.
      # If "REDIRECT", use iptables REDIRECT to NAT and redirect to Envoy.
      # The "REDIRECT" mode loses source addresses during redirection.
      # If "TPROXY", use iptables TPROXY to redirect to Envoy.
      # The "TPROXY" mode preserves both the source and destination IP
      # addresses and ports, so that they can be used for advanced filtering
      # and manipulation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/sidecar-default-selector.yaml

      labels:
        istio.io/dataplane-mode: ambient
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      name: random-pod-ambient
      namespace: ns-ambient
      labels:
        app: ambient
      annotations:
        ambient.istio.io/redirection: enabled
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: namespace-scoped
      namespace: ns-ambient
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 23 13:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. docs/sts/web-identity.md

    MINIO_IDENTITY_OPENID_SCOPES="openid,groups"
    MINIO_IDENTITY_OPENID_REDIRECT_URI="http://127.0.0.1:10000/oauth_callback"
    MINIO_IDENTITY_OPENID_CLAIM_NAME="groups"
    ```
    </details>
    
    ### Redirection from OpenID Provider
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. cni/README.md

    The ambient CNI agent is the only place where ambient network config and pod redirection machinery happens.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/output/install_package_path.golden.yaml

    spec:
      selector:
        matchLabels:
          istio: pilot
      strategy:
        rollingUpdate:
          maxSurge: 100%
          maxUnavailable: 25%
      template:
        metadata:
          annotations:
            ambient.istio.io/redirection: disabled
            prometheus.io/port: "15014"
            prometheus.io/scrape: "true"
            sidecar.istio.io/inject: "false"
          labels:
            app: istiod
            install.operator.istio.io/owning-resource: unknown
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/output/flag_output.golden.yaml

    spec:
      selector:
        matchLabels:
          istio: pilot
      strategy:
        rollingUpdate:
          maxSurge: 100%
          maxUnavailable: 25%
      template:
        metadata:
          annotations:
            ambient.istio.io/redirection: disabled
            prometheus.io/port: "15014"
            prometheus.io/scrape: "true"
            sidecar.istio.io/inject: "false"
          labels:
            app: istiod
            install.operator.istio.io/owning-resource: unknown
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/pilot_k8s_settings.golden.yaml

    spec:
      selector:
        matchLabels:
          istio: pilot
      strategy:
        rollingUpdate:
          maxSurge: 100%
          maxUnavailable: 25%
      template:
        metadata:
          annotations:
            ambient.istio.io/redirection: disabled
            prometheus.io/port: "15014"
            prometheus.io/scrape: "true"
            sidecar.istio.io/inject: "false"
          labels:
            app: istiod
            install.operator.istio.io/owning-resource: unknown
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenSnapshotResolveIntegrationTest.groovy

        @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
        def "can resolve unique and non-unique snapshots using Gradle Module Metadata (redirection = #redirection, metadata sources=#metadataSources)"() {
            given:
            buildFile << """
    repositories.clear()
    repositories {
        maven {
          url "${mavenHttpRepo.uri}"
          metadataSources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 39K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/misannotated.yaml

    spec: {}
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      name: ignore-istio-annotations
      annotations:
        # annotations not set by user, should not warn
        istio.io/rev: rev
        ambient.istio.io/redirection: enabled
    spec:
      containers:
      - name: "foo"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. cni/pkg/util/podutil_test.go

    			args: args{
    				namespace: namespaceWithAmbientEnabledLabel,
    				pod:       podWithSidecar,
    			},
    			want: false,
    		},
    		{
    			name: "pod has label to disable ambient redirection",
    			args: args{
    				namespace: namespaceWithAmbientEnabledLabel,
    				pod:       podWithAmbientDisabledLabel,
    			},
    			want: false,
    		},
    		{
    			name: "pod has sidecar, pod has ambient mode label",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top