Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 523 for kubeutil (0.31 sec)

  1. cluster/addons/addon-manager/kube-addons-test.sh

    # cluster. A working Kubernetes cluster must be set up with kubectl configured.
    # To run with the released version of kubectl, use `make test`.
    
    set -o errexit
    set -o pipefail
    set -o nounset
    
    # Default kubectl to the test users installation if needed.
    KUBECTL_BIN="${KUBECTL_BIN:-kubectl}"
    
    # Disabling shellcheck following files as the full path would be required.
    # shellcheck disable=SC1091
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 25 02:46:18 UTC 2021
    - 9.3K bytes
    - Viewed (0)
  2. samples/security/spire/README.md

      $ kubectl delete role spire-server-role leader-election-role
      $ kubectl delete rolebinding spire-server-role-binding leader-election-role-binding
      $ kubectl delete ValidatingWebhookConfiguration spire-controller-manager-webhook
      $ kubectl delete csidriver csi.spiffe.io
      $ kubectl delete CustomResourceDefinition clusterspiffeids.spire.spiffe.io
      $ kubectl delete CustomResourceDefinition clusterfederatedtrustdomains.spire.spiffe.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. samples/helloworld/gateway-api/README.md

    ```bash
    kubectl get crd gateways.gateway.networking.k8s.io || \
      { kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd?ref=v0.5.0" | kubectl apply -f -; }
    ```
    
    Also make sure you are running two versions (v1 and v2) of the helloworld service:
    
    ```bash
    kubectl apply -f ../helloworld.yaml
    ```
    
    ## Configure the helloworld gateway
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 15 22:24:09 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. cluster/addons/addon-manager/CHANGELOG.md

     - Support extra `--prune-whitelist` resources in kube-addon-manager.
     - Update kubectl to v1.10.7.
    
    ### Version 8.6  (Tue February 20 2018 Zihong Zheng <******@****.***>)
     - Allow reconcile/ensure loop to work with resource under non-kube-system namespace.
     - Update kubectl to v1.9.3.
    
    ### Version 8.4  (Thu November 30 2017 zou nengren @zouyee)
     - Update kubectl to v1.8.4.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 01:39:45 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top