Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 240 for kubeutil (0.25 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. 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)
  3. 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)
  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. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top