Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 240 for kubeutil (0.32 sec)

  1. cluster/addons/addon-manager/Makefile

    endif
    
    test:
    	cp ./* $(TEMP_DIR)
    	curl -sSL --retry 5 https://dl.k8s.io/release/$(KUBECTL_VERSION)/bin/linux/$(ARCH)/kubectl > $(TEMP_DIR)/kubectl
    	chmod a+rx $(TEMP_DIR)/kube-addons.sh $(TEMP_DIR)/kube-addons-test.sh $(TEMP_DIR)/kubectl
    	cd $(TEMP_DIR) && KUBECTL_BIN=$(TEMP_DIR)/kubectl ./kube-addons-test.sh
    
    clean:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 01:39:45 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. pkg/kubectl/doc.go

    limitations under the License.
    */
    
    // Package kubectl provides the functions used by the kubectl command line tool
    // under k8s.io/kubernetes/cmd. The functions are kept in this package to better
    // support unit testing. The main() method for kubectl is only an entry point
    // and should contain no functionality.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 23 16:49:30 UTC 2017
    - 908 bytes
    - Viewed (0)
  3. hack/update-translations.sh

    # This script updates `staging/src/k8s.io/kubectl/pkg/util/i18n/translations/kubectl/template.pot` and
    # generates/fixes .po and .mo files.
    # Usage: `update-translations.sh`.
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    TRANSLATIONS="staging/src/k8s.io/kubectl/pkg/util/i18n/translations"
    KUBECTL_FILES=()
    KUBECTL_DEFAULT_LOCATIONS=(
      "pkg/kubectl/cmd"
      "staging/src/k8s.io/kubectl/pkg/cmd"
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 03:48:42 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/command_headers.go

    }
    
    // CommandHeaderRoundTripper adds Request headers before delegating to standard
    // round tripper. These headers are kubectl command headers which
    // detail the kubectl command. See SIG CLI KEP 859:
    //
    //	https://github.com/kubernetes/enhancements/tree/master/keps/sig-cli/859-kubectl-headers
    func (c *CommandHeaderRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
    	for header, value := range c.Headers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/command_headers_test.go

    	}{
    		"Single kubectl command example": {
    			commands: []*cobra.Command{kubectlCmd},
    			expectedHeaders: map[string]string{
    				kubectlCommandHeader: "kubectl",
    			},
    		},
    		"Simple kubectl apply example": {
    			commands: []*cobra.Command{kubectlCmd, applyCmd},
    			expectedHeaders: map[string]string{
    				kubectlCommandHeader: "kubectl apply",
    			},
    		},
    		"Kubectl auth reconcile example": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 20:34:02 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  6. samples/open-telemetry/als/README.md

    ```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
    kubectl delete telemetry mesh-default -n istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top