Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for kmsservice (0.31 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    	"k8s.io/apiserver/pkg/storage/value/encrypt/identity"
    	"k8s.io/apiserver/pkg/storage/value/encrypt/secretbox"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/klog/v2"
    	kmsservice "k8s.io/kms/pkg/service"
    )
    
    const (
    	aesCBCTransformerPrefixV1    = "k8s:enc:aescbc:v1:"
    	aesGCMTransformerPrefixV1    = "k8s:enc:aesgcm:v1:"
    	secretboxTransformerPrefixV1 = "k8s:enc:secretbox:v1:"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/sds/sdsservice.go

    )
    
    var sdsServiceLog = log.RegisterScope("sds", "SDS service debugging")
    
    type sdsservice struct {
    	st security.SecretManager
    
    	stop       chan struct{}
    	rootCaPath string
    	pkpConf    *mesh.PrivateKeyProvider
    
    	sync.Mutex
    	clients map[string]*Context
    }
    
    type Context struct {
    	BaseConnection xds.Connection
    	s              *sdsservice
    	w              *Watch
    }
    
    type Watch struct {
    	sync.Mutex
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/controller.go

    	for _, se := range c.exports.ExportedServices() {
    		mcsService := outMap[se.namespacedName]
    		mcsService.Cluster = c.Cluster()
    		mcsService.Name = se.namespacedName.Name
    		mcsService.Namespace = se.namespacedName.Namespace
    		mcsService.Exported = true
    		mcsService.Discoverability = se.discoverability
    		outMap[se.namespacedName] = mcsService
    	}
    
    	// Add the ServiceImport info.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    		mcsService = ic.genMCSService(realService, mcsHost, ips)
    	} else {
    		if event == model.EventDelete || len(ips) == 0 {
    			ic.deleteService(mcsService)
    			return nil
    		}
    
    		// The service already existed. Treat it as an update.
    		event = model.EventUpdate
    		mcsService = mcsService.DeepCopy()
    		if ic.updateIPs(mcsService, ips) {
    			needsFullPush = true
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    		DNSIP: "10.233.0.3",
    	})
    	type args struct {
    		dnsService   *v1.Service
    		serviceBytes []byte
    	}
    	tests := []struct {
    		name    string
    		args    args
    		wantErr bool
    	}{
    		{
    			name: "dnsService and serviceBytes are nil",
    			args: args{
    				dnsService:   nil,
    				serviceBytes: nil,
    			},
    			wantErr: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/addons/dns/dns.go

    	}
    
    	coreDNSService := &v1.Service{}
    	return createDNSService(coreDNSService, serviceBytes, client)
    }
    
    func createDNSService(dnsService *v1.Service, serviceBytes []byte, client clientset.Interface) error {
    	if err := kuberuntime.DecodeInto(clientsetscheme.Codecs.UniversalDecoder(), serviceBytes, dnsService); err != nil {
    		return errors.Wrap(err, "unable to decode the DNS service")
    	}
    
    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. pkg/istio-agent/agent.go

    const (
    	DrainLifecycleEvent LifecycleEvent = "drain"
    	ExitLifecycleEvent  LifecycleEvent = "exit"
    )
    
    type SDSService interface {
    	OnSecretUpdate(resourceName string)
    	Stop()
    }
    
    type SDSServiceFactory = func(_ *security.Options, _ security.SecretManager, _ *mesh.PrivateKeyProvider) SDSService
    
    // Shared properties with Pilot Proxy struct.
    type Proxy struct {
    	ID          string
    	IPAddresses []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

         * <p>
         * Values for the requested Credentials type will be sourced from the project's properties using the pattern "identity" + credentials field.
         * For example, {@link PasswordCredentials} provider with identity "myService" will look for properties named "myServiceUsername" and "myServicePassword".
         *
         * <p>
         * The following credential types are currently supported:
         * <ul>
         * <li>{@link PasswordCredentials}</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. pilot/pkg/model/service.go

    // are modeled like this
    //
    //	--> IstioEndpoint(172.16.0.1:8888), Service(catalog.myservice.com), Labels(foo=bar)
    //	--> IstioEndpoint(172.16.0.2:8888), Service(catalog.myservice.com), Labels(foo=bar)
    //	--> IstioEndpoint(172.16.0.3:8888), Service(catalog.myservice.com), Labels(kitty=cat)
    //	--> IstioEndpoint(172.16.0.4:8888), Service(catalog.myservice.com), Labels(kitty=cat)
    type ServiceInstance struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. pkg/istio-agent/agent_test.go

    		XdsUdsPath:            filepath.Join(d, "XDS"),
    		ServiceNode:           proxy.ServiceNode(),
    		SDSFactory: func(options *security.Options, workloadSecretCache security.SecretManager, pkpConf *meshconfig.PrivateKeyProvider) SDSService {
    			return sds.NewServer(options, workloadSecretCache, pkpConf)
    		},
    	}
    
    	// Set-up envoy defaults
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top