Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 324 for serviceAccounts (0.3 sec)

  1. pilot/pkg/networking/core/cluster_traffic_policy.go

    		if opts.clusterMode != SniDnatClusterMode {
    			autoMTLSEnabled := opts.mesh.GetEnableAutoMtls().Value
    			tls, mtlsCtxType := cb.buildUpstreamTLSSettings(tls, opts.serviceAccounts, opts.istioMtlsSni,
    				autoMTLSEnabled, opts.meshExternal, opts.serviceMTLSMode)
    			cb.applyUpstreamTLSSettings(&opts, tls, mtlsCtxType)
    			cb.applyUpstreamProxyProtocol(&opts, proxyProtocol)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. tests/integration/operator/switch_cr_test.go

    			var err error
    			switch kind {
    			case "Service":
    				_, err = cs.Kube().CoreV1().Services(ns).Get(context.TODO(), name, metav1.GetOptions{})
    			case "ServiceAccount":
    				_, err = cs.Kube().CoreV1().ServiceAccounts(ns).Get(context.TODO(), name, metav1.GetOptions{})
    			case "Deployment":
    				_, err = cs.Kube().AppsV1().Deployments(IstioNamespace).Get(context.TODO(), name,
    					metav1.GetOptions{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. 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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/deployment.go

    	}
    	return config, nil
    }
    
    func createServiceAccount(client kubernetes.Interface, ns string, serviceAccount string) error {
    	scopes.Framework.Debugf("Creating service account for: %s/%s", ns, serviceAccount)
    	_, err := client.CoreV1().ServiceAccounts(ns).Create(context.TODO(), &corev1.ServiceAccount{
    		ObjectMeta: metav1.ObjectMeta{Name: serviceAccount},
    	}, metav1.CreateOptions{})
    	return err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  5. pkg/config/schema/collections/collections.gen.go

    		ValidateProto: validation.EmptyValidate,
    	}.MustBuild()
    
    	ServiceAccount = resource.Builder{
    		Identifier:    "ServiceAccount",
    		Group:         "",
    		Kind:          "ServiceAccount",
    		Plural:        "serviceaccounts",
    		Version:       "v1",
    		Proto:         "k8s.io.api.core.v1.ServiceAccount",
    		ReflectType:   reflect.TypeOf(&k8sioapicorev1.ServiceAccount{}).Elem(),
    		ProtoPackage:  "k8s.io/api/core/v1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/values.yaml

        # Default behavior: latest images will be Always else IfNotPresent.
        imagePullPolicy: ""
    
        # ImagePullSecrets for all ServiceAccount, list of secrets in the same namespace
        # to use for pulling any images in pods that reference this ServiceAccount.
        # For components that don't use ServiceAccounts (i.e. grafana, servicegraph, tracing)
        # ImagePullSecrets will be added to the corresponding Deployment(StatefulSet) objects.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. istioctl/pkg/workload/workload.go

    		},
    	}
    	tokenReq, err := kubeClient.Kube().CoreV1().ServiceAccounts(wg.Namespace).CreateToken(context.Background(), serviceAccount, token, metav1.CreateOptions{})
    	// errors if the token could not be created with the given service account in the given namespace
    	if err != nil {
    		return fmt.Errorf("could not create a token under service account %s in namespace %s: %v", serviceAccount, wg.Namespace, err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    				Addresses: map[cluster.ID][]string{clusterID: {"10.0.0.1"}},
    			},
    			DefaultAddress:  "10.0.0.1",
    			Ports:           []*model.Port{{Name: "tcp-port", Port: 8080, Protocol: protocol.TCP}},
    			ServiceAccounts: []string{"******@****.***", "spiffe://cluster.local/ns/nsa/sa/acct4"},
    			Attributes: model.ServiceAttributes{
    				ServiceRegistry: provider.Kubernetes,
    				Name:            "svc1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers.go

    		{Name: "Users", Type: "string", Priority: 1, Description: "Users in the roleBinding"},
    		{Name: "Groups", Type: "string", Priority: 1, Description: "Groups in the roleBinding"},
    		{Name: "ServiceAccounts", Type: "string", Priority: 1, Description: "ServiceAccounts in the roleBinding"},
    	}
    	_ = h.TableHandler(roleBindingsColumnDefinitions, printRoleBinding)
    	_ = h.TableHandler(roleBindingsColumnDefinitions, printRoleBindingList)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// `group` matches based on user group name.
    	// +optional
    	Group *GroupSubject `json:"group,omitempty" protobuf:"bytes,3,opt,name=group"`
    	// `serviceAccount` matches ServiceAccounts.
    	// +optional
    	ServiceAccount *ServiceAccountSubject `json:"serviceAccount,omitempty" protobuf:"bytes,4,opt,name=serviceAccount"`
    }
    
    // SubjectKind is the kind of subject.
    type SubjectKind string
    
    // Supported subject's kinds.
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top