-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add APIs for MachineClass * Autogenerated files
- Loading branch information
1 parent
f80969d
commit 8525414
Showing
9 changed files
with
223 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
controller-tools.k8s.io: "1.0" | ||
name: machineclasses.cluster.k8s.io | ||
spec: | ||
group: cluster.k8s.io | ||
names: | ||
kind: MachineClass | ||
plural: machineclasses | ||
scope: Namespaced | ||
validation: | ||
openAPIV3Schema: | ||
properties: | ||
apiVersion: | ||
type: string | ||
kind: | ||
type: string | ||
metadata: | ||
type: object | ||
providerConfig: | ||
type: object | ||
required: | ||
- providerConfig | ||
version: v1alpha1 | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
Copyright 2018 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 v1alpha1 | ||
|
||
import ( | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/runtime" | ||
) | ||
|
||
// +genclient | ||
// +genclient:noStatus | ||
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object | ||
|
||
// MachineClass can be used to templatize and re-use provider configuration | ||
// across multiple Machines / MachineSets / MachineDeployments. | ||
// +k8s:openapi-gen=true | ||
// +resource:path=machineclasses | ||
type MachineClass struct { | ||
metav1.TypeMeta `json:",inline"` | ||
// +optional | ||
metav1.ObjectMeta `json:"metadata,omitempty"` | ||
|
||
// The total capacity available on this machine type (cpu/memory/disk). | ||
// | ||
// WARNING: It is up to the creator of the MachineClass to ensure that | ||
// this field is consistent with the underlying machine that will | ||
// be provisioned when this class is used, to inform higher level | ||
// automation (e.g. the cluster autoscaler). | ||
// TODO(hardikdr) Add allocatable field once requirements are clear from autoscaler-clusterapi // integration topic. | ||
// Capacity corev1.ResourceList `json:"capacity"` | ||
|
||
// How much capacity is actually allocatable on this machine. | ||
// Must be equal to or less than the capacity, and when less | ||
// indicates the resources reserved for system overhead. | ||
// | ||
// WARNING: It is up to the creator of the MachineClass to ensure that | ||
// this field is consistent with the underlying machine that will | ||
// be provisioned when this class is used, to inform higher level | ||
// automation (e.g. the cluster autoscaler). | ||
// TODO(hardikdr) Add allocatable field once requirements are clear from autoscaler-clusterapi // integration topic. | ||
// Allocatable corev1.ResourceList `json:"allocatable"` | ||
|
||
// Provider-specific configuration to use during node creation. | ||
ProviderConfig runtime.RawExtension `json:"providerConfig"` | ||
|
||
// TODO: should this use an api.ObjectReference to a 'MachineTemplate' instead? | ||
// A link to the MachineTemplate that will be used to create provider | ||
// specific configuration for Machines of this class. | ||
// MachineTemplate corev1.ObjectReference `json:machineTemplate` | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Sample machine-class object | ||
apiVersion: "cluster.k8s.io/v1alpha1" | ||
kind: MachineClass | ||
metadata: | ||
name: small | ||
namespace: foo | ||
providerConfig: | ||
apiVersion: "gceproviderconfig/v1alpha1" | ||
kind: "GCEProviderConfig" | ||
project: "$GCLOUD_PROJECT" | ||
zone: "us-central1-f" | ||
machineType: "n1-standard-2" | ||
image: "projects/ubuntu-os-cloud/global/images/family/ubuntu-1604-lts" | ||
|
||
--- | ||
|
||
# Sample machine object | ||
apiVersion: cluster.k8s.io/v1alpha1 | ||
kind: Machine | ||
metadata: | ||
name: test-machine | ||
namespace: foo | ||
labels: | ||
test-label: test-label | ||
spec: | ||
providerConfig: | ||
valueFrom: | ||
machineClass: | ||
provider: gcp | ||
name: small | ||
namespace: foo |