Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for RoleBinding (0.2 sec)

  1. samples/addons/kiali.yaml

      - cacerts
      - istio-ca-secret
      resources:
      - secrets
      verbs:
      - get
      - list
      - watch
    ...
    ---
    # Source: kiali-server/templates/rolebinding-controlplane.yaml
    apiVersion: rbac.authorization.k8s.io/v1
    kind: RoleBinding
    metadata:
      name: kiali-controlplane
      namespace: istio-system
      labels:
        helm.sh/chart: kiali-server-1.85.0
        app: kiali
        app.kubernetes.io/name: kiali
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers.go

    		{Name: "Role", Type: "string", Description: rbacv1beta1.RoleBinding{}.SwaggerDoc()["roleRef"]},
    		{Name: "Age", Type: "string", Description: metav1.ObjectMeta{}.SwaggerDoc()["creationTimestamp"]},
    		{Name: "Users", Type: "string", Priority: 1, Description: "Users in the roleBinding"},
    		{Name: "Groups", Type: "string", Priority: 1, Description: "Groups in the roleBinding"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers_test.go

    		}
    	}
    }
    
    func TestPrintRoleBinding(t *testing.T) {
    	tests := []struct {
    		binding  rbac.RoleBinding
    		options  printers.GenerateOptions
    		expected []metav1.TableRow
    	}{
    		// Basic role binding
    		{
    			binding: rbac.RoleBinding{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "binding1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  4. api/openapi-spec/swagger.json

            {
              "group": "rbac.authorization.k8s.io",
              "kind": "Role",
              "version": "v1"
            }
          ]
        },
        "io.k8s.api.rbac.v1.RoleBinding": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    										Default: map[string]interface{}{},
    										Ref:     ref("k8s.io/api/rbac/v1.RoleBinding"),
    									},
    								},
    							},
    						},
    					},
    				},
    				Required: []string{"items"},
    			},
    		},
    		Dependencies: []string{
    			"k8s.io/api/rbac/v1.RoleBinding", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.27.md

    - The change affects the following CLI command:
      
      kubectl create rolebinding -h ([#107124](https://github.com/kubernetes/kubernetes/pull/107124), [@ptux](https://github.com/ptux)) [SIG CLI]
    
    ### Failing Test
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top