Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 523 for kubeutil (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. prow/lib.sh

                MAIN_CONFIG="${context}"
            fi
            export KUBECONFIG="${context}"
            kubectl delete ns istio-system-multi --ignore-not-found
            kubectl delete clusterrolebinding istio-multi-test --ignore-not-found
            kubectl create ns istio-system-multi
            kubectl create sa istio-multi-test -n istio-system-multi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. cluster/common.sh

      fi
    
      local kubectl="${KUBE_ROOT}/cluster/kubectl.sh"
      # Unset the current-context before we delete it, as otherwise kubectl errors.
      local cc
      cc=$("${kubectl}" config view -o jsonpath='{.current-context}')
      if [[ "${cc}" == "${CONTEXT}" ]]; then
        "${kubectl}" config unset current-context
      fi
      "${kubectl}" config unset "clusters.${CONTEXT}"
      "${kubectl}" config unset "users.${CONTEXT}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  8. tools/certs/Makefile.k8s.mk

    .PHONY: fetch-root-ca
    rawcluster := $(shell kubectl config current-context)
    cluster := $(subst /,-,$(rawcluster))
    pwd := $(shell pwd)
    export KUBECONFIG
    
    fetch-root-ca:
    	@echo "fetching root ca from k8s cluster: "$(cluster)""
    	@mkdir -p $(pwd)/$(cluster)
    	@res=$$(kubectl get secret istio-ca-secret -n $(ISTIO_NAMESPACE) >/dev/null 2>&1; echo $$?); \
    	if [ $$res -eq 1 ]; then \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 13:15:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. hack/e2e-internal/e2e-up.sh

    # limitations under the License.
    
    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
    - 896 bytes
    - Viewed (0)
  10. samples/sleep/README.md

        ```bash
        kubectl apply -f sleep.yaml
        ```
    
        Otherwise manually inject the sidecars before applying:
    
        ```bash
        kubectl apply -f <(istioctl kube-inject -f sleep.yaml)
        ```
    
    1. Start some other services, for example, the [Bookinfo sample](https://istio.io/docs/examples/bookinfo/).
    
        Now you can `kubectl exec` into the sleep service to experiment with Istio networking.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 03 03:51:51 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top