File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
kubernetes/samples/scripts/terraform Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,8 @@ Copy provided `oci.props.template` file to `oci.props` and add all required valu
36
36
* ` vcn.cidr.prefix ` - Prefix for VCN CIDR, used when creating subnets -- you should examine the target compartment find a CIDR that is available.
37
37
* ` vcn.cidr ` - Full CIDR for the VCN, must be unique within the compartment, first 2 octets should match the vcn_cidr_prefix.
38
38
* ` nodepool.shape ` - A valid OCI VM Shape for the cluster nodes.
39
- * ` k8s.version ` - SSH public key (key contents as a string).
39
+ * ` k8s.version ` - Kubernetes version.
40
+ * ` nodepool.ssh.pubkey ` - SSH public key (key contents as a string).
40
41
* ` nodepool.imagename ` - A valid image name for Node Pool creation.
41
42
* ` terraform.installdir ` - Location to install Terraform binaries.
42
43
Original file line number Diff line number Diff line change 3
3
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
4
4
5
5
function prop {
6
- grep " ${1} " ${propsFile} | cut -d' =' -f2
6
+ grep " ${1} " ${propsFile} | grep -v " # " | cut -d' =' -f2
7
7
}
8
8
9
9
function generateTFVarFile {
You can’t perform that action at this time.
0 commit comments