Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,575 for Bash (0.17 sec)

  1. samples/open-telemetry/als/README.md

    Run the following script to request `httpbin` from `fortio`.
    
    ```bash
    kubectl exec -it $(kubectl get po | grep fortio | awk '{print $1}') -- fortio curl httpbin:8000/ip
    ```
    
    Run the following script to checkout ALS output.
    
    ```bash
    kubectl logs $(kubectl get po -n observability | grep otel | awk '{print $1}') -n observability
    ```
    
    ## Cleanup
    
    ```bash
    kubectl delete -f ../otel.yaml -n observability
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. samples/cicd/skaffold/README.md

    1) istio-base + istio
    
        ```bash
        skaffold run -m istiod
        ```
    
    2) istio-base + istio + ingress
    
        ```bash
        skaffold run -m ingress
        ```
    
    3) istio-base + istio + ingress + kiali
    
        ```bash
        skaffold run -m ingress,kiali
        ```
    
    4) istio-base + istio + ingress + kiali + bookinfo
    
        ```bash
        skaffold run -m ingress,kiali,bookinfo
        ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 17 12:12:08 UTC 2022
    - 1K bytes
    - Viewed (0)
  3. samples/custom-bootstrap/README.md

    ```bash
    kubectl apply -f custom-bootstrap.yaml
    ```
    
    Next, we can create a service that uses this bootstrap configuration.
    
    To do this, we need to add an annotation, `sidecar.istio.io/bootstrapOverride`, with the name of our ConfigMap as the value.
    
    We can create our helloworld app, using the custom config, with:
    
    ```bash
    kubectl apply -f example-app.yaml
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 22:34:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/devel.usertools/setup_venv_test.sh

    python -m venv /$1
    mkdir -p $1
    rm -f ./$1/tensorflow
    ln -s $(ls /$1/lib) /$1/lib/python3
    ln -s ../tensorflow $1/tensorflow
    # extglob is necessary for @(a|b) pattern matching
    # see "extglob" in the bash manual page ($ man bash)
    bash -O extglob -c "/$1/bin/pip install $2"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. security/tools/jwt/samples/README.md

    ```bash
    pip install jwcrypto
    ```
    
    ## Regenerate private key and JWKS (for developer use only)
    
    1. Regenerate private key using `openssl`
    
        ```bash
        openssl genrsa -out key.pem 2048
        ```
    
    1. Run gen-jwt.py with `--jkws` to create new public key set and demo JWT
    
        ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 24 15:56:06 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. samples/open-telemetry/tracing/README.md

    ## Start otel-collector service
    
    First, deploy the `otel-collector` backend with simple configuration.
    
    ```bash
    kubectl -n <namespace> apply -f ../otel.yaml
    ```
    
    In this example, we use `observability` as the namespace to deploy the `otel-collector` backend:
    
    ```bash
    kubectl create namespace observability
    kubectl -n observability apply -f ../otel.yaml
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. misc/ios/README

    Go on iOS
    =========
    
    To run the standard library tests, run all.bash as usual, but with the compiler
    set to the clang wrapper that invokes clang for iOS. For example, this command runs
     all.bash on the iOS emulator:
    
    	GOOS=ios GOARCH=amd64 CGO_ENABLED=1 CC_FOR_TARGET=$(pwd)/../misc/ios/clangwrap.sh ./all.bash
    
    If CC_FOR_TARGET is not set when the toolchain is built (make.bash or all.bash), CC
    can be set on the command line. For example,
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 21:49:26 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  8. .github/workflows/arm-cd.yml

              ./tensorflow/tools/ci_build/ci_build.sh cpu.arm64 bash tensorflow/tools/ci_build/rel/ubuntu/cpu_arm64_test_build.sh
          - name: Upload pip wheel to PyPI
            if: github.event_name == 'schedule' || (github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v2')) # only if it is a scheduled nightly or tagged
            shell: bash
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 10:24:16 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. tests/fuzz/README.md

    To run the fuzzers, follow these steps:
    
    ```bash
    git clone --depth=1 https://github.com/google/oss-fuzz.git
    cd oss-fuzz
    python infra/helper.py build_image istio
    python infra/helper.py build_fuzzers istio ~/go/src/istio.io/istio
    ```
    
    Reproduce failure:
    
    ```bash
    python infra/helper.py reproduce istio FuzzX ~/Downloads/clusterfuzz-testcase-minimized-FuzzX-1234
    ```
    
    Run:
    
    ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 16:45:44 UTC 2022
    - 994 bytes
    - Viewed (0)
  10. .github/workflows/arm-ci-extended.yml

        runs-on: [self-hosted, linux, ARM64]
        strategy:
          fail-fast: false
          matrix:
            pyver: ['3.9', '3.10', '3.11', '3.12']
        steps:
          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
              if [[ $running_containers == "" ]]; then
                echo "No running containers";
              else
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 10:24:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top