Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 117 for serviceAccounts (0.19 sec)

  1. pkg/controlplane/apiserver/server.go

    	"k8s.io/kubernetes/pkg/controlplane/controller/legacytokentracking"
    	"k8s.io/kubernetes/pkg/controlplane/controller/systemnamespaces"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/routes"
    	"k8s.io/kubernetes/pkg/serviceaccount"
    )
    
    var (
    	// IdentityLeaseGCPeriod is the interval which the lease GC controller checks for expired leases
    	// IdentityLeaseGCPeriod is exposed so integration tests can tune this value.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:24:41 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    				Name:            "endpoints1",
    				Verb:            "custom-verb",
    				APIVersion:      "*",
    			}),
    		},
    		{
    			name: "test serviceAccount authorizer allow check",
    			validations: []ExpressionAccessor{
    				&condition{
    					Expression: "authorizer.serviceAccount('default', 'test-serviceaccount').group('').resource('endpoints').namespace('default').name('endpoints1').check('custom-verb').allowed()",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  3. helm-releases/minio-5.2.0.tgz

    externalIPs: {{- range $i , $ip := .Values.service.externalIPs }} - {{ $ip }} {{- end }} {{- end }} selector: app: {{ template "minio.name" . }} release: {{ .Release.Name }} minio/templates/serviceaccount.yaml {{- if .Values.serviceAccount.create }} apiVersion: v1 kind: ServiceAccount metadata: name: {{ .Values.serviceAccount.name | quote }} {{- end }} minio/templates/servicemonitor.yaml {{- if and .Values.metrics.serviceMonitor.enabled .Values.metrics.serviceMonitor.includeNode }} apiVersion: monitoring.coreos.com/v1...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    metadata:
      name: system:coredns
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: system:coredns
    subjects:
    - kind: ServiceAccount
      name: coredns
      namespace: kube-system
    ---
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: coredns
      namespace: kube-system
    `),
    			wantErr: false,
    		},
    	}
    	for _, tt := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  5. tests/integration/security/reachability_test.go

    				migrationApp = deployment.New(t).
    					WithClusters(t.Clusters()...).WithConfig(echo.Config{
    					Namespace:      echo1NS,
    					Service:        migrationServiceName,
    					ServiceAccount: true,
    					Ports:          ports.All(),
    					Subsets: []echo.SubsetConfig{
    						{
    							// Istio deployment, with sidecar.
    							Version:     migrationVersionIstio,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/addons/dns/dns.go

    		return err
    	}
    
    	coreDNSServiceAccount := &v1.ServiceAccount{}
    	if err := kuberuntime.DecodeInto(clientsetscheme.Codecs.UniversalDecoder(), []byte(CoreDNSServiceAccount), coreDNSServiceAccount); err != nil {
    		return errors.Wrapf(err, "%s ServiceAccount", unableToDecodeCoreDNS)
    	}
    
    	// Create the ConfigMap for CoreDNS or update it in case it already exists
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  7. Makefile.core.mk

    	sed -e '1 i {{- if .Values.global.configCluster }}' -e '$$ a {{- end }}' manifests/charts/istio-control/istio-discovery/templates/serviceaccount.yaml > manifests/charts/istiod-remote/templates/serviceaccount.yaml
    	sed -e '1 i {{- if .Values.global.configCluster }}' -e '$$ a {{- end }}' manifests/charts/istio-control/istio-discovery/templates/role.yaml > manifests/charts/istiod-remote/templates/role.yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. pkg/zdsapi/zds.pb.go

    	Name           string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
    	Namespace      string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
    	ServiceAccount string `protobuf:"bytes,3,opt,name=service_account,json=serviceAccount,proto3" json:"service_account,omitempty"`
    }
    
    func (x *WorkloadInfo) Reset() {
    	*x = WorkloadInfo{}
    	if protoimpl.UnsafeEnabled {
    		mi := &file_zdsapi_zds_proto_msgTypes[1]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. pkg/security/security.go

    	CredFetcher CredFetcher
    
    	// credential identity provider
    	CredIdentityProvider string
    
    	// Namespace corresponding to workload
    	WorkloadNamespace string
    
    	// Name of the Service Account
    	ServiceAccount string
    
    	// XDS auth provider
    	XdsAuthProvider string
    
    	// Cert signer info
    	CertSigner string
    
    	// Delay in reading certificates from file after the change is detected. This is useful in cases
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  10. pkg/model/proxy.go

    	// traffic interception mode at the proxy
    	InterceptionMode TrafficInterceptionMode `json:"INTERCEPTION_MODE,omitempty"`
    
    	// ServiceAccount specifies the service account which is running the workload.
    	ServiceAccount string `json:"SERVICE_ACCOUNT,omitempty"`
    
    	// HTTPProxyPort enables http proxy on the port for the current sidecar.
    	// Same as MeshConfig.HttpProxyPort, but with per/sidecar scope.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top