-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge pull request #29 from rancherfederal/justins-vsphere-values
example values.yaml for vSphere
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
cloudCredentialSecretName: "cc-xxxxx" # You can find or create this secret in Cluster Management -> Cloud Credentials | ||
cloudprovider: "vsphere" | ||
|
||
# Rancher Manager URL | ||
rancher: | ||
cattle: | ||
url: "rancher.example.com" | ||
|
||
### Configure information about the cluster you are creating here | ||
cluster: | ||
name: "exampleCluster" | ||
config: | ||
kubernetesVersion: "v1.28.13+k3s1" | ||
|
||
### Configure information about vCenter | ||
vcenter: | ||
host: "vcenter.lab" | ||
|
||
# For a complete list of config options, please look here: | ||
# https://github.com/rancherfederal/rancher-cluster-templates/blob/customWork/charts/cluster-templates/templates/nodeconfig-vsphere.yaml | ||
nodepools: | ||
- name: "control-plane" | ||
quantity: 1 | ||
datacenter: "/Datacenter" | ||
datastore: "/Datacenter/datastore/vsanDatastore" | ||
# Specify one creationType: vm, template, library, legacy | ||
creationType: "library" | ||
# cloneFrom will need to match the corresponding creationType | ||
# For example, if you were cloning from a template, you would use: | ||
# creationType: "template" | ||
# cloneFrom: "/Datacenter/vm/Rocky9.4-minimal" | ||
cloneFrom: "Rocky9.4-minimal" | ||
contentLibrary: "MyContentLibrary" | ||
cloneFrom: "Rocky9.4-minimal" | ||
etcd: true | ||
controlplane: true | ||
worker: true | ||
cpuCount: 2 | ||
diskSize: 20000 | ||
memorySize: 4096 | ||
cloudConfig: | | ||
#cloud-config | ||
echo "Put your cloud config here" |