- Sort Score
- Result 10 results
- Languages All
Results 141 - 148 of 148 for serviceAccount (0.1 sec)
-
CHANGELOG/CHANGELOG-1.10.md
longer leads to an error when launching kube-apiserver. ([#58439](https://github.com/kubernetes/kubernetes/pull/58439) [@liggitt](https://github.com/liggitt)) * Default enabled admission plugins are now `NamespaceLifecycle,LimitRanger,ServiceAccount,PersistentVolumeLabel,DefaultStorageClass,DefaultTolerationSeconds,MutatingAdmissionWebhook,ValidatingAdmissionWebhook,ResourceQuota`. Please note that if you previously had not set the `--admission-control` flag, your cluster behavior may change...
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 341.8K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.11.md
* kubeadm: kubelets in kubeadm clusters now disable the readonly port (10255). If you're relying on unauthenticated access to the readonly port, please switch to using the secure port (10250). Instead, you can now use ServiceAccount tokens when talking to the secure port, which will make it easier to get access to, for example, the `/metrics` endpoint of the kubelet, securely. ([#64187](https://github.com/kubernetes/kubernetes/pull/64187), [@luxas](https://github.com/luxas))...
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Feb 06 06:04:15 UTC 2020 - 328.4K bytes - Viewed (0) -
istioctl/pkg/completion/completion.go
} func getServiceAccountsName(kubeClient kube.CLIClient, toComplete, ns string) ([]string, error) { ctx := context.Background() saList, err := kubeClient.Kube().CoreV1().ServiceAccounts(ns).List(ctx, metav1.ListOptions{}) if err != nil { return nil, err } var saNameList []string for _, sa := range saList.Items { if toComplete == "" || strings.HasPrefix(sa.Name, toComplete) {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Apr 13 05:23:38 UTC 2024 - 4.9K bytes - Viewed (0) -
istioctl/pkg/precheck/precheck.go
{ namespace: istioNamespace, group: "rbac.authorization.k8s.io", version: "v1", resource: "roles", }, { namespace: istioNamespace, version: "v1", resource: "serviceaccounts", }, { namespace: istioNamespace, version: "v1", resource: "services", }, { namespace: istioNamespace, group: "apps", version: "v1",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 02:31:32 UTC 2024 - 15.3K bytes - Viewed (0) -
cmd/iam-store.go
cache := store.rlock() defer store.runlock() var serviceAccounts []auth.Credentials for _, u := range cache.iamUsersMap { v := u.Credentials if accessKey != "" && v.ParentUser == accessKey { if v.IsServiceAccount() { // Hide secret key & session key here v.SecretKey = "" v.SessionToken = "" serviceAccounts = append(serviceAccounts, v) } } }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Oct 14 16:35:37 UTC 2024 - 83.2K bytes - Viewed (0) -
cmd/site-replication.go
// Service accounts are the static accounts that should be synced with // valid claims. { serviceAccounts := make(map[string]UserIdentity) err := globalIAMSys.store.loadUsers(ctx, svcUser, serviceAccounts) if err != nil { return errSRBackendIssue(err) } for user, acc := range serviceAccounts { if user == siteReplicatorSvcAcc { // skip the site replicate svc account as it is
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 185.1K bytes - Viewed (0) -
cmd/sts-handlers_test.go
if err != nil { c.Fatalf("Unable to list access keys: %v", err) } epochTime := time.Unix(0, 0).UTC() expectedAccKeys := madmin.ListAccessKeysLDAPResp{ ServiceAccounts: []madmin.ServiceAccountInfo{ { AccessKey: "u4ccRswj62HV3Ifwima7", Expiration: &epochTime, }, }, } if !reflect.DeepEqual(expectedAccKeys, res) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 10 23:40:37 UTC 2024 - 97.1K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.30.md
- Updated an audit annotation key used by the `…/serviceaccounts/<name>/token` resource handler.
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Wed Oct 23 04:40:14 UTC 2024 - 309.1K bytes - Viewed (0)