2015-01-06 16:44:43 +00:00
|
|
|
/*
|
|
|
|
Copyright 2014 Google Inc. All rights reserved.
|
|
|
|
|
|
|
|
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 deny
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"io"
|
2015-01-06 20:16:13 +00:00
|
|
|
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/admission"
|
|
|
|
apierrors "github.com/GoogleCloudPlatform/kubernetes/pkg/api/errors"
|
2015-01-06 16:44:43 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
admission.RegisterPlugin("AlwaysDeny", func(config io.Reader) (admission.Interface, error) { return NewAlwaysDeny(), nil })
|
|
|
|
}
|
|
|
|
|
|
|
|
// alwaysDeny is an implementation of admission.Interface which always says no to an admission request.
|
|
|
|
// It is useful in unit tests to force an operation to be forbidden.
|
|
|
|
type alwaysDeny struct{}
|
|
|
|
|
|
|
|
func (alwaysDeny) Admit(a admission.Attributes) (err error) {
|
2015-01-06 20:16:13 +00:00
|
|
|
return apierrors.NewConflict(a.GetKind(), "", errors.New("No changes allowed"))
|
2015-01-06 16:44:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewAlwaysDeny() admission.Interface {
|
|
|
|
return new(alwaysDeny)
|
|
|
|
}
|