Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 191 for clustertrustbundles (8.16 sec)

  1. pkg/apis/core/validation/names.go

    }
    
    // ValidateClusterTrustBundleName checks that a ClusterTrustBundle name conforms
    // to the rules documented on the type.
    func ValidateClusterTrustBundleName(signerName string) func(name string, prefix bool) []string {
    	return func(name string, isPrefix bool) []string {
    		if signerName == "" {
    			if strings.Contains(name, ":") {
    				return []string{"ClusterTrustBundle without signer name must not have \":\" in its name"}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. pkg/apis/certificates/v1alpha1/conversion.go

    package v1alpha1
    
    import (
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    func addConversionFuncs(scheme *runtime.Scheme) error {
    	return scheme.AddFieldLabelConversionFunc(
    		SchemeGroupVersion.WithKind("ClusterTrustBundle"),
    		func(label, value string) (string, string, error) {
    			switch label {
    			case "metadata.name", "spec.signerName":
    				return label, value, nil
    			default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:18 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. pkg/kubelet/config/common.go

    	pod.Status.Phase = api.PodPending
    	return nil
    }
    
    type defaultFunc func(pod *api.Pod) error
    
    // A static pod tried to use a ClusterTrustBundle projected volume source.
    var ErrStaticPodTriedToUseClusterTrustBundle = errors.New("static pods may not use ClusterTrustBundle projected volume sources")
    
    // tryDecodeSinglePod takes data and tries to extract valid Pod config information from it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

        },
        "io.k8s.api.certificates.v1alpha1.ClusterTrustBundle": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/certificates/v1alpha1/register.go

    	AddToScheme = localSchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&ClusterTrustBundle{},
    		&ClusterTrustBundleList{},
    	)
    
    	// Add the watch version that applies
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:18 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. pkg/kubelet/volume_host.go

    	clientset "k8s.io/client-go/kubernetes"
    	storagelisters "k8s.io/client-go/listers/storage/v1"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/client-go/tools/record"
    	"k8s.io/kubernetes/pkg/kubelet/clustertrustbundle"
    	"k8s.io/kubernetes/pkg/kubelet/configmap"
    	"k8s.io/kubernetes/pkg/kubelet/secret"
    	"k8s.io/kubernetes/pkg/kubelet/token"
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/util"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. pkg/kubelet/runonce_test.go

    	"k8s.io/client-go/kubernetes/fake"
    	"k8s.io/client-go/tools/record"
    	utiltesting "k8s.io/client-go/util/testing"
    	cadvisortest "k8s.io/kubernetes/pkg/kubelet/cadvisor/testing"
    	"k8s.io/kubernetes/pkg/kubelet/clustertrustbundle"
    	"k8s.io/kubernetes/pkg/kubelet/cm"
    	"k8s.io/kubernetes/pkg/kubelet/configmap"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	containertest "k8s.io/kubernetes/pkg/kubelet/container/testing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 06:59:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__apps__v1_openapi.json

              },
              "optional": {
                "description": "If true, don't block pod startup if the referenced ClusterTrustBundle(s) aren't available.  If using name, then the named ClusterTrustBundle is allowed not to exist.  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles.",
                "type": "boolean"
              },
              "path": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  9. pkg/apis/certificates/register.go

    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&CertificateSigningRequest{},
    		&CertificateSigningRequestList{},
    		&ClusterTrustBundle{},
    		&ClusterTrustBundleList{},
    	)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. pkg/volume/projected/projected_test.go

    		fsUser  *int64
    		fsGroup *int64
    
    		wantPayload map[string]util.FileProjection
    		wantErr     error
    	}{
    		{
    			name: "single ClusterTrustBundle by name",
    			source: v1.ProjectedVolumeSource{
    				Sources: []v1.VolumeProjection{
    					{
    						ClusterTrustBundle: &v1.ClusterTrustBundleProjection{
    							Name: utilptr.String("foo"),
    							Path: "bundle.pem",
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 40.5K bytes
    - Viewed (0)
Back to top