Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for Messages (0.12 sec)

  1. common-protos/k8s.io/api/admission/v1/generated.proto

      // the admission webhook to add additional context to the audit log for this request.
      // +optional
      map<string, string> auditAnnotations = 6;
    
      // warnings is a list of warning messages to return to the requesting API client.
      // Warning messages describe a problem the client making the API request should correct or be aware of.
      // Limit warnings to 120 characters if possible.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/admission/v1beta1/generated.proto

      // the admission webhook to add additional context to the audit log for this request.
      // +optional
      map<string, string> auditAnnotations = 6;
    
      // warnings is a list of warning messages to return to the requesting API client.
      // Warning messages describe a problem the client making the API request should correct or be aware of.
      // Limit warnings to 120 characters if possible.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // singularResource is the singular name of the resource.  This allows clients to handle plural and singular opaquely.
      // For many clients the singular form of the resource will be more understandable to users reading messages and should be used when integrating the name of the resource into a sentence.
      // The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/rbac/v1beta1/generated.proto

    message RoleList {
      // Standard object's metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of Roles
      repeated Role items = 2;
    }
    
    // RoleRef contains information that points to the role being used
    message RoleRef {
      // APIGroup is the group for the resource being referenced
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

    }
    
    // IPAddressSpec describe the attributes in an IP Address.
    message IPAddressSpec {
      // ParentRef references the resource that an IPAddress is attached to.
      // An IPAddress must reference a parent object.
      // +required
      optional ParentReference parentRef = 1;
    }
    
    // ParentReference describes a reference to a parent object.
    message ParentReference {
      // Group is the group of the object being referenced.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/multicluster/service.go

    			for _, r := range clusterServices {
    				if r != nil {
    					serviceInstance = r
    					break
    				}
    			}
    			message := msg.NewMultiClusterInconsistentService(serviceInstance, fullname.Name.String(),
    				fullname.Namespace.String(), inconsistents, errors)
    
    			c.Report(gvk.Service, message)
    		}
    	}
    }
    
    func findInconsistencies(services map[cluster.ID]*resource.Instance) (clusters []string, errors string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. cni/pkg/log/uds_test.go

    			cniLog{
    				Level:     "info",
    				Time:      *wantT,
    				Msg:       "my message",
    				Arbitrary: nil,
    			},
    		},
    		{
    			"with keys",
    			`{"level":"info","time":"2020-01-01T00:00:00.356374Z","msg":"my message","key":"string value","bar":2}`,
    			cniLog{
    				Level: "info",
    				Time:  *wantT,
    				Msg:   "my message",
    				Arbitrary: map[string]any{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:28 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/schema/validation_test.go

    		ctx := &fixtures.Context{
    			Resources: []*resource.Instance{
    				{
    					Message: m1,
    				},
    			},
    		}
    		a.Analyze(ctx)
    		g.Expect(ctx.Reports).To(BeEmpty())
    	})
    
    	t.Run("SingleError", func(t *testing.T) {
    		g := NewWithT(t)
    
    		ctx := &fixtures.Context{
    			Resources: []*resource.Instance{
    				{
    					Message: m2,
    					Origin:  fakeOrigin{},
    				},
    			},
    		}
    		a.Analyze(ctx)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/coordination/v1/generated.proto

    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/coordination/v1";
    
    // Lease defines a lease concept.
    message Lease {
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/batch/v1beta1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/batch/v1beta1";
    
    // CronJob represents the configuration of a single cron job.
    message CronJob {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top