Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for vertices (0.16 sec)

  1. manifests/addons/gen.sh

        --from-file=pilot-dashboard.json="${TMP}/pilot-dashboard.json" \
        --from-file=istio-performance-dashboard.json="${TMP}/istio-performance-dashboard.json"
    
      echo -e "\n---\n"
      kubectl create configmap -n istio-system istio-services-grafana-dashboards \
        --dry-run=client -oyaml \
        --from-file=istio-workload-dashboard.json="${TMP}/istio-workload-dashboard.json" \
        --from-file=istio-service-dashboard.json="${TMP}/istio-service-dashboard.json" \
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 09 21:40:53 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  2. common/scripts/kind_provisioner.sh

    }
    
    function cidr_to_ips() {
        CIDR="$1"
        # cidr_to_ips returns a list of single IPs from a CIDR. We skip 1000 (since they are likely to be allocated
        # already to other services), then pick the next 100.
        python3 - <<EOF
    from ipaddress import ip_network, IPv6Network;
    from itertools import islice;
    
    net = ip_network('$CIDR')
    net_bits = 128 if type(net) == IPv6Network else 32;
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 08 19:12:55 GMT 2024
    - 17.3K bytes
    - Viewed (1)
Back to top