Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for AddAuditAnnotation (0.21 sec)

  1. pkg/serviceaccount/claims.go

    		if nowTime.After(warnafter.Time()) {
    			secondsAfterWarn := nowTime.Unix() - warnafter.Time().Unix()
    			auditInfo := fmt.Sprintf("subject: %s, seconds after warning threshold: %d", public.Subject, secondsAfterWarn)
    			audit.AddAuditAnnotation(ctx, "authentication.k8s.io/stale-token", auditInfo)
    			staleTokensTotal.WithContext(ctx).Inc()
    		} else {
    			validTokensTotal.WithContext(ctx).Inc()
    		}
    	}
    
    	var jti string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    	}
    	if deprecated {
    		deprecatedRequestGauge.WithContext(req.Context()).WithLabelValues(group, version, resource, subresource, removedRelease).Set(1)
    		audit.AddAuditAnnotation(req.Context(), deprecatedAnnotationKey, "true")
    		if len(removedRelease) > 0 {
    			audit.AddAuditAnnotation(req.Context(), removedReleaseAnnotationKey, removedRelease)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
Back to top