604dd5b0c9
Change-Id: I3fd5bc4b62d26c7e6d118ba08b6c001c871fcbd3 Implements: blueprint service-controller-test Signed-off-by: mozhuli <21621232@zju.edu.cn>
96 lines
3.9 KiB
Protocol Buffer
96 lines
3.9 KiB
Protocol Buffer
/*
|
|
Copyright 2017 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.
|
|
*/
|
|
|
|
|
|
// This file was autogenerated by go-to-protobuf. Do not edit it manually!
|
|
|
|
syntax = 'proto2';
|
|
|
|
package k8s.io.api.admission.v1alpha1;
|
|
|
|
import "k8s.io/api/authentication/v1/generated.proto";
|
|
import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto";
|
|
import "k8s.io/apimachinery/pkg/runtime/generated.proto";
|
|
import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
|
|
import "k8s.io/apimachinery/pkg/util/intstr/generated.proto";
|
|
|
|
// Package-wide variables from generator "generated".
|
|
option go_package = "v1alpha1";
|
|
|
|
// AdmissionReview describes an admission request.
|
|
message AdmissionReview {
|
|
// Spec describes the attributes for the admission request.
|
|
// Since this admission controller is non-mutating the webhook should avoid setting this in its response to avoid the
|
|
// cost of deserializing it.
|
|
// +optional
|
|
optional AdmissionReviewSpec spec = 1;
|
|
|
|
// Status is filled in by the webhook and indicates whether the admission request should be permitted.
|
|
// +optional
|
|
optional AdmissionReviewStatus status = 2;
|
|
}
|
|
|
|
// AdmissionReviewSpec describes the admission.Attributes for the admission request.
|
|
message AdmissionReviewSpec {
|
|
// Kind is the type of object being manipulated. For example: Pod
|
|
optional k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionKind kind = 1;
|
|
|
|
// Object is the object from the incoming request prior to default values being applied
|
|
optional k8s.io.apimachinery.pkg.runtime.RawExtension object = 2;
|
|
|
|
// OldObject is the existing object. Only populated for UPDATE requests.
|
|
// +optional
|
|
optional k8s.io.apimachinery.pkg.runtime.RawExtension oldObject = 3;
|
|
|
|
// Operation is the operation being performed
|
|
optional string operation = 4;
|
|
|
|
// Name is the name of the object as presented in the request. On a CREATE operation, the client may omit name and
|
|
// rely on the server to generate the name. If that is the case, this method will return the empty string.
|
|
// +optional
|
|
optional string name = 5;
|
|
|
|
// Namespace is the namespace associated with the request (if any).
|
|
// +optional
|
|
optional string namespace = 6;
|
|
|
|
// Resource is the name of the resource being requested. This is not the kind. For example: pods
|
|
optional k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionResource resource = 7;
|
|
|
|
// SubResource is the name of the subresource being requested. This is a different resource, scoped to the parent
|
|
// resource, but it may have a different kind. For instance, /pods has the resource "pods" and the kind "Pod", while
|
|
// /pods/foo/status has the resource "pods", the sub resource "status", and the kind "Pod" (because status operates on
|
|
// pods). The binding resource for a pod though may be /pods/foo/binding, which has resource "pods", subresource
|
|
// "binding", and kind "Binding".
|
|
// +optional
|
|
optional string subResource = 8;
|
|
|
|
// UserInfo is information about the requesting user
|
|
optional k8s.io.api.authentication.v1.UserInfo userInfo = 9;
|
|
}
|
|
|
|
// AdmissionReviewStatus describes the status of the admission request.
|
|
message AdmissionReviewStatus {
|
|
// Allowed indicates whether or not the admission request was permitted.
|
|
optional bool allowed = 1;
|
|
|
|
// Result contains extra details into why an admission request was denied.
|
|
// This field IS NOT consulted in any way if "Allowed" is "true".
|
|
// +optional
|
|
optional k8s.io.apimachinery.pkg.apis.meta.v1.Status status = 2;
|
|
}
|
|
|