Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 69 for busybox (0.13 sec)

  1. hack/testdata/pod-restricted-localhost.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        run: target
      name: target
    spec:
      securityContext:
        seccompProfile: 
          type: Localhost
          localhostProfile: dummy.json
      containers:
      - image: busybox
        name: target
        command: ["/bin/sh", "-c", "sleep 100"]
        securityContext:
            runAsUser: 1000
            runAsGroup: 1000
            runAsNonRoot: true
            allowPrivilegeEscalation: false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 24 11:16:49 UTC 2023
    - 467 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/audit/policy/checker_test.go

    			Subresource:     "log",
    			Name:            "busybox",
    			ResourceRequest: true,
    			Path:            "/api/v1/namespaces/default/pods/busybox",
    		},
    		"Unauthorized": &authorizer.AttributesRecord{
    			Verb:            "get",
    			Namespace:       "default",
    			APIGroup:        "", // Core
    			APIVersion:      "v1",
    			Resource:        "pods",
    			Name:            "busybox",
    			ResourceRequest: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 12 15:06:14 UTC 2021
    - 15.1K bytes
    - Viewed (0)
  3. hack/testdata/pod-with-api-env.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: env-test-pod
    spec:
      containers:
        - name: test-container
          image: registry.k8s.io/busybox
          command: [ "/bin/sh", "-c", "env" ]
          env:
            - name: TEST_CMD_1
              valueFrom:
                secretKeyRef:
                  name: test-secret
                  key: key-1
            - name: TEST_CMD_2
              valueFrom:
                configMapKeyRef:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 593 bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    				{
    					Name:  "foo1",
    					Image: "busybox",
    				},
    				{
    					Name:  "foo2",
    					Image: "busybox",
    				},
    				{
    					Name:  "foo3",
    					Image: "busybox",
    				},
    			},
    		},
    		Status: v1.PodStatus{
    			ContainerStatuses: []v1.ContainerStatus{
    				{
    					ContainerID: "://id1",
    					Name:        "foo1",
    					Image:       "busybox",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/multi-init.yaml.injected

              name: istio-podinfo
          initContainers:
          - command:
            - sh
            - -c
            - "true"
            image: busybox
            name: init-one
            resources: {}
          - command:
            - sh
            - -c
            - "true"
            image: busybox
            name: init-two
            resources: {}
          - args:
            - istio-iptables
            - -p
            - "15001"
            - -z
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/files/grpc-simple.yaml

    metadata:
      annotations:
        sidecar.istio.io/rewriteAppHTTPProbers: "false"
    spec:
      initContainers:
        - name: grpc-bootstrap-init
          image: busybox:1.28
          volumeMounts:
            - mountPath: /var/lib/grpc/data/
              name: grpc-io-proxyless-bootstrap
          env:
            - name: INSTANCE_IP
              valueFrom:
                fieldRef:
                  fieldPath: status.podIP
            - name: POD_NAME
              valueFrom:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 10 20:56:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. samples/health-check/liveness-command.yaml

    spec:
      selector:
        matchLabels:
          app: liveness
      template:
        metadata:
          labels:
            app: liveness
        spec:
          containers:
          - name: liveness
            image: registry.k8s.io/busybox
            args:
            - /bin/sh
            - -c
            - touch /tmp/healthy; sleep 3600
            livenessProbe:
              exec:
                command:
                - cat
                - /tmp/healthy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 26 14:35:29 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/grpc-simple.yaml.injected

            - name: POD_NAMESPACE
              valueFrom:
                fieldRef:
                  fieldPath: metadata.namespace
            - name: ISTIO_NAMESPACE
              value: |
                istio-system
            image: busybox:1.28
            name: grpc-bootstrap-init
            resources: {}
            volumeMounts:
            - mountPath: /var/lib/grpc/data/
              name: grpc-io-proxyless-bootstrap
          volumes:
          - emptyDir: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 10 20:56:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. samples/security/spire/istio-spire-config.yaml

                        readOnly: true
                    - path: spec.template.spec.initContainers
                      value:
                        - name: wait-for-spire-socket
                          image: busybox:1.28
                          volumeMounts:
                            - name: workload-socket
                              mountPath: /run/secrets/workload-spiffe-uds
                              readOnly: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_gc_test.go

    		makeTestPod("foo1", "new", "1234", []v1.Container{
    			makeTestContainer("bar1", "busybox"),
    			makeTestContainer("bar2", "busybox"),
    		}),
    		makeTestPod("foo2", "new", "5678", []v1.Container{
    			makeTestContainer("bar3", "busybox"),
    		}),
    		makeTestPod("deleted", "new", "9012", []v1.Container{
    			makeTestContainer("bar4", "busybox"),
    		}),
    	}
    
    	for _, test := range []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top