Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for registerScope (0.4 sec)

  1. pilot/pkg/trustbundle/trustbundle.go

    	endpointMutex      sync.RWMutex
    	endpoints          []string
    	endpointUpdateChan chan struct{}
    	remoteCaCertPool   *x509.CertPool
    	meshConfig         mesh.Watcher
    }
    
    var (
    	trustBundleLog = log.RegisterScope("trustBundle", "Workload mTLS trust bundle logs")
    	remoteTimeout  = 10 * time.Second
    )
    
    // NewTrustBundle returns a new trustbundle
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. pilot/pkg/controllers/untaint/nodeuntainter.go

    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/kube/krt"
    	"istio.io/istio/pkg/kube/kubetypes"
    	istiolog "istio.io/istio/pkg/log"
    )
    
    var log = istiolog.RegisterScope("untaint", "CNI node-untaint controller")
    
    const (
    	TaintName = "cni.istio.io/not-ready"
    )
    
    var istioCniLabels = map[string]string{
    	"k8s-app": "istio-cni-node",
    }
    
    type NodeUntainter struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 00:50:31 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/ingress/status.go

    	kubelib "istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/log"
    	netutil "istio.io/istio/pkg/util/net"
    )
    
    var statusLog = log.RegisterScope("ingress status", "")
    
    // StatusSyncer keeps the status IP in each Ingress resource updated
    type StatusSyncer struct {
    	meshConfig mesh.Watcher
    
    	queue          controllers.Queue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. pkg/kube/krt/core.go

    // limitations under the License.
    
    package krt
    
    import (
    	"istio.io/istio/pkg/kube/controllers"
    	istiolog "istio.io/istio/pkg/log"
    )
    
    var log = istiolog.RegisterScope("krt", "")
    
    // Collection is the core resource type for krt, representing a collection of objects. Items can be listed, or fetched
    // directly. Most importantly, consumers can subscribe to events when objects change.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. security/pkg/server/ca/server.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/security/pkg/pki/ca"
    	caerror "istio.io/istio/security/pkg/pki/error"
    	"istio.io/istio/security/pkg/pki/util"
    )
    
    var serverCaLog = log.RegisterScope("serverca", "Citadel server log")
    
    // CertificateAuthority contains methods to be supported by a CA.
    type CertificateAuthority interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. pilot/pkg/config/monitor/monitor.go

    	getSnapshotFunc func() ([]*config.Config, error)
    	// channel to trigger updates on
    	// generally set to a file watch, but used in tests as well
    	updateCh chan struct{}
    }
    
    var log = istiolog.RegisterScope("monitor", "file configuration monitor")
    
    // NewMonitor creates a Monitor and will delegate to a passed in controller.
    // The controller holds a reference to the actual store.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. pkg/kube/controllers/common.go

    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/client-go/tools/cache"
    
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/gvk"
    	istiolog "istio.io/istio/pkg/log"
    )
    
    var log = istiolog.RegisterScope("controllers", "common controller logic")
    
    // Object is a union of runtime + meta objects. Essentially every k8s object meets this interface.
    // and certainly all that we care about.
    type Object interface {
    	metav1.Object
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 08:27:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. pkg/webhooks/validation/server/server.go

    	"istio.io/istio/pkg/config/schema/collection"
    	"istio.io/istio/pkg/config/schema/resource"
    	"istio.io/istio/pkg/config/validation"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/log"
    )
    
    var scope = log.RegisterScope("validationServer", "validation webhook server")
    
    var (
    	runtimeScheme = runtime.NewScheme()
    	codecs        = serializer.NewCodecFactory(runtimeScheme)
    	deserializer  = codecs.UniversalDeserializer()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 04 06:13:56 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top