Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 636 for mypods (0.23 sec)

  1. plugin/pkg/auth/authorizer/rbac/rbac_test.go

    				newClusterRole("admin", newRule("*", "*", "pods", "*")),
    			},
    			roleBindings: []*rbacv1.RoleBinding{
    				newRoleBinding("ns1", "admin", bindToClusterRole, "User:admin", "Group:admins"),
    			},
    			shouldPass: []authorizer.Attributes{
    				&defaultAttributes{"admin", "", "get", "pods", "", "ns1", ""},
    			},
    			shouldFail: []authorizer.Attributes{
    				&defaultAttributes{"admin", "", "get", "pods", "status", "ns1", ""},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 21.1K bytes
    - Viewed (0)
  2. .github/workflows/typos.yml

    ---
    name: Spelling
    on: [pull_request]
    
    jobs:
      run:
        name: Spell Check with Typos
        runs-on: ubuntu-latest
        steps:
        - name: Checkout Actions Repository
          uses: actions/checkout@v4
    
        - name: Check spelling of repo
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 17 00:36:28 UTC 2024
    - 266 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authorization_test.go

    			Verb: "POST",
    			Path: "/api/v1/nodes/mynode",
    			ExpectedAttributes: &authorizer.AttributesRecord{
    				Verb:            "create",
    				Path:            "/api/v1/nodes/mynode",
    				ResourceRequest: true,
    				Resource:        "nodes",
    				APIVersion:      "v1",
    				Name:            "mynode",
    			},
    		},
    		"namespaced resource": {
    			Verb: "PUT",
    			Path: "/api/v1/namespaces/myns/pods/mypod",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. plugin/pkg/admission/noderestriction/admission_test.go

    			owners:    nil,
    			expectErr: "pods \"test\" is forbidden: node \"mynode\" can only create pods with an owner reference set to itself",
    		},
    		{
    			name:   "valid owner",
    			owners: []metav1.OwnerReference{validOwner},
    		},
    		{
    			name:      "duplicate owner",
    			owners:    []metav1.OwnerReference{validOwner, validOwner},
    			expectErr: "can only create pods with a single owner reference set to itself",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  5. .typos.toml

    Aditya Manthramurthy <******@****.***> 1713453302 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 18 15:15:02 UTC 2024
    - 854 bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/testing/testvolumespec.go

    		obj := &storagev1.CSINodeList{}
    		nodeNamePrefix := "mynode"
    		for i := 0; i < 5; i++ {
    			var nodeName string
    			if i != 0 {
    				nodeName = fmt.Sprintf("%s-%d", nodeNamePrefix, i)
    			} else {
    				// We want also the "mynode" node since all the testing pods live there
    				nodeName = nodeNamePrefix
    			}
    			csiNode := storagev1.CSINode{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 17 08:48:30 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker_test.go

    			request:  httpRequest("POST", "/api/v1/namespaces/foo/pods", ""),
    			expected: 2,
    		},
    		{
    			name:     "mypod update in foo namespace",
    			request:  httpRequest("PUT", "/api/v1/namespaces/foo/pods/mypod", ""),
    			expected: 3,
    		},
    		{
    			name:     "mypod patch in foo namespace",
    			request:  httpRequest("PATCH", "/api/v1/namespaces/foo/pods/mypod", ""),
    			expected: 3,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 03 14:02:51 UTC 2021
    - 10.4K bytes
    - Viewed (0)
  8. pkg/serviceaccount/claims_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			Namespace: "myns",
    			Name:      "mypod",
    			UID:       "mypod-uid",
    		},
    	}
    	sec := &core.Secret{
    		ObjectMeta: metav1.ObjectMeta{
    			Namespace: "myns",
    			Name:      "mysecret",
    			UID:       "mysecret-uid",
    		},
    	}
    	node := &core.Node{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "mynode",
    			UID:  "mynode-uid",
    		},
    	}
    	cs := []struct {
    		// input
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. pkg/controller/job/pod_failure_policy_test.go

    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/utils/ptr"
    )
    
    func TestMatchPodFailurePolicy(t *testing.T) {
    	validPodObjectMeta := metav1.ObjectMeta{
    		Namespace: "default",
    		Name:      "mypod",
    	}
    	ignore := batch.PodFailurePolicyActionIgnore
    	failJob := batch.PodFailurePolicyActionFailJob
    	failIndex := batch.PodFailurePolicyActionFailIndex
    	count := batch.PodFailurePolicyActionCount
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. operator/pkg/object/testdata/well-formed.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: mypod
      namespace: default
    spec:
      containers:
      - name: mycontainer
        image: nginx
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: myservice
      namespace: default
    spec:
      selector:
        app: MyApp
      ports:
      - protocol: TCP
        port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 305 bytes
    - Viewed (0)
Back to top