Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for analyzeWebhooks (0.18 sec)

  1. operator/pkg/helmreconciler/reconciler.go

    		return nil, err
    	}
    	manifestMap, err := h.RenderCharts()
    	if err != nil {
    		return nil, err
    	}
    
    	err = h.analyzeWebhooks(manifestMap[name.PilotComponentName])
    	if err != nil {
    		if h.opts.Force {
    			scope.Error("invalid webhook configs; continuing because of --force")
    		} else {
    			return nil, err
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. istioctl/pkg/tag/tag.go

    	}
    	// Check the newly generated webhook does not conflict with existing ones.
    	resName := webhookName
    	if resName == "" {
    		resName = fmt.Sprintf("%s-%s", "istio-revision-tag", tagName)
    	}
    	if err := analyzeWebhook(resName, istioNS, tagWhYAML, revision, kubeClient.RESTConfig()); err != nil {
    		// if we have a conflict, we will fail. If --skip-confirmation is set, we will continue with a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top