Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 482 for kubeutil (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/kubectl/cmd/convert/convert_test.go

    			file:          "../../../../test/fixtures/pkg/kubectl/cmd/convert/appsdeployment.yaml",
    			outputVersion: "extensions/v1beta1",
    			fields: []checkField{
    				{
    					expected: "apiVersion: extensions/v1beta1",
    				},
    			},
    		},
    		{
    			name:          "extensions deployment to apps deployment",
    			file:          "../../../../test/fixtures/pkg/kubectl/cmd/convert/extensionsdeployment.yaml",
    			outputVersion: "apps/v1beta2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:21:17 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. samples/httpbin/README.md

    image from Docker hub:
    
    ```bash
    kubectl run -i --rm --restart=Never dummy --image=dockerqa/curl:ubuntu-trusty --command -- curl --silent httpbin:8000/html
    kubectl run -i --rm --restart=Never dummy --image=dockerqa/curl:ubuntu-trusty --command -- curl --silent --head httpbin:8000/status/500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastappliedupdater_test.go

    	appliedObj := &unstructured.Unstructured{Object: map[string]interface{}{}}
    	appliedDeployment := []byte(`
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: my-deployment
      annotations:
        "kubectl.kubernetes.io/last-applied-configuration": "` + originalLastApplied + `"
      labels:
        app: my-app
    spec:
      replicas: 20
      selector:
        matchLabels:
          app: my-app
      template:
        metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  8. cluster/addons/addon-manager/kube-addons.sh

    # 2. Logging doesn't work from files that print things out.
    # 3. Kubectl prints the output to stderr (the output should be captured and then
    #    logged)
    
    KUBECTL=${KUBECTL_BIN:-/usr/local/bin/kubectl}
    KUBECTL_OPTS=${KUBECTL_OPTS:-}
    # KUBECTL_PRUNE_WHITELIST is a list of resources whitelisted by default.
    # This is currently the same with the default in:
    # https://github.com/kubernetes/kubectl/blob/master/pkg/cmd/apply/prune.go.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 05:40:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. samples/tcp-echo/README.md

    1. Start the `tcp-echo-server` service inside the Istio service mesh:
    
        ```console
        $ kubectl apply -f <(istioctl kube-inject -f tcp-echo.yaml)
        service/tcp-echo created
        deployment.apps/tcp-echo created
        ```
    
    1. Test by running the `nc` command from a `busybox` container from within the cluster.
    
        ```console
        $ kubectl run -i --rm --restart=Never dummy --image=busybox -- sh -c "echo world | nc tcp-echo 9000"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 28 07:41:56 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastappliedmanager_test.go

    			),
    		},
    		{
    			fieldManager: "kubectl",
    			original: []byte(`
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: my-deployment
    spec:
      replicas: 3
    `),
    			applied: []byte(`
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: my-deployment
    spec:
      replicas: 100 # update replicas
    `),
    		},
    		{
    			fieldManager: "kubectl",
    			lastApplied: []byte(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 20K bytes
    - Viewed (0)
Back to top