Skip to content

Commit

Permalink
Add machineset.yaml.template to vsphere example (kubernetes-sigs#318)
Browse files Browse the repository at this point in the history
* Add machineset.yaml.template to vsphere example

* cleanup manifest
  • Loading branch information
karan authored and k8s-ci-robot committed Jun 11, 2018
1 parent 8a83c7e commit 4a80d37
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
machines.yaml
cluster.yaml
provider-components.yaml
machineset.yaml
vsphere_tmp
vsphere_tmp.pub
34 changes: 34 additions & 0 deletions machineset.yaml.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
apiVersion: "cluster.k8s.io/v1alpha1"
kind: MachineSet
metadata:
name: test-machineset-1
spec:
replicas: 2
selector:
matchLabels:
node-type: worker-node
template:
metadata:
labels:
node-type: worker-node
spec:
providerConfig:
value:
apiVersion: "vsphereproviderconfig/v1alpha1"
kind: "VsphereMachineProviderConfig"
vsphereMachine: "standard-node"
machineVariables:
datacenter: ""
datastore: ""
resource_pool: ""
network: ""
num_cpus: "2"
memory: "2048"
vm_template: ""
disk_label: ""
disk_size: ""
virtual_machine_domain: ""
versions:
kubelet: 1.10.1
roles:
- Node

0 comments on commit 4a80d37

Please sign in to comment.