70 lines
2.7 KiB
Protocol Buffer
70 lines
2.7 KiB
Protocol Buffer
/*
|
|
Copyright 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.apiserver.pkg.apis.example2.v1;
|
|
|
|
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";
|
|
|
|
// Package-wide variables from generator "generated".
|
|
option go_package = "k8s.io/apiserver/pkg/apis/example2/v1";
|
|
|
|
// ReplicaSet ensures that a specified number of pod replicas are running at any given time.
|
|
message ReplicaSet {
|
|
// If the Labels of a ReplicaSet are empty, they are defaulted to
|
|
// be the same as the Pod(s) that the ReplicaSet manages.
|
|
// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
|
|
// +optional
|
|
optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
|
|
|
|
// Spec defines the specification of the desired behavior of the ReplicaSet.
|
|
// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
|
|
// +optional
|
|
optional ReplicaSetSpec spec = 2;
|
|
|
|
// Status is the most recently observed status of the ReplicaSet.
|
|
// This data may be out of date by some window of time.
|
|
// Populated by the system.
|
|
// Read-only.
|
|
// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
|
|
// +optional
|
|
optional ReplicaSetStatus status = 3;
|
|
}
|
|
|
|
// ReplicaSetSpec is the specification of a ReplicaSet.
|
|
message ReplicaSetSpec {
|
|
// Replicas is the number of desired replicas.
|
|
// This is a pointer to distinguish between explicit zero and unspecified.
|
|
// Defaults to 1.
|
|
// More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller
|
|
// +optional
|
|
optional int32 replicas = 1;
|
|
}
|
|
|
|
// ReplicaSetStatus represents the current status of a ReplicaSet.
|
|
message ReplicaSetStatus {
|
|
// Replicas is the most recently oberved number of replicas.
|
|
// More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller
|
|
optional int32 replicas = 1;
|
|
}
|
|
|