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 27, 2024
1 parent 9d0ad5a commit 39f35f9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions github_actions/deploy_cluster/README.md
Original file line number Diff line number Diff line change
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: "tinav5.c4r8p3"
bastion_volume_type: "io1"
bastion_volume_size: 30
bastion_iops: 1500
control_plane_vm_type: "tinav5.c4r8p1"
control_plane_vm_type: "tinav5.c4r8p3"
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.c4r8p3"
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: "tinav6.c4r8p3"
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.c4r8p3"
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.c4r8p3"
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.c4r8p3"
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.c4r8p3"
worker_count = 2
worker_volume_type = "io1"
worker_volume_size = 15
worker_iops = 1500
bastion_vm_type = "tinav6.c4r8p1"
bastion_vm_type = "tinav6.c4r8p3"
bastion_volume_type = "io1"
bastion_volume_size = 15
bastion_iops = 1500
Expand Down

0 comments on commit 39f35f9

Please sign in to comment.