From 3d33d77858f7cf651d812c10c36805ffb61003d7 Mon Sep 17 00:00:00 2001 From: Jan Jansen Date: Wed, 12 Nov 2025 13:56:36 +0100 Subject: [PATCH] update readme and dependabot Signed-off-by: Jan Jansen --- .github/dependabot.yml | 7 +++++++ README.md | 4 ++-- go.mod | 8 ++++---- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d8c2bf9..72196e3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,6 +4,13 @@ updates: directory: / schedule: interval: daily + groups: + kubernetes: + patterns: + - k8s.io/api + - k8s.io/apimachinery + - k8s.io/cloud-provider + - k8s.io/component-base - package-ecosystem: github-actions directory: "/" diff --git a/README.md b/README.md index 00310a7..eb513f0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # cloud-provider-ionoscloud -This implementation is only an basic implementation of cloud provider to get [CAPIC](https://github.com/GDATASoftwareAG/cluster-api-provider-ionoscloud) running. +This implementation is only an basic implementation of cloud provider to get [CAPIC](https://github.com/ionos-cloud/cluster-api-provider-ionoscloud) running. ## Example manifests @@ -13,7 +13,7 @@ This is not an offical implementation of cloud provider for IONOS. ## License -Copyright 2024. +Copyright 2025. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/go.mod b/go.mod index e5418f4..042c320 100644 --- a/go.mod +++ b/go.mod @@ -8,7 +8,11 @@ require ( github.com/ionos-cloud/sdk-go/v6 v6.3.5 github.com/spf13/cobra v1.10.1 github.com/spf13/pflag v1.0.10 + k8s.io/api v0.33.5 + k8s.io/apimachinery v0.33.5 k8s.io/cloud-provider v0.33.5 + k8s.io/component-base v0.33.5 + k8s.io/klog/v2 v2.130.1 ) require ( @@ -98,11 +102,7 @@ require ( google.golang.org/protobuf v1.36.5 // indirect gopkg.in/inf.v0 v0.9.1 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect - k8s.io/api v0.33.5 - k8s.io/apimachinery v0.33.5 k8s.io/client-go v0.33.5 // indirect - k8s.io/component-base v0.33.5 - k8s.io/klog/v2 v2.130.1 k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect