Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 191 for clustertrustbundles (0.43 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/certificates.k8s.io.v1alpha1.ClusterTrustBundle.yaml

    apiVersion: certificates.k8s.io/v1alpha1
    kind: ClusterTrustBundle
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 946 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/certificates.k8s.io.v1alpha1.ClusterTrustBundle.yaml

    apiVersion: certificates.k8s.io/v1alpha1
    kind: ClusterTrustBundle
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 946 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

    // ClusterTrustBundleProjection describes how to select a set of
    // ClusterTrustBundle objects and project their contents into the pod
    // filesystem.
    message ClusterTrustBundleProjection {
      // Select a single ClusterTrustBundle by object name.  Mutually-exclusive
      // with signerName and labelSelector.
      // +optional
      optional string name = 1;
    
      // Select all ClusterTrustBundles that match this signer name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// Select all ClusterTrustBundles that match this signer name.
    	// Mutually-exclusive with name.  The contents of all selected
    	// ClusterTrustBundles will be unified and deduplicated.
    	// +optional
    	SignerName *string `json:"signerName,omitempty" protobuf:"bytes,2,rep,name=signerName"`
    
    	// Select all ClusterTrustBundles that match this label selector.  Only has
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    			return nil, fmt.Errorf("while starting informer-based ClusterTrustBundle manager: %w", err)
    		}
    		kubeInformers.Start(wait.NeverStop)
    		klog.InfoS("Started ClusterTrustBundle informer")
    	} else {
    		// In static kubelet mode, use a no-op manager.
    		clusterTrustBundleManager = &clustertrustbundle.NoopManager{}
    		klog.InfoS("Not starting ClusterTrustBundle informer because we are in static kubelet mode")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. pkg/apis/certificates/v1alpha1/zz_generated.conversion.go

    func RegisterConversions(s *runtime.Scheme) error {
    	if err := s.AddGeneratedConversionFunc((*v1alpha1.ClusterTrustBundle)(nil), (*certificates.ClusterTrustBundle)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1alpha1_ClusterTrustBundle_To_certificates_ClusterTrustBundle(a.(*v1alpha1.ClusterTrustBundle), b.(*certificates.ClusterTrustBundle), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

              "name": {
                "description": "Select a single ClusterTrustBundle by object name.  Mutually-exclusive with signerName and labelSelector.",
                "type": "string"
              },
              "optional": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/certificates/v1alpha1/zz_generated.deepcopy.go

    func (in *ClusterTrustBundle) DeepCopyInto(out *ClusterTrustBundle) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	out.Spec = in.Spec
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterTrustBundle.
    func (in *ClusterTrustBundle) DeepCopy() *ClusterTrustBundle {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. pkg/registry/certificates/clustertrustbundle/strategy_test.go

    limitations under the License.
    */
    
    package clustertrustbundle
    
    import (
    	"context"
    	"testing"
    
    	"k8s.io/kubernetes/pkg/apis/certificates"
    )
    
    func TestWarningsOnCreate(t *testing.T) {
    	if warnings := Strategy.WarningsOnCreate(context.Background(), &certificates.ClusterTrustBundle{}); warnings != nil {
    		t.Errorf("Got %v, want nil", warnings)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:18 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    // ClusterTrustBundleProjection allows a pod to access the
    // `.spec.trustBundle` field of a ClusterTrustBundle object in an auto-updating
    // file.
    type ClusterTrustBundleProjection struct {
    	// Select a single ClusterTrustBundle by object name.   Mutually-exclusive
    	// with SignerName and LabelSelector.
    	Name *string
    
    	// Select all ClusterTrustBundles for this signer that match LabelSelector.
    	// Mutually-exclusive with Name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top