Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for webhookinit (0.24 sec)

  1. pkg/controlplane/apiserver/admission/config.go

    limitations under the License.
    */
    
    package admission
    
    import (
    	"net/http"
    
    	"go.opentelemetry.io/otel/trace"
    
    	"k8s.io/apiserver/pkg/admission"
    	webhookinit "k8s.io/apiserver/pkg/admission/plugin/webhook/initializer"
    	egressselector "k8s.io/apiserver/pkg/server/egressselector"
    	"k8s.io/apiserver/pkg/util/webhook"
    	externalinformers "k8s.io/client-go/informers"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    	configValidationReady atomic.Bool
    }
    
    type webhookInfo struct {
    	mu sync.RWMutex
    	wh *inject.Webhook
    }
    
    func (w *webhookInfo) GetTemplates() map[string]string {
    	w.mu.RLock()
    	defer w.mu.RUnlock()
    	if w.wh != nil {
    		return w.wh.Config.RawTemplates
    	}
    	return map[string]string{}
    }
    
    func (w *webhookInfo) getWebhookConfig() inject.WebhookConfig {
    	w.mu.RLock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/configcontroller.go

    							tagWatcher := revisions.NewTagWatcher(s.kubeClient, args.Revision)
    							controller := gateway.NewDeploymentController(s.kubeClient, s.clusterID, s.environment,
    								s.webhookInfo.getWebhookConfig, s.webhookInfo.addHandler, tagWatcher, args.Revision)
    							// Start informers again. This fixes the case where informers for namespace do not start,
    							// as we create them only after acquiring the leader lock
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top