Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: hanenMizouni <[email protected]>
  • Loading branch information
outscale-hmi committed Nov 12, 2024
1 parent 9d0ad5a commit 60caf2c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion addons/docker-registry/playbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
tasks:
- name: download helm
command:
cmd: /bin/bash -c "mkdir -p ./helm/bin && wget https://get.helm.sh/helm-v3.10.3-linux-amd64.tar.gz && tar -zxvf helm-v3.10.3-linux-amd64.tar.gz && rm -r helm-v3.10.3-linux-amd64.tar.gz && mv linux-amd64/helm $HELM_BIN && chmod +x $HELM_BIN && rm -r linux-amd64"
cmd: /bin/bash -c "mkdir -p ./helm/bin && wget https://get.helm.sh/helm-v3.16.1-linux-amd64.tar.gz && tar -zxvf helm-v3.16.1-linux-amd64.tar.gz && rm -r helm-v3.16.1-linux-amd64.tar.gz && mv linux-amd64/helm $HELM_BIN && chmod +x $HELM_BIN && rm -r linux-amd64"
creates: $HELM_BIN
- name: Add twun helm repo
command:
Expand Down
2 changes: 1 addition & 1 deletion bastion/playbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
- name: download kubectl
become: yes
vars:
kubectl_version: "v1.24.8"
kubectl_version: "v1.30.3"
get_url:
url: "https://dl.k8s.io/release/{{ kubectl_version }}/bin/linux/amd64/kubectl"
dest: /usr/local/bin/kubectl
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 @@ -21,11 +21,11 @@ inputs:
rke_version:
description: 'Version of rke to use'
required: false
default: "v1.5.2"
default: "v1.6.2"
kubernetes_version:
description: 'Version of the kubernetes to deploy (See https://github.com/rancher/rke/releases)'
required: false
default: "v1.26.11-rancher2-1"
default: "v1.30.4-rancher1-1"
bastion_vm_type:
description: 'Vm type of bastion instance'
required: false
Expand Down Expand Up @@ -89,7 +89,7 @@ inputs:
image_id:
description: 'Image ID used for all VMs'
required: false
default: "ami-9b41b457"
default: "ami-1111f1b5"
runs:
using: "composite"
steps:
Expand Down
8 changes: 4 additions & 4 deletions terraform.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#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
image_id = "ami-a3ca408c" #Ubuntu-22.04-2023.12.04-0 (created: 2024-01-04) on us-east-2
control_plane_vm_type = "tinav6.c4r8p1"
control_plane_count = 1
control_plane_volume_type = "io1"
Expand All @@ -19,7 +19,7 @@ bastion_volume_type = "io1"
bastion_volume_size = 15
bastion_iops = 1500
cluster_name = "phandalin"
rke_version = "v1.4.4"
kubernetes_version = "v1.25.6-rancher4-1" # See available version https://github.com/rancher/rke/releases
will_install_ccm = false # Set to true if the CCM of osc will be installed
rke_version = "v1.6.3"
kubernetes_version = "v1.30.5-rancher1-1"
will_install_ccm = false # Set to true if the CCM of osc will be installed
public_cloud = false

0 comments on commit 60caf2c

Please sign in to comment.