Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 523 for kubeutil (0.19 sec)

  1. 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)
  2. hack/e2e-internal/e2e-down.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
    - 899 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. releasenotes/notes/default-container.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    issue:
      - 26764
    
    releaseNotes:
    - |
      **Improved** sidecar injection to automatically specify the `kubectl.kubernetes.io/default-logs-container`. This ensures `kubectl logs`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 346 bytes
    - Viewed (0)
  6. 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)
  7. tools/convert_RbacConfig_to_ClusterRbacConfig.sh

      exit 1
    fi
    
    NS=$(echo "${RBAC_CONFIGS}" | cut -f 1 -d ' ')
    echo "converting RbacConfig in namespace $NS to ClusterRbacConfig"
    
    SPEC=$(kubectl get RbacConfig default -n "${NS}" -o yaml | sed -n -e '/spec:/,$p')
    
    cat <<EOF | kubectl apply -n "${NS}" -f -
    apiVersion: "rbac.istio.io/v1alpha1"
    kind: ClusterRbacConfig
    metadata:
      name: default
    ${SPEC}
    EOF
    
    # shellcheck disable=SC2181
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. hack/local-up-cluster.sh

      export KUBECONFIG=${CERT_DIR}/admin.kubeconfig
      cluster/kubectl.sh
    
    Alternatively, you can write to the default kubeconfig:
    
      export KUBERNETES_PROVIDER=local
    
      cluster/kubectl.sh config set-cluster local --server=https://${API_HOST}:${API_SECURE_PORT} --certificate-authority=${ROOT_CA_FILE}
      cluster/kubectl.sh config set-credentials myself ${AUTH_ARGS}
      cluster/kubectl.sh config set-context local --cluster=local --user=myself
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top