Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 273 for auditID (0.16 sec)

  1. cluster/gce/manifests/kube-apiserver.manifest

            "readOnly": true},
            { "name": "logfile",
            "mountPath": "/var/log/kube-apiserver.log",
            "readOnly": false},
            { "name": "auditlogfile",
            "mountPath": "/var/log/kube-apiserver-audit.log",
            "readOnly": false},
            { "name": "etcssl",
            "mountPath": "/etc/ssl",
            "readOnly": true},
            { "name": "usrsharecacerts",
            "mountPath": "/usr/share/ca-certificates",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/validator_test.go

    					t.Errorf("Expected policy audit annotation action '%v' but got '%v'", auditAnnotation.Action, actual.Action)
    				}
    				if auditAnnotation.Error != actual.Error {
    					t.Errorf("Expected audit annotation error '%v' but got '%v'", auditAnnotation.Error, actual.Error)
    				}
    				if auditAnnotation.Value != actual.Value {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    	endpointsrequest "k8s.io/apiserver/pkg/endpoints/request"
    	webhookutil "k8s.io/apiserver/pkg/util/webhook"
    	"k8s.io/apiserver/pkg/warning"
    	"k8s.io/component-base/tracing"
    	"k8s.io/klog/v2"
    )
    
    const (
    	// PatchAuditAnnotationPrefix is a prefix for persisting webhook patch in audit annotation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/x509metrics/server_cert_deprecations_test.go

    	"encoding/pem"
    	"fmt"
    	"net"
    	"net/http"
    	"net/http/httptest"
    	"net/url"
    	"reflect"
    	"testing"
    
    	"github.com/stretchr/testify/require"
    	auditapi "k8s.io/apiserver/pkg/apis/audit"
    	"k8s.io/apiserver/pkg/audit"
    	"k8s.io/component-base/metrics"
    	"k8s.io/component-base/metrics/testutil"
    )
    
    // taken from pkg/util/webhook/certs_test.go
    var caCert = []byte(`-----BEGIN CERTIFICATE-----
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/types.go

    	Warn ValidationAction = "Warn"
    	// Audit specifies that a validation failure is included in the published
    	// audit event for the request. The audit event will contain a
    	// `validation.policy.admission.k8s.io/validation_failure` audit annotation
    	// with a value containing the details of the validation failure.
    	Audit ValidationAction = "Audit"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/builder_test.go

    		},
    		{
    			name:  "allow-path",
    			input: "allow-path-in.yaml",
    			want:  []string{"allow-path-out.yaml"},
    		},
    		{
    			name:  "audit-full-rule",
    			input: "audit-full-rule-in.yaml",
    			want:  []string{"audit-full-rule-out.yaml"},
    		},
    		{
    			name:       "custom-grpc-provider-no-namespace",
    			meshConfig: meshConfigGRPCNoNamespace,
    			input:      "custom-simple-http-in.yaml",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/devel.usertools/wheel_verification.bats

    }
    
    teardown_file() {
        rm -rf /tf/venv
    }
    
    @test "Wheel is manylinux2014 (manylinux_2_17) compliant" {
        python3 -m auditwheel show "$TF_WHEEL" > audit.txt
        grep --quiet -zoP 'is consistent with the following platform tag:\n"manylinux_2_17_(aarch|x86_)64"\.' audit.txt
    }
    
    @test "Wheel conforms to upstream size limitations" {
        WHEEL_MEGABYTES=$(stat --format %s "$TF_WHEEL" | awk '{print int($1/(1024*1024))}')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. internal/logger/config.go

    	"github.com/minio/minio/internal/logger/target/http"
    	"github.com/minio/minio/internal/logger/target/kafka"
    )
    
    // Console logger target
    type Console struct {
    	Enabled bool `json:"enabled"`
    }
    
    // Audit/Logger constants
    const (
    	Endpoint   = "endpoint"
    	AuthToken  = "auth_token"
    	ClientCert = "client_cert"
    	ClientKey  = "client_key"
    	BatchSize  = "batch_size"
    	QueueSize  = "queue_size"
    	QueueDir   = "queue_dir"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/attributes.go

    import (
    	"fmt"
    	"strings"
    	"sync"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/validation"
    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    	"k8s.io/apiserver/pkg/authentication/user"
    )
    
    type attributesRecord struct {
    	kind        schema.GroupVersionKind
    	namespace   string
    	name        string
    	resource    schema.GroupVersionResource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 07 17:53:14 UTC 2019
    - 6.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/filters/metrics_test.go

    			defer authorizationAttemptsCounter.Reset()
    
    			audit := &auditinternal.Event{Level: auditinternal.LevelMetadata}
    			handler := WithAuthorization(&fakeHTTPHandler{}, tt.authorizer, negotiatedSerializer)
    			// TODO: fake audit injector
    
    			req, _ := http.NewRequest("GET", "/api/v1/namespaces/default/pods", nil)
    			req = withTestContext(req, nil, audit)
    			req.RemoteAddr = "127.0.0.1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 20 13:35:55 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top