Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IsEligibleForHealthStatusUpdates (0.39 sec)

  1. pilot/pkg/autoregistration/internal/health/util.go

    // limitations under the License.
    
    package health
    
    import (
    	"istio.io/api/meta/v1alpha1"
    	"istio.io/istio/pilot/pkg/model/status"
    	"istio.io/istio/pkg/config"
    )
    
    // IsEligibleForHealthStatusUpdates returns true if a given WorkloadEntry
    // is allowed to receive health status updates sent by an Istio Proxy.
    //
    // Consider a workload eligible for health status updates as long as the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 07:04:17 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. pilot/pkg/autoregistration/controller.go

    				"however WorkloadEntry %s/%s is not found", proxy.Metadata.Namespace, proxy.Metadata.WorkloadEntry)
    		}
    		if health.IsEligibleForHealthStatusUpdates(wle) {
    			if err := ensureProxyCanControlEntry(proxy, wle); err != nil {
    				return err
    			}
    			entryName = wle.Name
    		}
    	}
    	if entryName == "" {
    		return nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
Back to top