Skip to content

Commit becca3c

Browse files
committed
fix: updated nodepools for sydney and added hugo docs
Signed-off-by: Ali Mukadam <ali.mukadam@oracle.com>
1 parent 8e8ded9 commit becca3c

14 files changed

+44
-32
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[uri-changelog]: https://github.com/oracle-terraform-modules/terraform-oci-verrazzano/blob/main/docs/CHANGELOG.md
2-
[uri-docs]: https://github.com/oracle-terraform-modules/terraform-oci-verrazzano/blob/main/docs
3-
[uri-multi-cluster]: https://github.com/oracle-terraform-modules/terraform-oci-verrazzano/blob/main/docs/multi-cluster.md
4-
[uri-single-cluster-dev]: https://github.com/oracle-terraform-modules/terraform-oci-verrazzano/blob/main/docs/single-cluster-dev.md
5-
[uri-single-cluster-prod]: https://github.com/oracle-terraform-modules/terraform-oci-verrazzano/blob/main/docs/single-cluster-prod.md
2+
[uri-docs]: https://github.com/oracle-terraform-modules/terraform-oci-verrazzano/blob/main/docs/content/docs
3+
[uri-multi-cluster]: https://github.com/oracle-terraform-modules/terraform-oci-verrazzano/blob/main/docs/content/docs/3-multi-cluster.md
4+
[uri-single-cluster-dev]: https://github.com/oracle-terraform-modules/terraform-oci-verrazzano/blob/main/docs/content/docs/1-single-cluster-dev.md
5+
[uri-single-cluster-prod]: https://github.com/oracle-terraform-modules/terraform-oci-verrazzano/blob/main/docs/content/docs/2-single-cluster-prod.md
66
[uri-terraform-oci-oke]: https://github.com/oracle-terraform-modules/terraform-oci-oke
7-
[uri-terraform-options]: https://github.com/oracle-terraform-modules/terraform-oci-verrazzano/blob/main/docs/terraformoptions.md
7+
[uri-terraform-options]: https://github.com/oracle-terraform-modules/terraform-oci-verrazzano/blob/main/docs/content/docs/5-terraform-options.md
88
[uri-verrazzano]: https://verrazzano.io
99
[uri-verrazzano-medium]: https://medium.com/verrazzano
1010
[uri-verrazzano-slack]: https://bit.ly/3gOeRJn

docs/archetypes/default.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "{{ replace .Name "-" " " | title }}"
3+
date: {{ .Date }}
4+
draft: true
5+
---
6+

docs/config.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
baseURL = 'http://example.org/'
2+
languageCode = 'en-us'
3+
title = 'Terraform module for Verrazzano on OCI'
4+
5+
[module]
6+
[[module.imports]]
7+
path = 'github.com/alex-shpak/hugo-book'
8+
9+
[params]
10+
BookSearch = false

docs/single-cluster-dev.md renamed to docs/content/docs/1.-single-cluster-dev.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## 1. Create the OKE cluster
44

55
1. Copy terraform.tfvars.example to terraform.tfvars
6-
2. Provide values for the input variables `api_fingerprint`,`api_private_key_path`,`tenancy_id`,`user_id`, `compartment_id`.
6+
2. Provide values for the input variables `api_fingerprint`,`api_private_key_path`,`tenancy_id`,`user_id`, `compartment_id`, `ssh_public_key_path`, `ssh_private_key_path`.
77
3. Set your tenancy's home region using `home_region`.
88
4. Configure the cluster's provider in admin.tf:
99

@@ -34,10 +34,11 @@ terraform apply
3434

3535
## 2. Generate Verrazzano Installation scripts
3636

37-
1. Set `install_vz` to true
37+
1. Set `configure_clusters` and `install_verrazzano` to true
3838

3939
```
40-
install_vz = true
40+
configure_clusters = true
41+
install_verrazzano = true
4142
```
4243

4344
2. Configure Verrazzano profile:
@@ -57,7 +58,7 @@ terraform apply
5758

5859
## 3. Run Verrazzano Installation scripts
5960

60-
These steps are to be run manually today. We'll automate them in the future.
61+
These steps are to be run manually today. We will automate them in the future.
6162

6263
1. Install the operator
6364

@@ -86,7 +87,7 @@ bash create_oci_secret_admin.sh
8687

8788
```
8889
cd /home/opc/vz/clusters
89-
bash install_vz_admin.sh
90+
bash install_vz_admin_cluster.sh
9091
```
9192

9293
5. Wait for Verrazzano to be installed:

docs/single-cluster-prod.md renamed to docs/content/docs/2.-single-cluster-prod.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## 1. Create the OKE cluster
44

55
1. Copy terraform.tfvars.example to terraform.tfvars
6-
2. Provide values for the input variables `api_fingerprint`,`api_private_key_path`,`tenancy_id`,`user_id`, `compartment_id`.
6+
2. Provide values for the input variables `api_fingerprint`,`api_private_key_path`,`tenancy_id`,`user_id`, `compartment_id`, `ssh_public_key_path`, `ssh_private_key_path`.
77
3. Set your tenancy's home region using `home_region`.
88
4. Configure the cluster's provider in admin.tf:
99

@@ -34,10 +34,11 @@ terraform apply
3434

3535
## 2. Generate Verrazzano Installation scripts
3636

37-
1. Set `install_vz` to true
37+
1. Set `install_verrazzano` to true
3838

3939
```
40-
install_vz = true
40+
configure_clusters = true
41+
install_verrazzano = true
4142
```
4243

4344
2. Configure Verrazzano profile:
@@ -63,7 +64,7 @@ These steps are to be run manually today. We'll automate them in the future.
6364

6465
```
6566
cd /home/opc/vz/operator
66-
bash install_vz_operator_admin.sh
67+
bash install_vz_operator_admin_cluster.sh
6768
```
6869

6970
2. Check if the operator has installed sucessfully:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Multi-cluster
File renamed without changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Terraform Options

docs/go.mod

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module github.com/repo/path
2+
3+
go 1.18
4+
5+
require github.com/alex-shpak/hugo-book v0.0.0-20230424134111-d86d5e70c7c0 // indirect

0 commit comments

Comments
 (0)