Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 610 for clientset (0.14 sec)

  1. security/pkg/k8s/chiron/utils.go

    	"encoding/pem"
    	"fmt"
    	"net"
    	"os"
    	"time"
    
    	cert "k8s.io/api/certificates/v1"
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/fields"
    	clientset "k8s.io/client-go/kubernetes"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/ptr"
    	"istio.io/istio/security/pkg/pki/util"
    )
    
    const (
    	// The size of a private key for a leaf certificate.
    	keySize = 2048
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 18:11:22 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/data.go

    	CertificateDir() string
    	KubeConfigDir() string
    	KubeConfigPath() string
    	ManifestDir() string
    	KubeletDir() string
    	ExternalCA() bool
    	OutputWriter() io.Writer
    	Client() (clientset.Interface, error)
    	ClientWithoutBootstrap() (clientset.Interface, error)
    	Tokens() []string
    	PatchesDir() string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 06 10:43:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/componentconfigs/configset.go

    	}
    
    	return componentCfg, nil
    }
    
    // FromCluster loads a component from a config map in the cluster
    func (h *handler) FromCluster(clientset clientset.Interface, clusterCfg *kubeadmapi.ClusterConfiguration) (kubeadmapi.ComponentConfig, error) {
    	return h.fromCluster(h, clientset, clusterCfg)
    }
    
    // known holds the known component config handlers. Add new component configs here.
    var known = []*handler{
    	&kubeProxyHandler,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. pkg/kubelet/configmap/configmap_manager.go

    // simpleConfigMapManager implements ConfigMap Manager interface with
    // simple operations to apiserver.
    type simpleConfigMapManager struct {
    	kubeClient clientset.Interface
    }
    
    // NewSimpleConfigMapManager creates a new ConfigMapManager instance.
    func NewSimpleConfigMapManager(kubeClient clientset.Interface) Manager {
    	return &simpleConfigMapManager{kubeClient: kubeClient}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. pkg/kubelet/secret/secret_manager.go

    }
    
    // simpleSecretManager implements SecretManager interfaces with
    // simple operations to apiserver.
    type simpleSecretManager struct {
    	kubeClient clientset.Interface
    }
    
    // NewSimpleSecretManager creates a new SecretManager instance.
    func NewSimpleSecretManager(kubeClient clientset.Interface) Manager {
    	return &simpleSecretManager{kubeClient: kubeClient}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/test/resources/pods.go

    }
    
    // Create creates a fake static pod using the provided client
    func (p *FakeStaticPod) Create(client clientset.Interface) error {
    	return p.CreateWithPodSuffix(client, "")
    }
    
    // CreateWithPodSuffix creates a fake static pod using the provided
    // client and suffix
    func (p *FakeStaticPod) CreateWithPodSuffix(client clientset.Interface, suffix string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  7. pkg/volume/util/resize_util_test.go

    		testFunc    func(*v1.PersistentVolumeClaim, clientset.Interface, resource.Quantity) (*v1.PersistentVolumeClaim, error)
    	}{
    		{
    			name:        "mark fs resize, with no other conditions",
    			pvc:         basePVC.get(),
    			expectedPVC: basePVC.withStorageResourceStatus(v1.PersistentVolumeClaimNodeResizePending).get(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/factory.go

    limitations under the License.
    */
    
    // Code generated by informer-gen. DO NOT EDIT.
    
    package externalversions
    
    import (
    	reflect "reflect"
    	sync "sync"
    	time "time"
    
    	clientset "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset"
    	apiextensions "k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/apiextensions"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 18:31:26 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_status_updater.go

    // using the supplied client and setLister.
    func NewRealStatefulSetStatusUpdater(
    	client clientset.Interface,
    	setLister appslisters.StatefulSetLister) StatefulSetStatusUpdaterInterface {
    	return &realStatefulSetStatusUpdater{client, setLister}
    }
    
    type realStatefulSetStatusUpdater struct {
    	client    clientset.Interface
    	setLister appslisters.StatefulSetLister
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 13 20:32:13 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/feature.go

    }
    
    func (o *FeatureOptions) ApplyTo(c *server.Config, clientset kubernetes.Interface, informers informers.SharedInformerFactory) error {
    	if o == nil {
    		return nil
    	}
    
    	c.EnableProfiling = o.EnableProfiling
    	c.DebugSocketPath = o.DebugSocketPath
    	c.EnableContentionProfiling = o.EnableContentionProfiling
    
    	if o.EnablePriorityAndFairness {
    		if clientset == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top