diff --git a/README.md b/README.md index aaa8493..cd3b296 100644 --- a/README.md +++ b/README.md @@ -83,8 +83,8 @@ $ export AWS_SECRET_ACCESS_KEY= #### For Scaleway ```bash -$ export SCALEWAY_ACCESS_KEY= -$ export SCALEWAY_SECRET_KEY= +$ export SCW_ACCESS_KEY= +$ export SCW_SECRET_KEY= $ export SCW_VOLUME_TIMEOUT= # default is 2 hours ``` diff --git a/charts/pleco/Chart.yaml b/charts/pleco/Chart.yaml index 472b38b..eb15b8b 100644 --- a/charts/pleco/Chart.yaml +++ b/charts/pleco/Chart.yaml @@ -3,6 +3,6 @@ name: pleco description: Automatically removes Cloud managed services and Kubernetes resources based on tags with TTL type: application home: https://github.com/Qovery/pleco -version: 0.9.34 -appVersion: 0.9.34 +version: 0.9.35 +appVersion: 0.9.35 icon: https://github.com/Qovery/pleco/raw/main/assets/pleco_logo.png diff --git a/charts/pleco/values.yaml b/charts/pleco/values.yaml index 7ba7a3f..cfe6513 100644 --- a/charts/pleco/values.yaml +++ b/charts/pleco/values.yaml @@ -3,7 +3,7 @@ replicaCount: 1 image: repository: qoveryrd/pleco pullPolicy: IfNotPresent - plecoImageTag: "0.9.34" + plecoImageTag: "0.9.35" cloudProvider: "" diff --git a/cmd/version.go b/cmd/version.go index f00d29d..8fabee4 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -19,5 +19,5 @@ func init() { } func GetCurrentVersion() string { - return "0.9.34" // ci-version-check + return "0.9.35" // ci-version-check } diff --git a/pkg/scaleway/cluster_root.go b/pkg/scaleway/cluster_root.go index 99cc3ac..273f343 100644 --- a/pkg/scaleway/cluster_root.go +++ b/pkg/scaleway/cluster_root.go @@ -34,9 +34,7 @@ func DeleteExpiredClusters(sessions ScalewaySessions, options ScalewayOptions) { } func ListClusters(clusterAPI *k8s.API, tagName string) ([]ScalewayCluster, string) { - input := &k8s.ListClustersRequest{ - Status: "ready", - } + input := &k8s.ListClustersRequest{} result, err := clusterAPI.ListClusters(input) if err != nil {