123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- /*
- 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"
- policy "k8s.io/api/policy/v1beta1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/runtime"
- "k8s.io/apimachinery/pkg/util/intstr"
- "k8s.io/kubernetes/pkg/kubectl/generate"
- )
- // PodDisruptionBudgetV1Generator supports stable generation of a pod disruption budget.
- type PodDisruptionBudgetV1Generator struct {
- Name string
- MinAvailable string
- Selector string
- }
- // Ensure it supports the generator pattern that uses parameters specified during construction.
- var _ generate.StructuredGenerator = &PodDisruptionBudgetV1Generator{}
- func (PodDisruptionBudgetV1Generator) ParamNames() []generate.GeneratorParam {
- return []generate.GeneratorParam{
- {Name: "name", Required: true},
- {Name: "min-available", Required: false},
- {Name: "selector", Required: true},
- }
- }
- func (s PodDisruptionBudgetV1Generator) Generate(params map[string]interface{}) (runtime.Object, error) {
- err := generate.ValidateParams(s.ParamNames(), params)
- if err != nil {
- return nil, err
- }
- name, isString := params["name"].(string)
- if !isString {
- return nil, fmt.Errorf("expected string, found %T for 'name'", params["name"])
- }
- minAvailable, isString := params["min-available"].(string)
- if !isString {
- return nil, fmt.Errorf("expected string, found %T for 'min-available'", params["min-available"])
- }
- selector, isString := params["selector"].(string)
- if !isString {
- return nil, fmt.Errorf("expected string, found %T for 'selector'", params["selector"])
- }
- delegate := &PodDisruptionBudgetV1Generator{Name: name, MinAvailable: minAvailable, Selector: selector}
- return delegate.StructuredGenerate()
- }
- // StructuredGenerate outputs a pod disruption budget object using the configured fields.
- func (s *PodDisruptionBudgetV1Generator) StructuredGenerate() (runtime.Object, error) {
- if len(s.MinAvailable) == 0 {
- // defaulting behavior seen in Kubernetes 1.6 and below.
- s.MinAvailable = "1"
- }
- if err := s.validate(); err != nil {
- return nil, err
- }
- selector, err := metav1.ParseToLabelSelector(s.Selector)
- if err != nil {
- return nil, err
- }
- minAvailable := intstr.Parse(s.MinAvailable)
- return &policy.PodDisruptionBudget{
- ObjectMeta: metav1.ObjectMeta{
- Name: s.Name,
- },
- Spec: policy.PodDisruptionBudgetSpec{
- MinAvailable: &minAvailable,
- Selector: selector,
- },
- }, nil
- }
- // validate validates required fields are set to support structured generation.
- func (s *PodDisruptionBudgetV1Generator) validate() error {
- if len(s.Name) == 0 {
- return fmt.Errorf("name must be specified")
- }
- if len(s.Selector) == 0 {
- return fmt.Errorf("a selector must be specified")
- }
- if len(s.MinAvailable) == 0 {
- return fmt.Errorf("the minimum number of available pods required must be specified")
- }
- return nil
- }
- // PodDisruptionBudgetV2Generator supports stable generation of a pod disruption budget.
- type PodDisruptionBudgetV2Generator struct {
- Name string
- MinAvailable string
- MaxUnavailable string
- Selector string
- }
- // Ensure it supports the generator pattern that uses parameters specified during construction.
- var _ generate.StructuredGenerator = &PodDisruptionBudgetV2Generator{}
- func (PodDisruptionBudgetV2Generator) ParamNames() []generate.GeneratorParam {
- return []generate.GeneratorParam{
- {Name: "name", Required: true},
- {Name: "min-available", Required: false},
- {Name: "max-unavailable", Required: false},
- {Name: "selector", Required: true},
- }
- }
- func (s PodDisruptionBudgetV2Generator) Generate(params map[string]interface{}) (runtime.Object, error) {
- err := generate.ValidateParams(s.ParamNames(), params)
- if err != nil {
- return nil, err
- }
- name, isString := params["name"].(string)
- if !isString {
- return nil, fmt.Errorf("expected string, found %T for 'name'", params["name"])
- }
- minAvailable, isString := params["min-available"].(string)
- if !isString {
- return nil, fmt.Errorf("expected string, found %T for 'min-available'", params["min-available"])
- }
- maxUnavailable, isString := params["max-unavailable"].(string)
- if !isString {
- return nil, fmt.Errorf("expected string, found %T for 'max-unavailable'", params["max-unavailable"])
- }
- selector, isString := params["selector"].(string)
- if !isString {
- return nil, fmt.Errorf("expected string, found %T for 'selector'", params["selector"])
- }
- delegate := &PodDisruptionBudgetV2Generator{Name: name, MinAvailable: minAvailable, MaxUnavailable: maxUnavailable, Selector: selector}
- return delegate.StructuredGenerate()
- }
- // StructuredGenerate outputs a pod disruption budget object using the configured fields.
- func (s *PodDisruptionBudgetV2Generator) StructuredGenerate() (runtime.Object, error) {
- if err := s.validate(); err != nil {
- return nil, err
- }
- selector, err := metav1.ParseToLabelSelector(s.Selector)
- if err != nil {
- return nil, err
- }
- if len(s.MaxUnavailable) > 0 {
- maxUnavailable := intstr.Parse(s.MaxUnavailable)
- return &policy.PodDisruptionBudget{
- ObjectMeta: metav1.ObjectMeta{
- Name: s.Name,
- },
- Spec: policy.PodDisruptionBudgetSpec{
- MaxUnavailable: &maxUnavailable,
- Selector: selector,
- },
- }, nil
- }
- if len(s.MinAvailable) > 0 {
- minAvailable := intstr.Parse(s.MinAvailable)
- return &policy.PodDisruptionBudget{
- ObjectMeta: metav1.ObjectMeta{
- Name: s.Name,
- },
- Spec: policy.PodDisruptionBudgetSpec{
- MinAvailable: &minAvailable,
- Selector: selector,
- },
- }, nil
- }
- return nil, err
- }
- // validate validates required fields are set to support structured generation.
- func (s *PodDisruptionBudgetV2Generator) validate() error {
- if len(s.Name) == 0 {
- return fmt.Errorf("name must be specified")
- }
- if len(s.Selector) == 0 {
- return fmt.Errorf("a selector must be specified")
- }
- if len(s.MaxUnavailable) == 0 && len(s.MinAvailable) == 0 {
- return fmt.Errorf("one of min-available or max-unavailable must be specified")
- }
- if len(s.MaxUnavailable) > 0 && len(s.MinAvailable) > 0 {
- return fmt.Errorf("min-available and max-unavailable cannot be both specified")
- }
- return nil
- }
|