Skip to content

Commit

Permalink
update vmType
Browse files Browse the repository at this point in the history
Signed-off-by: hanenMizouni <[email protected]>
  • Loading branch information
outscale-hmi committed Aug 28, 2024
1 parent 9d0ad5a commit d9a59f4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions github_actions/deploy_cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ See [action.yml](action.yml)
| `repository_folder` | Folder where this repo is stored | `false` | `"./"` |
| `rke_version` | Version of rke to use | `false` | `"v1.4.1"` |
| `kubernetes_version` | Version of the kubernetes to deploy (See https://github.com/rancher/rke/releases) | `false` | `"v1.24.8-rancher1-1"` |
| `bastion_vm_type` | Vm type of bastion instance | `false` | `"tinav5.c4r8p1"` |
| `bastion_vm_type` | Vm type of bastion instance | `false` | `"tinav4c1r1p3"` |
| `bastion_volume_type` | Volume type of bastion instance | `false` | `"gp2"` |
| `bastion_volume_size` | Volume size of bastion instance | `false` | `15` |
| `bastion_volume_iops` | Volume iops of bastion instance | `false` | `1500` |
| `control_plane_vm_type` | Vm type of control plane instance | `false` | `"tinav5.c4r8p1"` |
| `control_plane_vm_type` | Vm type of control plane instance | `false` | `"tinav6.c4r8p2"` |
| `control_plane_count` | Number of control plane instance | `false` | `1` |
| `control_plane_volume_type` | Volume type of control plane instance | `false` | `"gp2"` |
| `control_plane_volume_size` | Volume size of control plane instance | `false` | `15` |
| `control_plane_volume_size` | Volume iops of control plane instance | `false` | `1500` |
| `worker_vm_type` | Vm type of worker instance | `false` | `"tinav5.c4r8p1"` |
| `worker_vm_type` | Vm type of worker instance | `false` | `"tinav6.c4r8p2"` |
| `worker_count` | Number of worker instance | `false` | `2` |
| `worker_volume_type` | Volume type of worker instance | `false` | `"standard"` |
| `worker_volume_size` | Volume size of worker instance | `false` | `15` |
Expand Down Expand Up @@ -58,16 +58,16 @@ jobs:
osc_secret_key: ${{ secrets.OSC_SECRET_KEY }}
osc_region: ${{ secrets.OSC_REGION }}
kubernetes_version: "v1.24.8-rancher1-1"
bastion_vm_type: "tinav5.c4r8p1"
bastion_vm_type: "tinav4c1r1p3"
bastion_volume_type: "io1"
bastion_volume_size: 30
bastion_iops: 1500
control_plane_vm_type: "tinav5.c4r8p1"
control_plane_vm_type: "tinav5.c4r8p2"
control_plane_count: 1
control_plane_volume_type: "io1"
control_plane_volume_size: 30
control_plane_iops: 1500
worker_vm_type: "tinav5.c4r8p1"
worker_vm_type: "tinav5.c4r8p2"
worker_count: 2
worker_volume_type: "io1"
worker_volume_size: 30
Expand Down
6 changes: 3 additions & 3 deletions github_actions/deploy_cluster/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ inputs:
bastion_vm_type:
description: 'Vm type of bastion instance'
required: false
default: "tinav6.c4r8p1"
default: "tinav4c1r1p3"
bastion_volume_type:
description: 'Volume type of bastion instance'
required: false
Expand All @@ -45,7 +45,7 @@ inputs:
control_plane_vm_type:
description: 'Vm type of control plane instance'
required: false
default: "tinav6.c4r8p1"
default: "tinav6.c4r8p2"
control_plane_count:
description: 'Number of control plane instance'
required: false
Expand All @@ -65,7 +65,7 @@ inputs:
worker_vm_type:
description: 'Vm type of worker instance'
required: false
default: "tinav6.c4r8p1"
default: "tinav6.c4r8p2"
worker_count:
description: 'Number of worker instance'
required: false
Expand Down
8 changes: 4 additions & 4 deletions terraform.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
#region = "eu-west-2"

# Ubuntu Image, check latest on https://docs.outscale.com/en/userguide/Official-OMIs-Reference.html
image_id = "ami-9b41b457" # Ubuntu-22.04-2023.02.21-0 (created: 2023-02-21) on us-east-2
control_plane_vm_type = "tinav6.c4r8p1"
image_id = "ami-a3ca408c" # Ubuntu-22.04-2023.02.21-0 (created: 2023-02-21) on us-east-2
control_plane_vm_type = "tinav6.c4r8p2"
control_plane_count = 1
control_plane_volume_type = "io1"
control_plane_volume_size = 15
control_plane_iops = 1500
worker_vm_type = "tinav6.c4r8p1"
worker_vm_type = "tinav6.c4r8p2"
worker_count = 2
worker_volume_type = "io1"
worker_volume_size = 15
worker_iops = 1500
bastion_vm_type = "tinav6.c4r8p1"
bastion_vm_type = "Tinav4c1r1p3"
bastion_volume_type = "io1"
bastion_volume_size = 15
bastion_iops = 1500
Expand Down

0 comments on commit d9a59f4

Please sign in to comment.