Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 118 for auditID (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/lifecycle_signals.go

    	- long running requests are outside of this scope
    	- up-to 60s: the default value of 'ShutdownTimeout' is 60s, this means that
          any request in flight has a hard timeout of 60s.
    	- it's time to call 'Shutdown' on the audit events since all
    	  in flight request(s) have drained.
    
    
    The following is a sequence of shutdown events that we expect to see with
      'ShutdownSendRetryAfter' = true:
    
    T0: ShutdownInitiated: KILL signal received
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:30 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/meta/testrestmapper/test_restmapper.go

    	{Group: "apiextensions.k8s.io", Kind: "CustomResourceDefinition"}: true,
    
    	{Group: "apiserver.k8s.io", Kind: "AdmissionConfiguration"}: true,
    
    	{Group: "audit.k8s.io", Kind: "Event"}:  true,
    	{Group: "audit.k8s.io", Kind: "Policy"}: true,
    
    	{Group: "apiregistration.k8s.io", Kind: "APIService"}: true,
    
    	{Group: "metrics.k8s.io", Kind: "NodeMetrics"}: true,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 06 09:07:02 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. COMPLIANCE.md

    /blob/master/LICENSE).
    
    MinIO cannot make the determination as to whether your application's usage of MinIO is in compliance with the AGPLv3 license requirements. You should instead rely on your own legal counsel or licensing specialists to audit and ensure your application is in compliance with the licenses of MinIO and all other open-source projects with which your application integrates or interacts. We understand that AGPLv3 licensing is complex and nuanced. It is for that reason we strongly...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/options/validation_test.go

    				GenericServerRunOptions: &genericoptions.ServerRunOptions{},
    				Etcd:                    &genericoptions.EtcdOptions{},
    				SecureServing:           &genericoptions.SecureServingOptionsWithLoopback{},
    				Audit:                   &genericoptions.AuditOptions{},
    				Admission: &kubeoptions.AdmissionOptions{
    					GenericAdmission: &genericoptions.AdmissionOptions{
    						EnablePlugins: []string{"foo"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/register.go

    package v1
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // GroupName is the group name use in this package
    const GroupName = "audit.k8s.io"
    
    // SchemeGroupVersion is group version used to register these objects
    var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1"}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 30 07:56:39 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/audit/buffered/buffered_test.go

    	"sync"
    	"testing"
    	"time"
    
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    
    	"k8s.io/apimachinery/pkg/util/wait"
    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    	"k8s.io/apiserver/plugin/pkg/audit/fake"
    )
    
    var (
    	infiniteTimeCh <-chan time.Time
    )
    
    func newEvents(number int) []*auditinternal.Event {
    	events := make([]*auditinternal.Event, number)
    	for i := range events {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 14 17:20:35 UTC 2018
    - 5.9K bytes
    - Viewed (0)
  7. api/README

    compatibility.
    
    Starting with go1.19.txt, each API feature line must end in "#nnnnn"
    giving the GitHub issue number of the proposal issue that accepted
    the new API. This helps with our end-of-cycle audit of new APIs.
    The same requirement applies to next/* (described below), which will
    become a go1.XX.txt for XX >= 19.
    
    The next/ directory contains the only files intended to be mutated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:22:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/attributes_test.go

    limitations under the License.
    */
    
    package admission
    
    import (
    	"testing"
    
    	"github.com/stretchr/testify/assert"
    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    )
    
    func TestAddAnnotation(t *testing.T) {
    	attr := &attributesRecord{}
    
    	// test AddAnnotation
    	attr.AddAnnotation("foo.admission.k8s.io/key1", "value1")
    	attr.AddAnnotation("foo.admission.k8s.io/key2", "value2")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 19:44:40 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/plugin/authz/authorization.go

    	"istio.io/istio/pilot/pkg/networking"
    	"istio.io/istio/pilot/pkg/security/authz/builder"
    	"istio.io/istio/pilot/pkg/security/trustdomain"
    )
    
    type ActionType int
    
    const (
    	// Local for action ALLOW, DENY and AUDIT and is enforced by Envoy RBAC filter.
    	Local ActionType = iota
    	// Custom action is enforced by Envoy ext_authz filter.
    	Custom
    )
    
    type Builder struct {
    	// Lazy load
    	httpBuilt, tcpBuilt bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. internal/logger/legacy.go

    )
    
    // SetLoggerHTTPAudit - helper for migrating older config to newer KV format.
    func SetLoggerHTTPAudit(scfg config.Config, k string, args http.Config) {
    	if !args.Enabled {
    		// Do not enable audit targets, if not enabled
    		return
    	}
    	scfg[config.AuditWebhookSubSys][k] = config.KVS{
    		config.KV{
    			Key:   config.Enable,
    			Value: config.EnableOn,
    		},
    		config.KV{
    			Key:   Endpoint,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 03 09:47:07 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top