Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 523 for kubeutil (0.32 sec)

  1. samples/multicluster/README.md

    ```bash
    kubectl apply -f samples/multicluster/expose-istiod.yaml -n istio-system
    ```
    
    ## Multi-network Configuration
    
    In order to enable cross-cluster load balancing between clusters that are in different
    networks, we need to expose the services through the east-west gateway in each cluster:
    
     ```bash
     kubectl apply -f samples/multicluster/expose-services.yaml -n istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  2. hack/update-generated-docs.sh

      genman "${dest}/docs/man/man1/" "kube-scheduler"
      genman "${dest}/docs/man/man1/" "kubelet"
      genman "${dest}/docs/man/man1/" "kubectl"
      genman "${dest}/docs/man/man1/" "kubeadm"
    
      mkdir -p "${dest}/docs/yaml/kubectl/"
      genyaml "${dest}/docs/yaml/kubectl/"
    
      # create the list of generated files
      pushd "${dest}" > /dev/null || return 1
      touch docs/.generated_docs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. cluster/addons/fluentd-gcp/README.md

    defined. Currently, only base values are supported (no automatic scaling). The
    ScalingPolicy can be created using kubectl. E.g. to set cpu request to 101m,
    memory request to 150Mi and memory limit to 400Mi:
    
    ```
    $ cat <<EOF | kubectl apply -f -
    apiVersion: scalingpolicy.kope.io/v1alpha1
    kind: ScalingPolicy
    metadata:
      name: fluentd-gcp-scaling-policy
      namespace: kube-system
    spec:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  4. cluster/validate-cluster.sh

    source "${KUBE_ROOT}/hack/lib/util.sh"
    source "${KUBE_ROOT}/cluster/kube-util.sh"
    
    # Run kubectl and retry upon failure.
    function kubectl_retry() {
      tries=3
      while ! "${KUBE_ROOT}/cluster/kubectl.sh" "$@"; do
        tries=$((tries-1))
        if [[ ${tries} -le 0 ]]; then
          echo "('kubectl $*' failed, giving up)" >&2
          return 1
        fi
        echo "(kubectl failed, will retry ${tries} times)" >&2
        sleep 1
      done
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 06:35:39 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  5. samples/cicd/skaffold/skaffold.yaml

    metadata:
      name: bookinfo
    requires:
      - configs: [ingress]
    deploy:
      kubectl:
        hooks:
          before:
            - host:
                command: ["sh", "-c", "kubectl label namespace default istio-injection=enabled --overwrite"]
                os: [darwin, linux]
            - host:
                command: ["cmd.exe", "/C", "kubectl label namespace default istio-injection=enabled --overwrite"]
                os: [windows]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 17 12:12:08 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/v2/conversion.go

    				// untyped values break if items or properties are set in kubectl
    				// https://github.com/kubernetes/kube-openapi/pull/143/files#diff-62afddb578e9db18fb32ffb6b7802d92R183
    				s.Items = nil
    				s.Properties = nil
    
    				changed = true
    			}
    
    			if s.XPreserveUnknownFields {
    				// unknown fields break if items or properties are set in kubectl
    				s.Items = nil
    				s.Properties = nil
    
    				changed = true
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 09 20:23:50 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  7. pkg/kubectl/cmd/convert/convert.go

    	"k8s.io/cli-runtime/pkg/genericclioptions"
    	"k8s.io/cli-runtime/pkg/genericiooptions"
    	"k8s.io/cli-runtime/pkg/printers"
    	"k8s.io/cli-runtime/pkg/resource"
    	cmdutil "k8s.io/kubectl/pkg/cmd/util"
    	"k8s.io/kubectl/pkg/util/i18n"
    	"k8s.io/kubectl/pkg/util/templates"
    	"k8s.io/kubectl/pkg/validation"
    	scheme "k8s.io/kubernetes/pkg/api/legacyscheme"
    	api "k8s.io/kubernetes/pkg/apis/core"
    )
    
    var (
    	convertLong = templates.LongDesc(i18n.T(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:21:17 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. common/scripts/kind_provisioner.sh

        C1_POD_CIDR=$(KUBECONFIG="${C1_KUBECONFIG}" kubectl get node -ojsonpath='{.items[0].spec.podCIDR}')
        C2_POD_CIDR=$(KUBECONFIG="${C2_KUBECONFIG}" kubectl get node -ojsonpath='{.items[0].spec.podCIDR}')
        C1_SVC_CIDR=$(KUBECONFIG="${C1_KUBECONFIG}" kubectl cluster-info dump | sed -n 's/^.*--service-cluster-ip-range=\([^"]*\).*$/\1/p' | head -n 1)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. hack/ginkgo-e2e.sh

    E2E_TEST_DEBUG_TOOL=${E2E_TEST_DEBUG_TOOL:-}
    
    : "${KUBECTL:="${KUBE_ROOT}/cluster/kubectl.sh"}"
    : "${KUBE_CONFIG_FILE:="config-test.sh"}"
    
    export KUBECTL KUBE_CONFIG_FILE
    
    source "${KUBE_ROOT}/cluster/kube-util.sh"
    
    function detect-master-from-kubeconfig() {
        export KUBECONFIG=${KUBECONFIG:-$DEFAULT_KUBECONFIG}
    
        local cc
        cc=$("${KUBE_ROOT}/cluster/kubectl.sh" config view -o jsonpath="{.current-context}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. cmd/genman/gen_kube_man.go

    			genMarkdown(c, "kubelet", outDir)
    		}
    	case "kubectl":
    		// generate manpage for kubectl
    		kubectl := kubectlcmd.NewKubectlCommand(kubectlcmd.KubectlOptions{IOStreams: genericiooptions.IOStreams{In: bytes.NewReader(nil), Out: io.Discard, ErrOut: io.Discard}})
    		genMarkdown(kubectl, "", outDir)
    		for _, c := range kubectl.Commands() {
    			genMarkdown(c, "kubectl", outDir)
    		}
    	case "kubeadm":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 12:03:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top