Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 523 for kubeutil (0.12 sec)

  1. hack/testdata/pod-with-large-name.yaml

    # Used for testing name truncation in kubectl expose
    apiVersion: v1
    kind: Pod
    metadata:
      name: kubernetes-serve-hostname-testing-sixty-three-characters-in-length
      labels:
        name: kubernetes-serve-hostname
    spec:
      containers:
      - name: kubernetes-serve-hostname
        image: registry.k8s.io/e2e-test-images/agnhost:2.32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 365 bytes
    - Viewed (0)
  2. releasenotes/notes/34802.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 20 14:53:38 UTC 2021
    - 198 bytes
    - Viewed (0)
  3. istioctl/pkg/kubeinject/kubeinject.go

    `,
    		Example: `  # Update resources on the fly before applying.
      kubectl apply -f <(istioctl kube-inject -f <resource.yaml>)
    
      # Create a persistent version of the deployment with Istio sidecar injected.
      istioctl kube-inject -f deployment.yaml -o deployment-injected.yaml
    
      # Update an existing deployment.
      kubectl get deployment -o yaml | istioctl kube-inject -f - | kubectl apply -f -
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: {{.ServiceAccount | quote}}
      namespace: {{.Namespace | quote}}
      annotations:
        {{- toJsonMap (omit .InfrastructureAnnotations "kubectl.kubernetes.io/last-applied-configuration" "gateway.istio.io/name-override" "gateway.istio.io/service-account" "gateway.istio.io/controller-version") | nindent 4 }}
      labels:
        {{- toJsonMap
          .InfrastructureLabels
          (strdict
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/hello-multi.yaml.injected

          app: hello
          tier: backend
          track: stable
          version: v1
      strategy: {}
      template:
        metadata:
          annotations:
            istio.io/rev: default
            kubectl.kubernetes.io/default-container: hello
            kubectl.kubernetes.io/default-logs-container: hello
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.2.md

      * Minimum CPU limits is 10m. This is a Linux Kernel limitation
      * “kubectl rollout undo” (i.e. rollback) will hang on paused deployments, because
    paused deployments can’t be rolled back (this is expected), and the command
    waits for rollback events to return the result. Users should use “kubectl
    rollout resume” to resume a deployment before rolling back.
      * “kubectl edit <list>” will open the editor multiple times, once for each
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/list.yaml.injected

            tier: backend
            track: stable
            version: v1
        strategy: {}
        template:
          metadata:
            annotations:
              istio.io/rev: default
              kubectl.kubernetes.io/default-container: hello
              kubectl.kubernetes.io/default-logs-container: hello
              prometheus.io/path: /stats/prometheus
              prometheus.io/port: "15020"
              prometheus.io/scrape: "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastappliedupdater.go

    		return liveObj, managed, err
    	}
    
    	// Sync the client-side apply annotation only from kubectl server-side apply.
    	// To opt-out of this behavior, users may specify a different field manager.
    	//
    	// If the client-side apply annotation doesn't exist,
    	// then continue because we have no annotation to update
    	if manager == "kubectl" && hasLastApplied(liveObj) {
    		lastAppliedValue, err := buildLastApplied(newObj)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. pkg/util/procfs/procfs_linux_test.go

    	}
    	verifyContainerName(string(content), "/user/1000.user/c1.session", false, t)
    
    	procCgroupNoDevice := "2:freezer:docker/kubelet\n5:cpuacct:pkg/kubectl"
    	verifyContainerName(procCgroupNoDevice, "", true, t)
    
    	procCgroupInvalid := "devices:docker/kubelet\ncpuacct:pkg/kubectl"
    	verifyContainerName(procCgroupInvalid, "", true, t)
    }
    
    func TestPidOf(t *testing.T) {
    	if runtime.GOOS == "darwin" || runtime.GOOS == "windows" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 07:13:28 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  10. build/README.md

      *  `build/run.sh make cross`: Build all binaries for all platforms. To build only a specific platform, add `KUBE_BUILD_PLATFORMS=<os>/<arch>`
      *  `build/run.sh make kubectl KUBE_BUILD_PLATFORMS=darwin/amd64`: Build the specific binary for the specific platform (`kubectl` and `darwin/amd64` respectively in this example)
      *  `build/run.sh make test`: Run all unit tests
      *  `build/run.sh make test-integration`: Run integration test
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 07:20:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top