Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 523 for kubeutil (0.28 sec)

  1. helm/minio/templates/NOTES.txt

    To access MinIO from localhost, run the below commands:
    
      1. export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "release={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
    
      2. kubectl port-forward $POD_NAME 9000 --namespace {{ .Release.Namespace }}
    
    Read more about port forwarding here: http://kubernetes.io/docs/user-guide/kubectl/kubectl_port-forward/
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. samples/open-telemetry/loki/REAME.md

    ```bash
    kubectl logs -l app=opentelemetry-collector -n istio-system --tail=-1
    ```
    
    You can also check the Grafana logs:
    
    ```bash
    istioctl dashboard grafana
    ```
    
    Learn how to use Loki with Grafana [here](https://grafana.com/docs/grafana/v8.4/datasources/loki/).
    
    ## Cleanup
    
    ```bash
    kubectl delete -f otel.yaml -n istio-system
    kubectl delete telemetry mesh-logging -n istio-system
    istioctl uninstall --purge -y
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 06 20:18:25 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. samples/websockets/README.md

        ```command
        kubectl create -f <(istioctl kube-inject -f samples/websockets/app.yaml)
        ```
    
        - With automatic sidecar injection
    
        ```command
        kubectl create -f samples/websockets/app.yaml
        ```
    
    1. Create the Ingress `Gateway` and `VirtualService` that enables the upgrade to Websocket for incoming traffic:
    
        ```command
        kubectl create -f samples/websockets/route.yaml
        ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  4. hack/e2e-internal/e2e-cluster-size.sh

    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    
    : "${KUBECTL:=${KUBE_ROOT}/cluster/kubectl.sh}"
    : "${KUBE_CONFIG_FILE:="config-test.sh"}"
    
    export KUBECTL KUBE_CONFIG_FILE
    
    source "${KUBE_ROOT}/cluster/kube-util.sh"
    
    prepare-e2e
    
    #TODO(colhom): spec and implement federated version of this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 19 03:50:03 UTC 2019
    - 987 bytes
    - Viewed (0)
  5. samples/bookinfo/platform/kube/cleanup.sh

        for resource in $(kubectl get -n "${NAMESPACE}" "$proto" -o name); do
          kubectl delete -n "${NAMESPACE}" "$resource";
        done
      done
      kubectl delete -n "${NAMESPACE}" -f "$SCRIPTDIR/bookinfo-versions.yaml" >/dev/null 2>&1
    fi
    
    OUTPUT=$(mktemp)
    export OUTPUT
    echo "Application cleanup may take up to one minute"
    kubectl delete -n "${NAMESPACE}" -f "$SCRIPTDIR/bookinfo.yaml" > "${OUTPUT}" 2>&1
    ret=$?
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. hack/e2e-internal/e2e-status.sh

    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    
    : "${KUBECTL:=${KUBE_ROOT}/cluster/kubectl.sh}"
    : "${KUBE_CONFIG_FILE:="config-test.sh"}"
    
    export KUBECTL KUBE_CONFIG_FILE
    
    source "${KUBE_ROOT}/cluster/kube-util.sh"
    
    prepare-e2e
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 19 03:50:03 UTC 2019
    - 904 bytes
    - Viewed (0)
  7. cmd/genyaml/gen_kubectl_yaml.go

    	}
    
    	// Set environment variables used by kubectl so the output is consistent,
    	// regardless of where we run.
    	os.Setenv("HOME", "/home/username")
    	kubectl := cmd.NewKubectlCommand(cmd.KubectlOptions{IOStreams: genericiooptions.IOStreams{In: bytes.NewReader(nil), Out: io.Discard, ErrOut: io.Discard}})
    	genYaml(kubectl, "", outDir)
    	for _, c := range kubectl.Commands() {
    		genYaml(c, "kubectl", outDir)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. hack/lib/test.sh

    kube::test::clear_all() {
      if kube::test::if_supports_resource "rc" ; then
        # shellcheck disable=SC2154
        # Disabling because "kube_flags" is set in a parent script
        kubectl delete "${kube_flags[@]}" rc --all --grace-period=0 --force
      fi
      if kube::test::if_supports_resource "pods" ; then
        kubectl delete "${kube_flags[@]}" pods --all --grace-period=0 --force
      fi
    }
    
    # Prints the calling file and line number $1 levels deep
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 16:46:34 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. cmd/gendocs/gen_kubectl_docs.go

    		os.Exit(1)
    	}
    
    	// Set environment variables used by kubectl so the output is consistent,
    	// regardless of where we run.
    	os.Setenv("HOME", "/home/username")
    	kubectl := cmd.NewKubectlCommand(cmd.KubectlOptions{IOStreams: genericiooptions.IOStreams{In: bytes.NewReader(nil), Out: io.Discard, ErrOut: io.Discard}})
    	doc.GenMarkdownTree(kubectl, outDir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. hack/update-kustomize.sh

    echo -e "\n${color_blue}Committing changes${color_norm}"
    git add .
    git commit -a -m "Update kubectl kustomize to kyaml/$LATEST_KYAML, cmd/config/$LATEST_CONFIG, api/$LATEST_API, kustomize/$LATEST_KUSTOMIZE"
    
    echo -e "\n${color_blue:?}Verifying kubectl kustomize version${color_norm:?}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:40:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top