Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 791 for redirection (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. hack/test-go.sh

    # limitations under the License.
    
    # This script runs all *_test.go files. It is equivalent to `make test`.
    # Usage: `hack/test-go.sh` or `make test`.
    # Note: This script is a vestigial redirection. Please do not add "real" logic.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    # For help output
    ARGHELP=""
    if [[ "$#" -gt 0 ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 28 00:27:40 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  5. hack/update-all.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script is a vestigial redirection.  Please do not add "real" logic.
    # The "true" target of this makerule is `hack/make-rules/update.sh`.
    # We should run `hack/update-all.sh` if anything fails after
    # running `hack/verify-all.sh`. It is equivalent to `make update`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 16 15:58:13 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. 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)
  7. hack/verify-all.sh

    # `hack/verify-all.sh` before submit a PR. It is equivalent to `make verify`.
    # Usage: `hack/verify-all.sh` or `make verify`.
    # Note: This script is a vestigial redirection. Please do not add "real" logic.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    # For help output
    ARGHELP=""
    if [[ -n "${KUBE_VERIFY_GIT_BRANCH:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 16 15:58:13 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top