Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 482 for kubeutil (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. samples/extauthz/README.md

    1. Verify the Ext Authz server is up and running:
    
        Deploy a sleep pod to send the request:
    
        ```console
        $ kubectl apply -f ../sleep/sleep.yaml
        ```
    
        Send a check request with header `x-ext-authz: allow` to the Ext Authz server:
    
        ```console
        $ kubectl exec -it $(kubectl get pod -l app=sleep -o jsonpath={.items..metadata.name}) -c sleep -- curl -v ext-authz:8000 -H "x-ext-authz: allow"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 13:52:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/cli-runtime/README.md

    # cli-runtime
    
    Set of helpers for creating kubectl commands, as well as kubectl plugins.
    
    
    ## Purpose
    
    This library is a shared dependency for clients to work with Kubernetes API infrastructure which allows
    to maintain kubectl compatible behavior.  Its first consumer is `k8s.io/kubectl`.
    
    
    ## Compatibility
    
    There are *NO compatibility guarantees* for this repository.  It is in direct support of Kubernetes, so branches
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  10. cmd/clicheck/check_cli_conventions.go

    	"io"
    	"os"
    
    	"k8s.io/cli-runtime/pkg/genericiooptions"
    	"k8s.io/kubectl/pkg/cmd"
    	cmdsanity "k8s.io/kubectl/pkg/cmd/util/sanity"
    )
    
    func main() {
    	var errorCount int
    
    	kubectl := cmd.NewKubectlCommand(cmd.KubectlOptions{IOStreams: genericiooptions.IOStreams{In: os.Stdin, Out: io.Discard, ErrOut: io.Discard}})
    	errors := cmdsanity.RunCmdChecks(kubectl, cmdsanity.AllCmdChecks, []string{})
    	for _, err := range errors {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top