Skip to content

Commit

Permalink
Showing 5 changed files with 7 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -83,8 +83,8 @@ $ export AWS_SECRET_ACCESS_KEY=<secret_key>

#### For Scaleway
```bash
$ export SCALEWAY_ACCESS_KEY=<access_key>
$ export SCALEWAY_SECRET_KEY=<secret_key>
$ export SCW_ACCESS_KEY=<access_key>
$ export SCW_SECRET_KEY=<secret_key>
$ export SCW_VOLUME_TIMEOUT=<delay_before_detached_volume_deletion_in_hours_since_last_update> # default is 2 hours
```

4 changes: 2 additions & 2 deletions charts/pleco/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion charts/pleco/values.yaml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ replicaCount: 1
image:
repository: qoveryrd/pleco
pullPolicy: IfNotPresent
plecoImageTag: "0.9.34"
plecoImageTag: "0.9.35"

cloudProvider: ""

2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
@@ -19,5 +19,5 @@ func init() {
}

func GetCurrentVersion() string {
return "0.9.34" // ci-version-check
return "0.9.35" // ci-version-check
}
4 changes: 1 addition & 3 deletions pkg/scaleway/cluster_root.go
Original file line number Diff line number Diff line change
@@ -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 {

0 comments on commit 22b5ad7

Please sign in to comment.