123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- /*
- Copyright 2016 The Kubernetes Authors.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package versioned
- import (
- "fmt"
- "strings"
- "k8s.io/api/core/v1"
- "k8s.io/apimachinery/pkg/runtime"
- "k8s.io/kubernetes/pkg/kubectl/generate"
- )
- // ResourceQuotaGeneratorV1 supports stable generation of a resource quota
- type ResourceQuotaGeneratorV1 struct {
- // The name of a quota object.
- Name string
- // The hard resource limit string before parsing.
- Hard string
- // The scopes of a quota object before parsing.
- Scopes string
- }
- // ParamNames returns the set of supported input parameters when using the parameter injection generator pattern
- func (g ResourceQuotaGeneratorV1) ParamNames() []generate.GeneratorParam {
- return []generate.GeneratorParam{
- {Name: "name", Required: true},
- {Name: "hard", Required: true},
- {Name: "scopes", Required: false},
- }
- }
- // Ensure it supports the generator pattern that uses parameter injection
- var _ generate.Generator = &ResourceQuotaGeneratorV1{}
- // Ensure it supports the generator pattern that uses parameters specified during construction
- var _ generate.StructuredGenerator = &ResourceQuotaGeneratorV1{}
- func (g ResourceQuotaGeneratorV1) Generate(genericParams map[string]interface{}) (runtime.Object, error) {
- err := generate.ValidateParams(g.ParamNames(), genericParams)
- if err != nil {
- return nil, err
- }
- params := map[string]string{}
- for key, value := range genericParams {
- strVal, isString := value.(string)
- if !isString {
- return nil, fmt.Errorf("expected string, saw %v for '%s'", value, key)
- }
- params[key] = strVal
- }
- delegate := &ResourceQuotaGeneratorV1{}
- delegate.Name = params["name"]
- delegate.Hard = params["hard"]
- delegate.Scopes = params["scopes"]
- return delegate.StructuredGenerate()
- }
- // StructuredGenerate outputs a ResourceQuota object using the configured fields
- func (g *ResourceQuotaGeneratorV1) StructuredGenerate() (runtime.Object, error) {
- if err := g.validate(); err != nil {
- return nil, err
- }
- resourceList, err := populateResourceListV1(g.Hard)
- if err != nil {
- return nil, err
- }
- scopes, err := parseScopes(g.Scopes)
- if err != nil {
- return nil, err
- }
- resourceQuota := &v1.ResourceQuota{}
- resourceQuota.Name = g.Name
- resourceQuota.Spec.Hard = resourceList
- resourceQuota.Spec.Scopes = scopes
- return resourceQuota, nil
- }
- // validate validates required fields are set to support structured generation
- func (r *ResourceQuotaGeneratorV1) validate() error {
- if len(r.Name) == 0 {
- return fmt.Errorf("name must be specified")
- }
- return nil
- }
- func parseScopes(spec string) ([]v1.ResourceQuotaScope, error) {
- // empty input gets a nil response to preserve generator test expected behaviors
- if spec == "" {
- return nil, nil
- }
- scopes := strings.Split(spec, ",")
- result := make([]v1.ResourceQuotaScope, 0, len(scopes))
- for _, scope := range scopes {
- // intentionally do not verify the scope against the valid scope list. This is done by the apiserver anyway.
- if scope == "" {
- return nil, fmt.Errorf("invalid resource quota scope \"\"")
- }
- result = append(result, v1.ResourceQuotaScope(scope))
- }
- return result, nil
- }
|