runasany.go 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. Copyright 2016 The Kubernetes Authors.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package group
  14. import (
  15. "k8s.io/apimachinery/pkg/util/validation/field"
  16. api "k8s.io/kubernetes/pkg/apis/core"
  17. )
  18. // runAsAny implements the GroupStrategy interface.
  19. type runAsAny struct {
  20. }
  21. var _ GroupStrategy = &runAsAny{}
  22. // NewRunAsAny provides a new RunAsAny strategy.
  23. func NewRunAsAny() (GroupStrategy, error) {
  24. return &runAsAny{}, nil
  25. }
  26. // Generate creates the group based on policy rules. This strategy returns an empty slice.
  27. func (s *runAsAny) Generate(_ *api.Pod) ([]int64, error) {
  28. return nil, nil
  29. }
  30. // Generate a single value to be applied. This is used for FSGroup. This strategy returns nil.
  31. func (s *runAsAny) GenerateSingle(_ *api.Pod) (*int64, error) {
  32. return nil, nil
  33. }
  34. // Validate ensures that the specified values fall within the range of the strategy.
  35. func (s *runAsAny) Validate(fldPath *field.Path, _ *api.Pod, groups []int64) field.ErrorList {
  36. return field.ErrorList{}
  37. }