Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for podtolerationrestriction (0.39 sec)

  1. plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction/v1alpha1/doc.go

    // +k8s:conversion-gen=k8s.io/kubernetes/plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction
    // +k8s:defaulter-gen=TypeMeta
    // +groupName=podtolerationrestriction.admission.k8s.io
    
    // Package v1alpha1 is the v1alpha1 version of the API.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 14 03:27:32 UTC 2018
    - 993 bytes
    - Viewed (0)
  2. plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // +k8s:deepcopy-gen=package
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 10 17:25:26 UTC 2017
    - 740 bytes
    - Viewed (0)
  3. plugin/pkg/admission/podtolerationrestriction/doc.go

    // scheduler.alpha.kubernetes.io/defaultTolerations and
    // scheduler.alpha.kubernetes.io/tolerationsWhitelist annotations
    // keys.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 18:00:06 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  4. plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction/v1alpha1/zz_generated.conversion.go

    	v1 "k8s.io/api/core/v1"
    	conversion "k8s.io/apimachinery/pkg/conversion"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	core "k8s.io/kubernetes/pkg/apis/core"
    	podtolerationrestriction "k8s.io/kubernetes/plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction"
    )
    
    func init() {
    	localSchemeBuilder.Register(RegisterConversions)
    }
    
    // RegisterConversions adds conversion functions to the given scheme.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  5. plugin/pkg/admission/podtolerationrestriction/config.go

    limitations under the License.
    */
    
    package podtolerationrestriction
    
    import (
    	"fmt"
    	"io"
    	"io/ioutil"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/serializer"
    	internalapi "k8s.io/kubernetes/plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction"
    	"k8s.io/kubernetes/plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction/install"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 08 22:33:50 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  6. plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction/validation/validation_test.go

    limitations under the License.
    */
    
    package validation
    
    import (
    	"testing"
    
    	api "k8s.io/kubernetes/pkg/apis/core"
    	internalapi "k8s.io/kubernetes/plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction"
    )
    
    func TestValidateConfiguration(t *testing.T) {
    
    	tests := []struct {
    		config     internalapi.Configuration
    		testName   string
    		testStatus bool
    	}{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction/install/install.go

    import (
    	"k8s.io/apimachinery/pkg/runtime"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	internalapi "k8s.io/kubernetes/plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction"
    	versionedapi "k8s.io/kubernetes/plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction/v1alpha1"
    )
    
    // Install registers the API group and adds types to a scheme
    func Install(scheme *runtime.Scheme) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 08 22:33:50 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  8. plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction/register.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package podtolerationrestriction
    
    import (
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // GroupName is the group name use in this package
    const GroupName = "podtolerationrestriction.admission.k8s.io"
    
    // SchemeGroupVersion is group version used to register these objects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 18:00:06 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  9. plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction/validation/validation.go

    	"k8s.io/kubernetes/pkg/apis/core/validation"
    	internalapi "k8s.io/kubernetes/plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction"
    )
    
    // ValidateConfiguration validates the configuration.
    func ValidateConfiguration(config *internalapi.Configuration) error {
    	allErrs := field.ErrorList{}
    	fldpath := field.NewPath("podtolerationrestriction")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 09 11:14:08 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  10. plugin/pkg/admission/podtolerationrestriction/admission.go

    	k8s_api_v1 "k8s.io/kubernetes/pkg/apis/core/v1"
    	"k8s.io/kubernetes/pkg/util/tolerations"
    	pluginapi "k8s.io/kubernetes/plugin/pkg/admission/podtolerationrestriction/apis/podtolerationrestriction"
    )
    
    // PluginName is a string with the name of the plugin
    const PluginName = "PodTolerationRestriction"
    
    // Register registers a plugin
    func Register(plugins *admission.Plugins) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 29 20:07:59 UTC 2020
    - 8.3K bytes
    - Viewed (0)
Back to top