Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 545 for redirection (0.4 sec)

  1. releasenotes/notes/50132.yaml

        These changes allow configuring a standard `istio` gateway as a Waypoint.
        For this to work, it must be configured as a `ClusterIP` Service with
        redirection enabled. This is colloquially referred to as a "gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 659 bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/redirector/StandardOutputRedirector.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.redirector;
    
    public interface StandardOutputRedirector {
    
        /**
         * Starts redirection of System.out and System.err to the listener attached to
         * {@link #redirectStandardErrorTo(OutputListener)} and
         * {@link #redirectStandardOutputTo(OutputListener)
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. pkg/config/constants/constants.go

    	// AmbientRedirection specifies whether a pod has ambient redirection (to ztunnel) configured.
    	AmbientRedirection = "ambient.istio.io/redirection"
    	// AmbientRedirectionEnabled indicates redirection is configured. This is set by the CNI on pods
    	// when it actually has successfully set up pod redirection, rather than by the user.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/ztunnel.golden.yaml

    metadata:
      annotations: {}
      labels: {}
      name: ztunnel
      namespace: istio-system
    spec:
      selector:
        matchLabels:
          app: ztunnel
      template:
        metadata:
          annotations:
            ambient.istio.io/redirection: disabled
            cni.projectcalico.org/allowedSourcePrefixes: '["0.0.0.0/0"]'
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            sidecar.istio.io/inject: "false"
          labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 23:49:40 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

    // tag::maven-repo-with-ignore-gradle-metadata-redirection[]
    repositories {
        maven {
            url = uri("http://repo.mycompany.com/repo")
            metadataSources {
                mavenPom()
                artifact()
                ignoreGradleMetadataRedirection()
            }
        }
    }
    // end::maven-repo-with-ignore-gradle-metadata-redirection[]
    
    // tag::authenticated-ivy-repo[]
    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. architecture/ambient/ztunnel.md

    ## Redirection
    
    As ztunnel aims to transparently encrypt and route users traffic, we need a mechanism to capture all traffic entering and leaving "mesh" pods.
    This is a security critical task: if the ztunnel can be bypassed, authorization policies can be bypassed.
    
    Redirection must meet these requirements:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. manifests/charts/istio-cni/values.yaml

        provider: "default"
    
        # Configure ambient settings
        ambient:
          # If enabled, ambient redirection will be enabled
          enabled: false
          # Set ambient config dir path: defaults to /etc/ambient-config
          configDir: ""
          # If enabled, and ambient is enabled, DNS redirection will be enabled
          dnsCapture: false
          # UNSTABLE: If enabled, and ambient is enabled, enables ipv6 support
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/artifacts/defineRepository/groovy/build.gradle

    // tag::maven-repo-with-ignore-gradle-metadata-redirection[]
    repositories {
        maven {
            url "http://repo.mycompany.com/repo"
            metadataSources {
                mavenPom()
                artifact()
                ignoreGradleMetadataRedirection()
            }
        }
    }
    // end::maven-repo-with-ignore-gradle-metadata-redirection[]
    
    // tag::authenticated-ivy-repo[]
    repositories {
        ivy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/IvyArtifactRepository.java

             * If the Ivy file contains a marker telling that Gradle metadata exists
             * for this component, Gradle will <i>also</i> look for the Gradle metadata
             * file. Gradle module metadata redirection will not happen if {@code ignoreGradleMetadataRedirection()} has been used.
             */
            void ivyDescriptor();
    
            /**
             * Indicates that this repository may not contain metadata files,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 02 20:32:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/logging/impl/Slf4jSimpleConfiguration.java

                    break;
            }
            System.setProperty("org.slf4j.simpleLogger.defaultLogLevel", value);
        }
    
        @Override
        public void activate() {
            // property for root logger level or System.out redirection need to be taken into account
            MavenSlf4jSimpleFriend.init();
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:36:58 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top